OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

s-ramp-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Fixing xsd typo in the atom-binding.xsd


Back in April, after we send out for review I discovered a typo in one of the atombinding.xsd.

See:
http://docs.oasis-open.org/s-ramp/s-ramp/v1.0/csprd01/part2-atom-binding/s-ramp-v1.0-csprd01-part2-atom-binding.html#_Toc352157370

In it we specified:

<xsd:element name="error">

    <xsd:attribute name="responseCode" type="xsd:string" use="required" />

    <xsd:attribute name="name" type="xsd:string" use="required" />

    <xsd:attribute name="uuid" type="xsd:string" use="optional" />

    <xsd:complexType>

      <xsd:sequence>

        <xsd:element name="description" type="xsd:string" minOccurs="1" maxOccurs="1"  />

        <xsd:element name="howtofix" type="xsd:string" minOccurs="0" maxOccurs="1"  />

        <xsd:element name="detail" type="xsd:string" minOccurs="0" maxOccurs="1"  />

      </xsd:sequence>

    </xsd:complexType>

  </xsd:element>



the syntax for this is wrong and we intended:

<xsd:element name="error">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="description" type="xsd:string" minOccurs="1" maxOccurs="1" />
        <xsd:element name="howtofix" ty pe ="xsd:string" minOccurs="0" maxOccurs="1" />
        <xsd:element name="detail" type="xsd:string" minOccurs="0" maxOccurs="1" />
      </xsd:sequence>
      <xsd:attribute name="responseCode" type="xsd:string" use="required" />
      <xsd:attribute name="name" type="xsd:string" use="required" />
      <xsd:attribute name="uuid" type="xsd:string" use="optional" />
    </xsd:complexType>
  </xsd:element> Now is the time to fix it. Eric was going through the requirements for the comment log and according to the oasis policy all comments during the public review process must come in through the comment email list.  The log must contain a link to the comment email. So here goes a message to this list. Thx, --Kurt  



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]