OLIVIER HUREAU wrote on 2024-04-02 18:41:
Shouldn't we remove the maxOccurs for the error element ?
[...]
NEW ``` <xs:complexType name="ReportMetadataType"> <xs:all> <xs:element name="org_name" type="xs:string" minOccurs="1" maxOccurs="1"/> <xs:element name="email" type="xs:string" minOccurs="1" maxOccurs="1"/> <xs:element name="extra_contact_info" type="xs:string" minOccurs="0" maxOccurs="1"/> <xs:element name="report_id" type="xs:string" minOccurs="1" maxOccurs="1"/> <xs:element name="date_range" type="DateRangeType" minOccurs="1" maxOccurs="1"/> <xs:element name="error" type="xs:string" minOccurs="0"/> </xs:all> </xs:complexType> ```
For the sake of consistency, either remove maxOccurs from each element under <xs:all> or set maxOccurs="1" for each.
Regards, Matt _______________________________________________ dmarc mailing list [email protected] https://www.ietf.org/mailman/listinfo/dmarc
