On the property brand the brands associated with the IC in the CMDB of Aranda are related to the brands in the CMDB of ServiceNow.
The structure of the “brand” object is described below;
{
"brand": [
{
"reference": "",
"mapping": [
{
"value": "",
"id": 0
}
]
}
]
}
Where:
properties | description |
---|---|
Reference | It corresponds to the name/alias (a pseudoname given to the ServiceNow class) of the ServiceNow class with which we will relate the category of the Aranda CI |
mapping | Represents the relationship of the brands |
mapping
{
"id": "",
"value": ""
}
The following describes the id, value properties that are used within the definition mapping (list of values)
Properties | Description |
---|---|
Id | Brand identifier in the CMDB of Aranda |
value | Brand identifier (sys_id or value) in the ServiceNow CMDB |
EXAMPLE: List of brands in Aranda CMDB / ServiceNow CMDB
To create the brand relationship, follow the instructions below:
- Get the IDs of the brands of the Aranda CMDB.
- Get the sys_id or value of ServiceNow CMDB brands.
- Assign the following trademark equivalence:
Brands on ServiceNow | Brands in Aranda | ID BRAND ARANDA | SYS_ID BRAND SERVICENOW |
---|---|---|---|
Apple | Apple | 1 | sys_id_item1 |
Toshiba | Toshiba | 13 | sys_id_item2 |
- Type the ID BRAND ARANDA On Property “id” and the SYS_ID BRAND SERVICENOW of its equivalent taken from the CMDB de ServiceNow On Property value
{
"brand": [
{
"id": 1,
"value": "sys_id_item1"
},
{
"id": 13,
"value": "sys_id_item2"
}
]
}