Get Model Array Set Metadata
get
/rest/v19/productFamilies/{prodFamVarName}/productLines/{prodLineVarName}/models/{modelVarName}/arraySets/{arraySetVarName}
This service returns the metadata for a specific array set of a Model.
Request
Path Parameters
-
arraySetVarName(required): string
Array Set variable name.
-
modelVarName(required): string
Model variable name.
-
prodFamVarName(required): string
Product family variable name.
-
prodLineVarName(required): string
Product line variable name.
Query Parameters
-
excludeLinks: string
Exclude links.
-
expand: string
Allows expansion of relationships.
-
showParentAttrs: string
Allows expansion of parent attributes.
Response
Supported Media Types
- application/json
Default Response
Array set defined at model level.
Root Schema : arraySet
Type:
Show Source
object-
defaultAttrId:
integer
Title:
Default Attribute IdDefault attribute id. -
desc:
string
Title:
DescDesc. -
displayType:
object displayType
-
id:
integer
Title:
IdPrimary key of the array set. -
labelOption:
object labelOption
-
links:
object Reference Links
Title:
Reference LinksReference links for the Parent, Self, Children and Related as applicable -
name:
string
Title:
The Name SchemaAn explanation about the purpose of this instance. -
prefixText:
string
Title:
Prefix TextPrefix text. -
refType:
integer
Title:
Ref TypeRef type. -
sizeAttrId:
integer
Title:
Size Attribute IdSize attribute id. -
sizeAttrVarName:
string
Title:
Size Attribute variable nameSize attribute variable name. -
suffixText:
string
Title:
Suffix TextSuffix text. -
variableName:
string
Title:
NameUnique variable name to identify the array set.
Nested Schema : displayType
Type:
Show Source
object-
displayValue:
string
Title:
Display ValueDisplay value. -
lookupCode:
string
Title:
Lookup CodeLookup code.
Nested Schema : labelOption
Type:
Show Source
object-
displayValue:
string
Title:
Display ValueDisplay value. -
lookupCode:
string
Title:
Label OptionLable option.
Nested Schema : Reference Links
Type:
objectTitle:
Reference LinksReference links for the Parent, Self, Children and Related as applicable
Show Source
-
href:
string
Title:
hrefURL to the related object -
rel:
string
Title:
LinkLink relationship to the current object
Examples
The following example shows how to retrieve the metadata for the specified Configuration item by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.
curl - X GET -H "Authorization: Bearer <token>" - H "Content-type: application/json" https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionsPackage/arraySets/_setapplicationSoftware
Translations
The following components can be appended to the end of this endpoint to return translation metadata:
/translations- This returns all language translations for the requested entity./translations/{langCode}- This returns a specific language translation for the requested entity. Example:/translations/es
Response Body Sample
{
"id": 36673355,
"links": [{
"rel": "parent",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage"
}, {
"rel": "self",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage/arraySets/_setapplicationSoftware"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage/arraySets/_setapplicationSoftware/translations"
}, {
"rel": "child",
"href": "https://sitename.oracle.com/rest/v19/productFamilies/vision/productLines/servers/models/ultraPowerSolutionPackage/arraySets/_setapplicationSoftware/attributes"
}
],
"refType": 3,
"name": "Application Software",
"variableName": "_setapplicationSoftware",
"desc": "",
"sizeAttrId": 36673055,
"defaultAttrId": -1,
"displayType": {
"lookupCode": "1",
"displayValue": "Horizontal"
},
"labelOption": {
"lookupCode": "1",
"displayValue": "Display Only First Label"
},
"prefixText": "",
"suffixText": ""
}