Get Type Schema Fields
Get the permissible values of a field in the type specific schema.
Request
URI
POST
https://{api_host}/iaas-proxy-provider/api/services/{serviceId}/data-service/schema/{classId}/types/{typeFilter}/{fieldId}/values
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
typeFilter
Required
typeFilter
string
fieldId
Required
The id of a field on the schema of the specified object class.
Request Body
elementValuesRequest
of type(s)
application/json
Optional
{
"pagingInfo": {
"offset": 0,
"count": 0
},
"headers": {
"entries": [
{
"key": "string"
}
]
},
"tenantId": "string",
"text": "string",
"userId": "string",
"dependencyValues": {
"entries": [
{
"key": "string"
}
]
}
}
string
tenantId
Optional
tenantId
string
text
Optional
text
string
userId
Optional
userId
Responses
200
The permissible values of the specified field are retrieved.
Returns
elementValues
of type(s)
*/*
{
"values": [
{
"label": "string"
}
]
}