We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi! It looks to me like the generator does not support xs:group element type. For example, a definition like
xs:group
<xs:element name="PrimaryInsured"> <xs:complexType> <xs:sequence> <xs:element minOccurs="0" name="EmailAddress" type="EmailAddress"/> <xs:element minOccurs="0" name="EmploymentInformation" type="EmploymentInformation"/> <xs:element minOccurs="0" name="MailingAddress" type="MailingAddress"/> <xs:group ref="PersonNameAndDateOfBirth"/> </xs:sequence> </xs:complexType>
yields
/** PrimaryInsured */ export interface PrimaryInsured { /** g */ 0?: string; /** r */ 1?: string; /** o */ 2?: string; /** u */ 3?: string; /** p */ 4?: string; /** EmailAddress|xs:string|pattern,maxLength */ EmailAddress?: string; /** InsuranceScore|xs:string|VeryPoor,Poor,Fair,Average,AboveAverage,Good,Excellent */ InsuranceScore?: string; /** MailingAddress */ MailingAddress?: MailingAddress; /** PreviousAddress */ PreviousAddress?: MailingAddress; }
Is this intentional? Are groups on the roadmap anytime soon?
Thanks
M.
The text was updated successfully, but these errors were encountered:
Hi there, II'm also having this issue, did you figure out if it's intentional? What was your fix? Thanks!
Sorry, something went wrong.
No branches or pull requests
Hi!
It looks to me like the generator does not support
xs:group
element type. For example, a definition likeyields
Is this intentional? Are groups on the roadmap anytime soon?
Thanks
M.
The text was updated successfully, but these errors were encountered: