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

Propiedades | Descripción |
---|---|
value | Identificador de la compañía en DevOps |
reference | Identificador único para crear una relación entre los conceptos project > category, itemType, typeRegister, applicant, responsibleGroup, responsible, company, client ver |
id | Id de la compañía en ASMS |
EJEMPLO: Relación de la compañía en ASMS de Aranda / DevOps To create the list of states, follow the instructions below:
- Get the IDs of the companies from the ASMS of Aranda.
- Get the IDs or value of DevOps companies.
- Assign the following company equivalence:
DevOps Company | Company in Aranda | Company ID Aranda | DevOps Company IDs |
---|---|---|---|
Company 1 | Company 1 | 1 | id_devops_item1 |
Company 2 | Company 2 | 13 | id_devops_item2 |
- Type the Company ID Aranda On Property “id” and the DevOps Company IDs of its equivalent taken from DevOps On Property value
{
"company": [
{
"id": 1,
"value": "id_devops_item1"
},
{
"id": 13,
"value": "id_devops_item2"
}
]
}