Web Service Method: Request All Relations Between Concept and SKOS-XL Label
Abstract
Web Service Method: Request All Relations Between Concept and SKOS-XL Label
Description  | 
|---|
Retrieves all relations between a concept and SKOS-XL labels.  | 
URL: /api/thesaurus/{project}/conceptRelations
Request
Supported Methods  | 
|---|
GET  | 
Request Parameters
Parameter  | Type  | Required  | Description  | 
|---|---|---|---|
concept  | String  | true  | URI of the concept  | 
Content-Type
 application/x-www-form-urlencoded 
Response
This method returns execution results in JSON format.
A JsonConceptSkosxlLabels object.
Attribute  | Type  | Comment  | 
|---|---|---|
assertedSkosxlLabels  | Array of JsonAssertedSkosxlLabel  | |
conceptUri  | String  | 
Example Response
{
  "conceptUri" : "https://semantic-web.com/api/conceptUri#31",
  "assertedSkosxlLabels" : [ {
    "skosxlLabel" : {
      "literalForm" : {
        "language" : "en",
        "label" : "Label 14675"
      },
      "uri" : "https://semantic-web.com/api/uri#13593"
    },
    "property" : "https://semantic-web.com/api/property#7947"
  } ]
}