MetaResource Resource

Description of available resources.

GET /meta

All available resources.

Response Body
media type data type description
application/json ResourceClassInfosDto (JSON) Description of all available resources

Example

Request
GET /meta
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "resclasses" : [ {
    "icon" : "...",
    "root" : "...",
    "landing" : "...",
    "landingsubres" : "...",
    "descriptiondetails" : "...",
    "description" : "...",
    "sizedescription" : "...",
    "names" : [ "...", "..." ],
    "descriptions" : [ "...", "..." ],
    "sizes" : [ 12345, 12345 ],
    "times" : [ 12345, 12345 ],
    "precedence" : 12345
  }, {
    "icon" : "...",
    "root" : "...",
    "landing" : "...",
    "landingsubres" : "...",
    "descriptiondetails" : "...",
    "description" : "...",
    "sizedescription" : "...",
    "names" : [ "...", "..." ],
    "descriptions" : [ "...", "..." ],
    "sizes" : [ 12345, 12345 ],
    "times" : [ 12345, 12345 ],
    "precedence" : 12345
  } ]
}