Relative facade endpoint:
POST /portal/skillmanagement/readInheritedRequirements
request.body
:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": ["type", "id"]
}
}
Contains already all requested requirements
which are already merged.
response.body
:
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": {
"type": "object",
"properties": {
"endDate": {
"type": ["string", "null"],
"format": "date-time"
},
"id": {
"type": "string"
},
"lastChanged": {
"type": "number"
},
"mandatory": {
"type": "boolean"
},
"startDate": {
"type": ["string", "null"],
"format": "date-time"
},
"tag": {
"type": "object",
"properties": {
"description": {
"type": ["string", "null"]
},
"id": {
"type": "string"
},
"lastChanged": {
"type": "number"
},
"name": {
"type": "string"
}
},
"required": ["description", "id", "lastChanged", "name"]
}
},
"required": ["endDate", "id", "mandatory", "lastChanged", "startDate", "tag"]
}
}