A következő objektumok közvetlenül kapcsolódnak az "valuemap" API-hoz.
Az értéktérkép objektum a következő tulajdonságokkal rendelkezik.
| Property | Type | Description | 
|---|---|---|
| valuemapid | string | (readonly) ID of the value map. | 
| hostid (required)  | 
       id | Value map host ID. | 
| name (required)  | 
       string | Name of the value map. | 
| mappings (required)  | 
       array | Value mappings for current value map. The mapping object is described in detail below. | 
| uuid | string | Universal unique identifier, used for linking imported value maps to already existing ones. Used only for value maps on templates. Auto-generated, if not given. For update operations this field is readonly.  | 
       
Vegye figyelembe, hogy egyes módszereknél (frissítés, törlés) a kötelező/választható paraméterkombináció eltérő.
Az értékleképezések objektum határozza meg az értékleképezés értékleképezéseit. Az a következő tulajdonságokkal rendelkezik.
| Property | Type | Description | 
|---|---|---|
| type | integer | Mapping match type. For type equal 0,1,2,3,4 value field cannot be empty, for type 5 value field should be empty.Possible values: 0 - (default) exact match ; 1 - mapping will be applied if value is greater or equal1; 2 - mapping will be applied if value is less or equal1; 3 - mapping will be applied if value is in range (ranges are inclusive), allow to define multiple ranges separated by comma character1; 4 - mapping will be applied if value match regular expression2; 5 - default value, mapping will be applied if no other match were found.  | 
       
| value (required)  | 
       string | Original value. Is not required for mapping of type "default".  | 
       
| newvalue (required)  | 
       string | Value to which the original value is mapped to. | 
1 supported only for items having value type "numeric unsigned", "numeric float".
       2 supported only for items having value type "character".