GetClassificationSchemeAttributeList - Outputs

The response message contains Classification Scheme ID, Classification Scheme Name, Classification Scheme Type, Classification Scheme Description, and Classification Scheme Attributes.

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.tibco.com/cim/services/dataservice/wsdl/2.0">
  <soapenv:Header/>
  <soapenv:Body>
    <ClassificationSchemeAttributeListRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns="http://www.tibco.com/cim/services/dataservice/wsdl/2.0">
      <UserInfo>
        <UserName>a</UserName>
        <Password>a</Password>
        <Enterprise>a</Enterprise>
      </UserInfo>
      <Repository>
        <Name>FBT_Repository</Name>
        <ClassificationScheme>
          <Id>FBT</Id>
          <Name>FBT</Name>
        </ClassificationScheme>
      </Repository>
    </ClassificationSchemeAttributeListRequest>
  </soapenv:Body>
</soapenv:Envelope>

Response:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.tibco.com/cim/services/dataservice/wsdl/2.0">
  <soapenv:Header/>
  <soapenv:Body>
    <ClassificationSchemeAttributeListResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns="http://www.tibco.com/cim/services/dataservice/wsdl/2.0">
      <ClassificationScheme>
        <SchemeId>FBT</SchemeId>
        <Name>FBT</Name>
        <Description>FBT Desc</Description>
        <ModDate>12/12/12</ModDate>
        <Modversion>1</Modversion>
        <Active>Y</Active>
        <Type>AttributeBased</Type>
        <Attributes>
          <Attribute typ="String">
            <Name>percentageOfAlcohol</Name>
            <Position>1</Position>
            <Expression>@percentageOfAlcohol</Expression>
          </Attribute>
        </Attributes>
      </ClassificationScheme>
    </ClassificationSchemeAttributeListResponse>
  </soapenv:Body>
</soapenv:Envelope>