Document Format of AttributeAttribute List DTD<?xml encoding="UTF-8"?> <!ELEMENT attributes (attribute)*> <!ATTLIST attributes href CDATA #IMPLIED> <!ELEMENT attribute (#PCDATA)> <!ATTLIST attribute href CDATA #IMPLIED> Example of Attribute List<?xml version="1.0" encoding="UTF-8"?> <attributes> <attribute href="http://tech-ada.utt.fr/attribute/name/">name</attribute> <attribute href="http://tech-ada.utt.fr/attribute/type/">type</attribute> <attribute href="http://tech-ada.utt.fr/attribute/license/">license</attribute> <attribute href="http://tech-ada.utt.fr/attribute/program+language/">program language</attribute> <attribute href="http://tech-ada.utt.fr/attribute/last+release/">last release</attribute> <attribute href="http://tech-ada.utt.fr/attribute/project+site/">project site</attribute> <attribute href="http://tech-ada.utt.fr/attribute/demo+site/">demo site</attribute> </attributes> Attribute DTD<?xml encoding="UTF-8"?> <!ELEMENT attribute (value)*> <!ATTLIST attribute href CDATA #IMPLIED name CDATA #IMPLIED> <!ELEMENT value EMPTY> <!ATTLIST value href CDATA #IMPLIED value CDATA #REQUIRED> Example of Attribute<?xml version="1.0" encoding="UTF-8"?> <attribute href="http://tech-ada.utt.fr/attribute/license/" name="license"> <value href="http://tech-ada.utt.fr/attribute/license/GPL+License/" value="GPL License" /> <value href="http://tech-ada.utt.fr/attribute/license/W3C+Software+Notice+and+License/" value="W3C Software Notice and License" /> </attribute> XML structure of Attribute
Get a List of Attributeget all attributes. ArgumentsNote: This method requires an HTTP GET request. Example RequestGET /attribute/ Example Response<?xml version="1.0" encoding="UTF-8"?> <attributes> <attribute href="http://tech-ada.utt.fr/attribute/name/">name</attribute> <attribute href="http://tech-ada.utt.fr/attribute/type/">type</attribute> <attribute href="http://tech-ada.utt.fr/attribute/license/">license</attribute> <attribute href="http://tech-ada.utt.fr/attribute/program+language/">program language</attribute> <attribute href="http://tech-ada.utt.fr/attribute/last+release/">last release</attribute> <attribute href="http://tech-ada.utt.fr/attribute/project+site/">project site</attribute> <attribute href="http://tech-ada.utt.fr/attribute/demo+site/">demo site</attribute> </attributes> Status Codes200: OK
500: Internal Server Error
503: Service currently unavailable
Get an Attributeget a specific attribute information with attribute values. Argumentsattributename (Required)
Note: This method requires an HTTP GET request. Example RequestGET /attribute/license/ Example Response<?xml version="1.0" encoding="UTF-8"?> <attribute href="http://tech-ada.utt.fr/attribute/license/" name="license"> <value href="http://tech-ada.utt.fr/attribute/license/GPL+License/" value="GPL License" /> <value href="http://tech-ada.utt.fr/attribute/license/W3C+Software+Notice+and+License/" value="W3C Software Notice and License" /> </attribute> Status Codes200: OK
404: Not Found
500: Internal Server Error
503: Service currently unavailable
![]() |