Get Instance Schema
Retrieve the instance schema for service and class
Request
URI
GET
https://{api_host}/iaas-proxy-provider/api/services/{serviceId}/data-service/schema/{classId}/instances/{id}
COPY
Path Parameters
string
serviceId
Required
The ID of the IaaS service as registered in the Component Registry service.
string
classId
Required
The class id of object.
string
id
Required
The instance id.
Responses
200
The specific instance schema is retrieved.
Returns Schema of type(s) */*
{
"fields": [
{
"permissibleValues": {
"customAllowed": false
},
"displayAdvice": "string",
"columns": [
"Field Object"
],
"dataType": {
"typeId": "string"
},
"isMultiValued": false,
"description": "string",
"orderIndex": 0,
"id": "string",
"label": "string",
"state": {
"dependencies": [
"string"
],
"facets": [
{}
]
}
}
]
}