├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── lib-pl ├── README.md ├── cli.exe ├── cli.pl ├── helpers.pl ├── merge_json.pl └── xsd2json.pl ├── package.json └── test ├── README.md ├── api.js ├── index.js ├── json ├── all_element.json ├── all_element2.json ├── all_element3.json ├── all_element4.json ├── annotation.json ├── annotation2.json ├── annotation3.json ├── annotation4.json ├── annotation5.json ├── chapter04ord1_1.json ├── choice_element.json ├── choice_element2.json ├── choice_element3.json ├── complexType_attribute.json ├── complexType_attribute10.json ├── complexType_attribute11.json ├── complexType_attribute12.json ├── complexType_attribute2.json ├── complexType_attribute3.json ├── complexType_attribute4.json ├── complexType_attribute5.json ├── complexType_attribute6.json ├── complexType_attribute7.json ├── complexType_attribute8.json ├── complexType_attribute9.json ├── complexType_name.json ├── complexType_name2.json ├── complexType_name3.json ├── element_annotation.json ├── element_anySimpleType.json ├── element_anyType.json ├── element_anyURI.json ├── element_base64Binary.json ├── element_boolean.json ├── element_byte.json ├── element_date.json ├── element_dateTime.json ├── element_decimal.json ├── element_double.json ├── element_duration.json ├── element_fixed.json ├── element_float.json ├── element_gDay.json ├── element_gMonth.json ├── element_gMonthDay.json ├── element_gYear.json ├── element_gYearMonth.json ├── element_hexBinary.json ├── element_id.json ├── element_idref.json ├── element_int.json ├── element_integer.json ├── element_language.json ├── element_long.json ├── element_negativeInteger.json ├── element_nmtoken.json ├── element_nonNegativeInteger.json ├── element_nonPositiveInteger.json ├── element_normalizedString.json ├── element_positiveInteger.json ├── element_short.json ├── element_string.json ├── element_time.json ├── element_token.json ├── element_unsignedByte.json ├── element_unsignedInt.json ├── element_unsignedLong.json ├── element_unsignedShort.json ├── extension.json ├── extension_all.json ├── extension_attribute.json ├── extension_simpleContent.json ├── extension_simpleContent2.json ├── extension_simpleContent3.json ├── import.json ├── include.json ├── include2.json ├── restriction.json ├── restriction2.json ├── restriction3.json ├── restriction4.json ├── restriction5.json ├── restriction6.json ├── restriction7.json ├── restriction_enumeration.json ├── restriction_enumeration2.json ├── restriction_enumeration3.json ├── restriction_enumeration4.json ├── restriction_enumeration5.json ├── restriction_enumeration6.json ├── restriction_enumeration7.json ├── restriction_fractionDigits.json ├── restriction_length.json ├── restriction_maxExclusive.json ├── restriction_maxInclusive.json ├── restriction_maxLength.json ├── restriction_minExclusive.json ├── restriction_minInclusive.json ├── restriction_minInclusive_maxInclusive.json ├── restriction_minLength.json ├── restriction_pattern.json ├── restriction_pattern2.json ├── restriction_totalDigits.json ├── restriction_whiteSpace.json ├── schema.json ├── schema2.json ├── schema3.json ├── schema4.json ├── schema5.json ├── schema6.json ├── schema_recursive.json ├── schema_recursive2.json ├── schema_simpleType_restriction.json ├── schema_xmlns.json ├── schema_xmlns2.json ├── schema_xmlns3.json ├── sequence_element.json ├── sequence_element10.json ├── sequence_element2.json ├── sequence_element3.json ├── sequence_element4.json ├── sequence_element5.json ├── sequence_element6.json ├── sequence_element7.json ├── sequence_element8.json ├── sequence_element9.json ├── shiporder.json ├── shiporder1-2.json ├── shiporder2.json ├── shiporder3.json ├── simpleType_name.json ├── type-with-capital-letter.json ├── type-with-capital-letter2.json ├── xmlns.json └── xmlns2.json └── xsd ├── all_element.xsd ├── all_element2.xsd ├── all_element3.xsd ├── all_element4.xsd ├── annotation.xsd ├── annotation2.xsd ├── annotation3.xsd ├── annotation4.xsd ├── annotation5.xsd ├── chapter04ord1_1.xsd ├── choice_element.xsd ├── choice_element2.xsd ├── choice_element3.xsd ├── complexType_attribute.xsd ├── complexType_attribute10.xsd ├── complexType_attribute11.xsd ├── complexType_attribute12.xsd ├── complexType_attribute2.xsd ├── complexType_attribute3.xsd ├── complexType_attribute4.xsd ├── complexType_attribute5.xsd ├── complexType_attribute6.xsd ├── complexType_attribute7.xsd ├── complexType_attribute8.xsd ├── complexType_attribute9.xsd ├── complexType_name.xsd ├── complexType_name2.xsd ├── complexType_name3.xsd ├── element_annotation.xsd ├── element_anySimpleType.xsd ├── element_anyType.xsd ├── element_anyURI.xsd ├── element_base64Binary.xsd ├── element_boolean.xsd ├── element_byte.xsd ├── element_date.xsd ├── element_dateTime.xsd ├── element_decimal.xsd ├── element_double.xsd ├── element_duration.xsd ├── element_fixed.xsd ├── element_float.xsd ├── element_gDay.xsd ├── element_gMonth.xsd ├── element_gMonthDay.xsd ├── element_gYear.xsd ├── element_gYearMonth.xsd ├── element_hexBinary.xsd ├── element_id.xsd ├── element_idref.xsd ├── element_int.xsd ├── element_integer.xsd ├── element_language.xsd ├── element_long.xsd ├── element_negativeInteger.xsd ├── element_nmtoken.xsd ├── element_nonNegativeInteger.xsd ├── element_nonPositiveInteger.xsd ├── element_normalizedString.xsd ├── element_positiveInteger.xsd ├── element_short.xsd ├── element_string.xsd ├── element_time.xsd ├── element_token.xsd ├── element_unsignedByte.xsd ├── element_unsignedInt.xsd ├── element_unsignedLong.xsd ├── element_unsignedShort.xsd ├── extension.xsd ├── extension_all.xsd ├── extension_attribute.xsd ├── extension_simpleContent.xsd ├── extension_simpleContent2.xsd ├── extension_simpleContent3.xsd ├── import.xsd ├── include.xsd ├── include2.xsd ├── restriction.xsd ├── restriction2.xsd ├── restriction3.xsd ├── restriction4.xsd ├── restriction5.xsd ├── restriction6.xsd ├── restriction7.xsd ├── restriction_enumeration.xsd ├── restriction_enumeration2.xsd ├── restriction_enumeration3.xsd ├── restriction_enumeration4.xsd ├── restriction_enumeration5.xsd ├── restriction_enumeration6.xsd ├── restriction_enumeration7.xsd ├── restriction_fractionDigits.xsd ├── restriction_length.xsd ├── restriction_maxExclusive.xsd ├── restriction_maxInclusive.xsd ├── restriction_maxLength.xsd ├── restriction_minExclusive.xsd ├── restriction_minInclusive.xsd ├── restriction_minInclusive_maxInclusive.xsd ├── restriction_minLength.xsd ├── restriction_pattern.xsd ├── restriction_pattern2.xsd ├── restriction_totalDigits.xsd ├── restriction_whiteSpace.xsd ├── schema.xsd ├── schema2.xsd ├── schema3.xsd ├── schema4.xsd ├── schema5.xsd ├── schema6.xsd ├── schema_recursive.xsd ├── schema_recursive2.xsd ├── schema_simpleType_restriction.xsd ├── schema_xmlns.xsd ├── schema_xmlns2.xsd ├── schema_xmlns3.xsd ├── sequence_element.xsd ├── sequence_element10.xsd ├── sequence_element2.xsd ├── sequence_element3.xsd ├── sequence_element4.xsd ├── sequence_element5.xsd ├── sequence_element6.xsd ├── sequence_element7.xsd ├── sequence_element8.xsd ├── sequence_element9.xsd ├── shiporder.xsd ├── shiporder1-2.xsd ├── shiporder2.xsd ├── shiporder3.xsd ├── simpleType_name.xsd ├── type-with-capital-letter.xsd ├── type-with-capital-letter2.xsd ├── xmlns.xsd └── xmlns2.xsd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !lib-pl/cli.exe 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/index.js -------------------------------------------------------------------------------- /lib-pl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/README.md -------------------------------------------------------------------------------- /lib-pl/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/cli.exe -------------------------------------------------------------------------------- /lib-pl/cli.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/cli.pl -------------------------------------------------------------------------------- /lib-pl/helpers.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/helpers.pl -------------------------------------------------------------------------------- /lib-pl/merge_json.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/merge_json.pl -------------------------------------------------------------------------------- /lib-pl/xsd2json.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/lib-pl/xsd2json.pl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/README.md -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/api.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/index.js -------------------------------------------------------------------------------- /test/json/all_element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/all_element.json -------------------------------------------------------------------------------- /test/json/all_element2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/all_element2.json -------------------------------------------------------------------------------- /test/json/all_element3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/all_element3.json -------------------------------------------------------------------------------- /test/json/all_element4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/all_element4.json -------------------------------------------------------------------------------- /test/json/annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/annotation.json -------------------------------------------------------------------------------- /test/json/annotation2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/annotation2.json -------------------------------------------------------------------------------- /test/json/annotation3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/annotation3.json -------------------------------------------------------------------------------- /test/json/annotation4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/annotation4.json -------------------------------------------------------------------------------- /test/json/annotation5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/annotation5.json -------------------------------------------------------------------------------- /test/json/chapter04ord1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/chapter04ord1_1.json -------------------------------------------------------------------------------- /test/json/choice_element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/choice_element.json -------------------------------------------------------------------------------- /test/json/choice_element2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/choice_element2.json -------------------------------------------------------------------------------- /test/json/choice_element3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/choice_element3.json -------------------------------------------------------------------------------- /test/json/complexType_attribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute.json -------------------------------------------------------------------------------- /test/json/complexType_attribute10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute10.json -------------------------------------------------------------------------------- /test/json/complexType_attribute11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute11.json -------------------------------------------------------------------------------- /test/json/complexType_attribute12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute12.json -------------------------------------------------------------------------------- /test/json/complexType_attribute2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute2.json -------------------------------------------------------------------------------- /test/json/complexType_attribute3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute3.json -------------------------------------------------------------------------------- /test/json/complexType_attribute4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute4.json -------------------------------------------------------------------------------- /test/json/complexType_attribute5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute5.json -------------------------------------------------------------------------------- /test/json/complexType_attribute6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute6.json -------------------------------------------------------------------------------- /test/json/complexType_attribute7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute7.json -------------------------------------------------------------------------------- /test/json/complexType_attribute8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute8.json -------------------------------------------------------------------------------- /test/json/complexType_attribute9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_attribute9.json -------------------------------------------------------------------------------- /test/json/complexType_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_name.json -------------------------------------------------------------------------------- /test/json/complexType_name2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_name2.json -------------------------------------------------------------------------------- /test/json/complexType_name3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/complexType_name3.json -------------------------------------------------------------------------------- /test/json/element_annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_annotation.json -------------------------------------------------------------------------------- /test/json/element_anySimpleType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_anySimpleType.json -------------------------------------------------------------------------------- /test/json/element_anyType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_anyType.json -------------------------------------------------------------------------------- /test/json/element_anyURI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_anyURI.json -------------------------------------------------------------------------------- /test/json/element_base64Binary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_base64Binary.json -------------------------------------------------------------------------------- /test/json/element_boolean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_boolean.json -------------------------------------------------------------------------------- /test/json/element_byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_byte.json -------------------------------------------------------------------------------- /test/json/element_date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_date.json -------------------------------------------------------------------------------- /test/json/element_dateTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_dateTime.json -------------------------------------------------------------------------------- /test/json/element_decimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_decimal.json -------------------------------------------------------------------------------- /test/json/element_double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_double.json -------------------------------------------------------------------------------- /test/json/element_duration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_duration.json -------------------------------------------------------------------------------- /test/json/element_fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_fixed.json -------------------------------------------------------------------------------- /test/json/element_float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_float.json -------------------------------------------------------------------------------- /test/json/element_gDay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_gDay.json -------------------------------------------------------------------------------- /test/json/element_gMonth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_gMonth.json -------------------------------------------------------------------------------- /test/json/element_gMonthDay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_gMonthDay.json -------------------------------------------------------------------------------- /test/json/element_gYear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_gYear.json -------------------------------------------------------------------------------- /test/json/element_gYearMonth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_gYearMonth.json -------------------------------------------------------------------------------- /test/json/element_hexBinary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_hexBinary.json -------------------------------------------------------------------------------- /test/json/element_id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_id.json -------------------------------------------------------------------------------- /test/json/element_idref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_idref.json -------------------------------------------------------------------------------- /test/json/element_int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_int.json -------------------------------------------------------------------------------- /test/json/element_integer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_integer.json -------------------------------------------------------------------------------- /test/json/element_language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_language.json -------------------------------------------------------------------------------- /test/json/element_long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_long.json -------------------------------------------------------------------------------- /test/json/element_negativeInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_negativeInteger.json -------------------------------------------------------------------------------- /test/json/element_nmtoken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_nmtoken.json -------------------------------------------------------------------------------- /test/json/element_nonNegativeInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_nonNegativeInteger.json -------------------------------------------------------------------------------- /test/json/element_nonPositiveInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_nonPositiveInteger.json -------------------------------------------------------------------------------- /test/json/element_normalizedString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_normalizedString.json -------------------------------------------------------------------------------- /test/json/element_positiveInteger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_positiveInteger.json -------------------------------------------------------------------------------- /test/json/element_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_short.json -------------------------------------------------------------------------------- /test/json/element_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_string.json -------------------------------------------------------------------------------- /test/json/element_time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_time.json -------------------------------------------------------------------------------- /test/json/element_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_token.json -------------------------------------------------------------------------------- /test/json/element_unsignedByte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_unsignedByte.json -------------------------------------------------------------------------------- /test/json/element_unsignedInt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_unsignedInt.json -------------------------------------------------------------------------------- /test/json/element_unsignedLong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_unsignedLong.json -------------------------------------------------------------------------------- /test/json/element_unsignedShort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/element_unsignedShort.json -------------------------------------------------------------------------------- /test/json/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension.json -------------------------------------------------------------------------------- /test/json/extension_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension_all.json -------------------------------------------------------------------------------- /test/json/extension_attribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension_attribute.json -------------------------------------------------------------------------------- /test/json/extension_simpleContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension_simpleContent.json -------------------------------------------------------------------------------- /test/json/extension_simpleContent2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension_simpleContent2.json -------------------------------------------------------------------------------- /test/json/extension_simpleContent3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/extension_simpleContent3.json -------------------------------------------------------------------------------- /test/json/import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/import.json -------------------------------------------------------------------------------- /test/json/include.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/include.json -------------------------------------------------------------------------------- /test/json/include2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/include2.json -------------------------------------------------------------------------------- /test/json/restriction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction.json -------------------------------------------------------------------------------- /test/json/restriction2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction2.json -------------------------------------------------------------------------------- /test/json/restriction3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction3.json -------------------------------------------------------------------------------- /test/json/restriction4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction4.json -------------------------------------------------------------------------------- /test/json/restriction5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction5.json -------------------------------------------------------------------------------- /test/json/restriction6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction6.json -------------------------------------------------------------------------------- /test/json/restriction7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction7.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration2.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration3.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration4.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration5.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration6.json -------------------------------------------------------------------------------- /test/json/restriction_enumeration7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_enumeration7.json -------------------------------------------------------------------------------- /test/json/restriction_fractionDigits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_fractionDigits.json -------------------------------------------------------------------------------- /test/json/restriction_length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_length.json -------------------------------------------------------------------------------- /test/json/restriction_maxExclusive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_maxExclusive.json -------------------------------------------------------------------------------- /test/json/restriction_maxInclusive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_maxInclusive.json -------------------------------------------------------------------------------- /test/json/restriction_maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_maxLength.json -------------------------------------------------------------------------------- /test/json/restriction_minExclusive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_minExclusive.json -------------------------------------------------------------------------------- /test/json/restriction_minInclusive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_minInclusive.json -------------------------------------------------------------------------------- /test/json/restriction_minInclusive_maxInclusive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_minInclusive_maxInclusive.json -------------------------------------------------------------------------------- /test/json/restriction_minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_minLength.json -------------------------------------------------------------------------------- /test/json/restriction_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_pattern.json -------------------------------------------------------------------------------- /test/json/restriction_pattern2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_pattern2.json -------------------------------------------------------------------------------- /test/json/restriction_totalDigits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_totalDigits.json -------------------------------------------------------------------------------- /test/json/restriction_whiteSpace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/restriction_whiteSpace.json -------------------------------------------------------------------------------- /test/json/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema.json -------------------------------------------------------------------------------- /test/json/schema2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema2.json -------------------------------------------------------------------------------- /test/json/schema3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema3.json -------------------------------------------------------------------------------- /test/json/schema4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema4.json -------------------------------------------------------------------------------- /test/json/schema5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema5.json -------------------------------------------------------------------------------- /test/json/schema6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema6.json -------------------------------------------------------------------------------- /test/json/schema_recursive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_recursive.json -------------------------------------------------------------------------------- /test/json/schema_recursive2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_recursive2.json -------------------------------------------------------------------------------- /test/json/schema_simpleType_restriction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_simpleType_restriction.json -------------------------------------------------------------------------------- /test/json/schema_xmlns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_xmlns.json -------------------------------------------------------------------------------- /test/json/schema_xmlns2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_xmlns2.json -------------------------------------------------------------------------------- /test/json/schema_xmlns3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/schema_xmlns3.json -------------------------------------------------------------------------------- /test/json/sequence_element.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element.json -------------------------------------------------------------------------------- /test/json/sequence_element10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element10.json -------------------------------------------------------------------------------- /test/json/sequence_element2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element2.json -------------------------------------------------------------------------------- /test/json/sequence_element3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element3.json -------------------------------------------------------------------------------- /test/json/sequence_element4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element4.json -------------------------------------------------------------------------------- /test/json/sequence_element5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element5.json -------------------------------------------------------------------------------- /test/json/sequence_element6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element6.json -------------------------------------------------------------------------------- /test/json/sequence_element7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element7.json -------------------------------------------------------------------------------- /test/json/sequence_element8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element8.json -------------------------------------------------------------------------------- /test/json/sequence_element9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/sequence_element9.json -------------------------------------------------------------------------------- /test/json/shiporder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/shiporder.json -------------------------------------------------------------------------------- /test/json/shiporder1-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/shiporder1-2.json -------------------------------------------------------------------------------- /test/json/shiporder2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/shiporder2.json -------------------------------------------------------------------------------- /test/json/shiporder3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/shiporder3.json -------------------------------------------------------------------------------- /test/json/simpleType_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/simpleType_name.json -------------------------------------------------------------------------------- /test/json/type-with-capital-letter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/type-with-capital-letter.json -------------------------------------------------------------------------------- /test/json/type-with-capital-letter2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/type-with-capital-letter2.json -------------------------------------------------------------------------------- /test/json/xmlns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/xmlns.json -------------------------------------------------------------------------------- /test/json/xmlns2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/json/xmlns2.json -------------------------------------------------------------------------------- /test/xsd/all_element.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/all_element.xsd -------------------------------------------------------------------------------- /test/xsd/all_element2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/all_element2.xsd -------------------------------------------------------------------------------- /test/xsd/all_element3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/all_element3.xsd -------------------------------------------------------------------------------- /test/xsd/all_element4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/all_element4.xsd -------------------------------------------------------------------------------- /test/xsd/annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/annotation.xsd -------------------------------------------------------------------------------- /test/xsd/annotation2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/annotation2.xsd -------------------------------------------------------------------------------- /test/xsd/annotation3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/annotation3.xsd -------------------------------------------------------------------------------- /test/xsd/annotation4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/annotation4.xsd -------------------------------------------------------------------------------- /test/xsd/annotation5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/annotation5.xsd -------------------------------------------------------------------------------- /test/xsd/chapter04ord1_1.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/chapter04ord1_1.xsd -------------------------------------------------------------------------------- /test/xsd/choice_element.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/choice_element.xsd -------------------------------------------------------------------------------- /test/xsd/choice_element2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/choice_element2.xsd -------------------------------------------------------------------------------- /test/xsd/choice_element3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/choice_element3.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute10.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute11.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute11.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute12.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute12.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute2.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute3.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute4.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute5.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute6.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute7.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute8.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_attribute9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_attribute9.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_name.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_name.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_name2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_name2.xsd -------------------------------------------------------------------------------- /test/xsd/complexType_name3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/complexType_name3.xsd -------------------------------------------------------------------------------- /test/xsd/element_annotation.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_annotation.xsd -------------------------------------------------------------------------------- /test/xsd/element_anySimpleType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_anySimpleType.xsd -------------------------------------------------------------------------------- /test/xsd/element_anyType.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_anyType.xsd -------------------------------------------------------------------------------- /test/xsd/element_anyURI.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_anyURI.xsd -------------------------------------------------------------------------------- /test/xsd/element_base64Binary.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_base64Binary.xsd -------------------------------------------------------------------------------- /test/xsd/element_boolean.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_boolean.xsd -------------------------------------------------------------------------------- /test/xsd/element_byte.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_byte.xsd -------------------------------------------------------------------------------- /test/xsd/element_date.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_date.xsd -------------------------------------------------------------------------------- /test/xsd/element_dateTime.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_dateTime.xsd -------------------------------------------------------------------------------- /test/xsd/element_decimal.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_decimal.xsd -------------------------------------------------------------------------------- /test/xsd/element_double.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_double.xsd -------------------------------------------------------------------------------- /test/xsd/element_duration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_duration.xsd -------------------------------------------------------------------------------- /test/xsd/element_fixed.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_fixed.xsd -------------------------------------------------------------------------------- /test/xsd/element_float.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_float.xsd -------------------------------------------------------------------------------- /test/xsd/element_gDay.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_gDay.xsd -------------------------------------------------------------------------------- /test/xsd/element_gMonth.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_gMonth.xsd -------------------------------------------------------------------------------- /test/xsd/element_gMonthDay.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_gMonthDay.xsd -------------------------------------------------------------------------------- /test/xsd/element_gYear.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_gYear.xsd -------------------------------------------------------------------------------- /test/xsd/element_gYearMonth.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_gYearMonth.xsd -------------------------------------------------------------------------------- /test/xsd/element_hexBinary.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_hexBinary.xsd -------------------------------------------------------------------------------- /test/xsd/element_id.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_id.xsd -------------------------------------------------------------------------------- /test/xsd/element_idref.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_idref.xsd -------------------------------------------------------------------------------- /test/xsd/element_int.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_int.xsd -------------------------------------------------------------------------------- /test/xsd/element_integer.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_integer.xsd -------------------------------------------------------------------------------- /test/xsd/element_language.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_language.xsd -------------------------------------------------------------------------------- /test/xsd/element_long.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_long.xsd -------------------------------------------------------------------------------- /test/xsd/element_negativeInteger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_negativeInteger.xsd -------------------------------------------------------------------------------- /test/xsd/element_nmtoken.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_nmtoken.xsd -------------------------------------------------------------------------------- /test/xsd/element_nonNegativeInteger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_nonNegativeInteger.xsd -------------------------------------------------------------------------------- /test/xsd/element_nonPositiveInteger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_nonPositiveInteger.xsd -------------------------------------------------------------------------------- /test/xsd/element_normalizedString.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_normalizedString.xsd -------------------------------------------------------------------------------- /test/xsd/element_positiveInteger.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_positiveInteger.xsd -------------------------------------------------------------------------------- /test/xsd/element_short.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_short.xsd -------------------------------------------------------------------------------- /test/xsd/element_string.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_string.xsd -------------------------------------------------------------------------------- /test/xsd/element_time.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_time.xsd -------------------------------------------------------------------------------- /test/xsd/element_token.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_token.xsd -------------------------------------------------------------------------------- /test/xsd/element_unsignedByte.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_unsignedByte.xsd -------------------------------------------------------------------------------- /test/xsd/element_unsignedInt.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_unsignedInt.xsd -------------------------------------------------------------------------------- /test/xsd/element_unsignedLong.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_unsignedLong.xsd -------------------------------------------------------------------------------- /test/xsd/element_unsignedShort.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/element_unsignedShort.xsd -------------------------------------------------------------------------------- /test/xsd/extension.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension.xsd -------------------------------------------------------------------------------- /test/xsd/extension_all.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension_all.xsd -------------------------------------------------------------------------------- /test/xsd/extension_attribute.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension_attribute.xsd -------------------------------------------------------------------------------- /test/xsd/extension_simpleContent.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension_simpleContent.xsd -------------------------------------------------------------------------------- /test/xsd/extension_simpleContent2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension_simpleContent2.xsd -------------------------------------------------------------------------------- /test/xsd/extension_simpleContent3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/extension_simpleContent3.xsd -------------------------------------------------------------------------------- /test/xsd/import.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/import.xsd -------------------------------------------------------------------------------- /test/xsd/include.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/include.xsd -------------------------------------------------------------------------------- /test/xsd/include2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/include2.xsd -------------------------------------------------------------------------------- /test/xsd/restriction.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction.xsd -------------------------------------------------------------------------------- /test/xsd/restriction2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction2.xsd -------------------------------------------------------------------------------- /test/xsd/restriction3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction3.xsd -------------------------------------------------------------------------------- /test/xsd/restriction4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction4.xsd -------------------------------------------------------------------------------- /test/xsd/restriction5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction5.xsd -------------------------------------------------------------------------------- /test/xsd/restriction6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction6.xsd -------------------------------------------------------------------------------- /test/xsd/restriction7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction7.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration2.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration3.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration4.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration5.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration6.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_enumeration7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_enumeration7.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_fractionDigits.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_fractionDigits.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_length.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_length.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_maxExclusive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_maxExclusive.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_maxInclusive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_maxInclusive.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_maxLength.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_maxLength.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_minExclusive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_minExclusive.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_minInclusive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_minInclusive.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_minInclusive_maxInclusive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_minInclusive_maxInclusive.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_minLength.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_minLength.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_pattern.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_pattern.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_pattern2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_pattern2.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_totalDigits.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_totalDigits.xsd -------------------------------------------------------------------------------- /test/xsd/restriction_whiteSpace.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/restriction_whiteSpace.xsd -------------------------------------------------------------------------------- /test/xsd/schema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema.xsd -------------------------------------------------------------------------------- /test/xsd/schema2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema2.xsd -------------------------------------------------------------------------------- /test/xsd/schema3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema3.xsd -------------------------------------------------------------------------------- /test/xsd/schema4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema4.xsd -------------------------------------------------------------------------------- /test/xsd/schema5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema5.xsd -------------------------------------------------------------------------------- /test/xsd/schema6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema6.xsd -------------------------------------------------------------------------------- /test/xsd/schema_recursive.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_recursive.xsd -------------------------------------------------------------------------------- /test/xsd/schema_recursive2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_recursive2.xsd -------------------------------------------------------------------------------- /test/xsd/schema_simpleType_restriction.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_simpleType_restriction.xsd -------------------------------------------------------------------------------- /test/xsd/schema_xmlns.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_xmlns.xsd -------------------------------------------------------------------------------- /test/xsd/schema_xmlns2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_xmlns2.xsd -------------------------------------------------------------------------------- /test/xsd/schema_xmlns3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/schema_xmlns3.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element10.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element2.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element3.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element4.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element4.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element5.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element5.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element6.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element6.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element7.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element7.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element8.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element8.xsd -------------------------------------------------------------------------------- /test/xsd/sequence_element9.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/sequence_element9.xsd -------------------------------------------------------------------------------- /test/xsd/shiporder.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/shiporder.xsd -------------------------------------------------------------------------------- /test/xsd/shiporder1-2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/shiporder1-2.xsd -------------------------------------------------------------------------------- /test/xsd/shiporder2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/shiporder2.xsd -------------------------------------------------------------------------------- /test/xsd/shiporder3.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/shiporder3.xsd -------------------------------------------------------------------------------- /test/xsd/simpleType_name.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/simpleType_name.xsd -------------------------------------------------------------------------------- /test/xsd/type-with-capital-letter.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/type-with-capital-letter.xsd -------------------------------------------------------------------------------- /test/xsd/type-with-capital-letter2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/type-with-capital-letter2.xsd -------------------------------------------------------------------------------- /test/xsd/xmlns.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/xmlns.xsd -------------------------------------------------------------------------------- /test/xsd/xmlns2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnogatz/xsd2json/HEAD/test/xsd/xmlns2.xsd --------------------------------------------------------------------------------