The structure of the “project” object is described below
{
"project": [
{
"value": "",
"reference": "",
"id": 0
}
]
}
reference image in ASMS, in the image you can see the project field in the upper left

propiedades | descripción |
---|---|
value | Identificador (sys_id o value) del proyecto en la CMDB de ServiceNow |
reference | Identificador único para crear una relación entre los objetos typeRegister, service, project, category, applicant, responsibleGroup, responsible, ci, company, client, providers y organizationalArea si el tipo de mapeo es “Mapper” o “Value” |
id | Id del proyecto en ASMS |
EJEMPLO: Relación del proyecto en CMDB de Aranda / CMDB de ServiceNow To create the list of projects, follow the instructions below:
- Get the IDs of the Aranda CMDB projects.
- Get the sys_id or value of ServiceNow projects.
- Assign the following project equivalence:
Project in ServiceNow | Project in Aranda | Project ID Aranda | ServiceNow Project Sys_id |
---|---|---|---|
Project 1 | Project 1 | 1 | sys_id_item1 |
Project 2 | Project 2 | 13 | sys_id_item2 |
- Type the Project ID Aranda On Property “id” and the ServiceNow Project Sys_id of its equivalent taken from the CMDB de ServiceNow On Property value
{
"project": [
{
"id": 1,
"value": "sys_id_item1"
},
{
"id": 13,
"value": "sys_id_item2"
}
]
}