On the property manufacturer the manufacturers associated with the IC in the CMDB of Aranda are related to the manufacturers in the CMDB of ServiceNow.
The structure of the object “manufacturer” is described below;
{
"manufacturer": [
{
"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 manufacturers |
mapping
{
"id": "",
"value": ""
}
A continuación se describen las propiedades id, value que son utilizadas dentro de la definición mapping (relación de valores)
Properties | Description |
---|---|
Id | Identifier of the supplier in the CMDB of Aranda |
value | Vendor identifier (sys_id or value) in the ServiceNow CMDB |
EXAMPLE: List of manufacturers in Aranda CMDB / ServiceNow CMDB
To create the list of manufacturers, follow the instructions below:
- Get the manufacturer IDs from the Aranda CMDB.
- Get the sys_id or value from the ServiceNow CMDB manufacturers.
-
Assign the following manufacturer equivalence:
Manufacturer at ServiceNow Manufacturer in Aranda ID MANUFACTURER ARANDA SYS_ID MANUFACTURER SERVICENOW Apple Apple 1 sys_id_item1 Toshiba Toshiba 13 sys_id_item2
- Type the ID MANUFACTURER ARANDA On Property “id” and the SYS_ID MANUFACTURER SERVICENOW of its equivalent taken from the CMDB de ServiceNow On Property value
{
"manufacturer": [
{
"id": 1,
"value": "sys_id_item1"
},
{
"id": 13,
"value": "sys_id_item2"
}
]
}