Details

    • Type: Sub-task
    • Status: Resolved
    • Priority: Minor
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: 5.7.1
    • Component/s: Core

      Description

      We currently support the XSD synthax where the type definition is done before the field definition :

       <xs:simpleType name="BureauType">
            <xs:restriction base = "xs:string">
                <xs:enumeration value = "EFU"/>
            </xs:restriction>
        </xs:simpleType>
      
        <xs:element name="bureau" type = "nxs:BureauType"/>
      

      The goal is to be able to have an inline definition of the type :

       <xs:element name = "inlineBureau">
              <xs:simpleType>
                  <xs:restriction base = "xs:string">
                      <xs:enumeration value = "EFU"/>
                  </xs:restriction>
              </xs:simpleType>
        </xs:element>
      

        Attachments

          Activity

            People

            • Assignee:
              tdelprat Thierry Delprat
              Reporter:
              tdelprat Thierry Delprat
              Participants:
            • Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: