Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve support for some XSD features #17

Merged
merged 5 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix xml examples
  • Loading branch information
cre-os committed Jan 13, 2025
commit d5de73273761a6c07765067ea6e81505379f189e
4 changes: 2 additions & 2 deletions tests/sample_models/orders/invalid_xml/invalid.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version='1.0' encoding='utf-8'?>
<orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" batch_id="4" xsi:noNamespaceSchemaLocation="../orders.xsd">
<shiporder orderid="3" processed_at="2023-09-11T18:27:56.000+02:00">
<orderperson>
<orderperson name="billing">
<name>Alice</name>
<address>string</address>
<city>string</city>
<zip codingSystem="int">21093</zip>
<country>US</country>
</orderperson>
<shiptoContact>
<shiptoContact name="shipping">
<name>Bob</name>
<address>string</address>
<city>string</city>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" batch_id="5" xsi:noNamespaceSchemaLocation="../orders.xsd">
<version>3</version>
<shiporder orderid="1" processed_at="2023-09-10T09:37:00.000+02:00">
<orderperson>
<orderperson name="billing">
<name>Bob</name>
<address>string</address>
<city>string</city>
Expand Down
Loading