Object type data type
The object-type
data type is used to describe the type of store objects using the API code of the type.
The API code of types can be found using System Management:
Your Name » System management » Types
Example
To set the type of the profile
object to Staff, which has the API code of std:type:person:staff
, you could use a set-value
Instruction:
1 2 3 4 5 6 7 8 9 10 11 12 13 | { "source" : "TYPE" , "action" : "if-value-one-of" , "values" : [ "STAFF" ], "then" : [ { "action" : "set-value" , "destination" : "profile" , "name" : "dc:attribute:type" , "value" : "std:type:person:staff" } ] } |