Returns a single concept.
Status: 200 OK
<concept>
<created-at type="datetime">2007-08-01T10:09:36Z</created-at>
<description>Motorcycle Tyres</description>
<id type="integer">49</id>
<type-id type="integer">18</type-id>
<updated-at type="datetime">2007-08-03T12:31:17Z</updated-at>
</concept>
Returns a collection of concepts.
Status: 200 OK
<concepts>
<concept>
...
</concept>
<concept>
...
</concept>
</concepts>
Returns a collection of concepts that belongs to a type.
Status: 200 OK
<concepts>
<concept>
...
</concept>
<concept>
...
</concept>
</concepts>
Creates a new concept. The XML for the new concept is returned on a successful request with the timestamps recorded and ids for the concept.
<concept>
<description>Car Tyres</description>
<type-id type="integer">18</type-id>
</concept>
Status: 201 Created
Location: http://test.gastus.com/concepts/#{new-concept-id}.xml
<concept>
...
</concept>
Updates an existing concept with new details from the submitted XML.
<concept>
<description>Car Gasoline</description>
<type-id type="integer">19</type-id>
</concept>
Status: 200 OK
Destroys the concept at the referenced URL.
Status: 200 OK