close
Skip to main content
Filter by
Sorted by
Tagged with
Best practices
1 vote
1 replies
66 views

I maintain a fairly large XSD spec and we are deprecating a number of elements, attributes or enumeration values in the spec. I understand that XML Schema does not include constructs for deprecation, ...
infojunkie's user avatar
  • 1,111
1 vote
1 answer
64 views

I wanted to do something like this: <xs:choice> <xs:sequence> <xs:element name="estado" maxOccurs="unbounded" minOccurs="1"></xs:element> <xs:...
Manuel José Verdú Ramón's user avatar
1 vote
1 answer
95 views

I'm trying to convert a SEPA XSD file (namely pain.008.001.11 from https://www.iso20022.org/iso-20022-message-definitions) to Rust structs which works great so far. Since I want to generate XML files ...
TrackerSB's user avatar
  • 326
2 votes
2 answers
147 views

I have a string element in an XML schema that I would like to restrict to the extended Latin character set plus numbers, punctuation, whitespace, etc. I have tried the following: <xsd:pattern value=...
nickfindley's user avatar
0 votes
0 answers
45 views

I am implementing an XML signing solution using Node.js to authenticate with a strict external API. I need to sign a "Seed" XML to obtain an access token. The API returns an generic "...
delfincortesb's user avatar
Advice
0 votes
1 replies
61 views

I am working on BridgeLink 4.6.0, and I need to validate XML files (CCD/CCDA) using XSD schemas. Earlier versions of BridgeLink allowed Java access inside JavaScript (e.g., Java.type, Java.extend, ...
Arjun Asokan's user avatar
2 votes
1 answer
204 views

I am creating an ASP.NET Core Web API endpoint which will fetch XML output in the Nautix compliant XML. Despite the XmlAttribute set on the class, it does not return attribute in the output. Please ...
Rajiv Ranjan's user avatar
0 votes
0 answers
104 views

I have downloaded xsd files from the Greek government's site here and I am trying to create C# classes. Most of them will be created fine, but the ones I really need will not, and the cause these ...
Kostas L's user avatar
0 votes
1 answer
78 views

I have the following XSD: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ns0="http://cfe.dgi.gub.uy" elementFormDefault="qualified" attributeFormDefault=&...
omnipower2's user avatar
4 votes
1 answer
231 views

I get the following error, while trying to validate XML using a schema: lxml.etree.XMLSchemaParseError: Element '{http://www.w3.org/2001/XMLSchema}attributeGroup', attribute 'ref': The QName value '{...
Bogdan Prădatu's user avatar
0 votes
0 answers
149 views

How is it possible using xsdata for the generation of the model (dataclass) from an XSD with choice elements, to perform validations on those choices, so that it only allows one of them to be set? XSD ...
Luis Daniel's user avatar
0 votes
0 answers
54 views

Say I have for example this XML <Account> <AccountValidTo/> </Account> where AccountValidTo is defined in XSD as xs:dateTime. I have Java classes generated from the XSD using ...
awa993's user avatar
  • 187
0 votes
1 answer
63 views

I have an XML document about books: <books xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <book> <genreRef>ID000</genreRef> </book> &...
Roger Costello's user avatar
0 votes
0 answers
47 views

I am trying to reverse-engineer a data model from an XSD file. The file includes multiple field types, labels, and picklist values. One example is: <xsd:simpleType name="MeasurementUnitType&...
Joe Squalo's user avatar
1 vote
2 answers
82 views

I have the following OpenAPI spec for a data type: ObjRefOrValue: type: object anyOf: - $ref: "#/components/schemas/ObjRef" - $ref: "#/components/schemas/Obj" Where ...
Marcin's user avatar
  • 21

15 30 50 per page
1
2 3 4 5
949