/
OBJECT CODES

OBJECT CODES

An OBJECT CODE is a way of referencing properties of objects of the system.

The syntax is similar to many programming languages and the most basic format is OBJECT.PROPERTY

SYNTAX

Objects can be nested, so it is possible to access subobject properties using a syntax like OBJECT.SUBOBJECT.PROPERTY

It is also possible to include some modifiers that allow more tailored references to objects. The complete syntax is (square brackets denote optional parameters)

       ROOT.SUBOBJECT[{SELECTOR}][:SCOPE].PROPERTY[{OPTION}][:PROPERTY_SCOPE]

  1. ROOT: MANDATORY. No all objects can act as a root node in the OBJECT CODE syntax. See OBJECT CODE NODES for more information

  2. SUBOBJECT{SELECTOR}:SCOPE. This block must appear at least once and can be repeated N times (nested subobjects)

    1. SUBOBJECT: MANDATORY. The name of a valid subobject. See OBJECT CODE NODES

    2. {SELECTOR}: OPTIONAL. Some nodes admit the possibility of specifying a selector to narrow the list of objects to which they can refer. Each type of object has its particular selectors. The name of the SELECTOR can have the following characters: letters A to Z, numbers 0 to 9, special characters: ". - _ #"

    3. :SCOPE: OPTIONAL. In some cases it is also possible to limit the scope of the referenced object. Normally the scope refers to a date range (see OBJECT CODES#SCOPE). Only some objects admit the SCOPE modifier..

  3. PROPERTY{OPTION}:PROPERTY_SCOPE

    1. PROPERTY: MANDATORY. determines the property for which we want to obtain the value. The range of properties is completely dependent of the object type. Take into account that a property can return a single value or an array (see RETURNED VALUES).

    2. {OPTION}: OPTIONAL. Some properties admit a modifier that allow to define which feature of the property must be returned. For example, when retrieving the value of an ITEM of type RADIO BUTTON, it is possible to obtain the literal description of the option selected (ITEM.ANSWER{DESC]), the value assigned to the option selected  (ITEM.ANSWER{VALUE}) or the order of the selected option in the list of available options ((ITEM.ANSWER{ORDER}). The name of the OPTION can have the following characters: letters A to Z, numbers 0 to 9, special characters: ". - _ #"

    3. :PROPERTY_SCOPE: OPTIONAL. Some properties can return multiple values instead of a single value. In those cases it is possible to specify a "property scope" to select only one or a subset of the returned values

SELECTORS, SCOPE AND OPTIONS

As mentioned before, not all objects accept selectors, scope or options.

The system will not generate an error when modifiers are indicated in objects that do not support them. Instead,they will be ignored as like they were not present at all.

SCOPE

The modifier [SCOPE] may refer to: 









FIRST

The first element available:

  • In TASK objects, it refers to the oldest TASK

  • In FORM objects it refers to the first FORM in a TASK

LAST

The last element available:

  • In TASK objects, it refers to the most recent TASK

  • In FORM objects it refers to the last FORM in a TASK

Additionally, it is also possible to use a DATE SCOPE to define a date range for evaluating the OBJECT CODES. Note that the scope is referred to the TASK in which the OBJECT CODE has been invoked.

RETURNED VALUES

The returned value of an object code can be of two types:

  1. Single value: the OBJECT CODE refers to single object in the system which has a unique value. For example USER.GIVEN will return only one string with the name of the USER

  2. Array: In the following situations the return value will be an array

    1. When the OBJECT CODE refers to multiple objects in the system. In this case the array will contain the property value of each of the found objects. For example, TASK.FORM.NAME returns the names of all the FORMs of a TASK (if there were only one FORM, then a single value would be returned instead of an array)

    2. When the OBJECT CODE refers to a single object in the system, but the property is inherently multi-valued. For example FORM.ITEM.OPTIONS refers to the list of options of multi-option ITEMS (radio buttons, check boxes, CODE items...)

Language considerations

Those properties that admit localization will be returned in the active session language.

For example, in ITEMS of type CODE the internally stored value is a code which can have a description in multiple languages (see CODES WEB SERVICES). Then, when asking for the description ob such objects, the returned value will be translated to the corresponding language.

As a general rule of thumb, most of the literals in the SYSTEM OBJECTS and LIBRARY OBJECTS are language dependent.

OBJECT CODE NODES

The following table shows the available OBJECT CODE base objects, and states which of them can act as a root object or as a sub-object

CODE

ROOT

SUBOBJECT



CODE

ROOT

SUBOBJECT



ADDRESS

NO

YES

Introduced in API version 2.7.9

ADMISSION

YES

YES

 

CASE

YES

NO

Introduced in API version 2.6.20

CHANNEL

NO

YES

Introduced in API version 2.6.20

CONTACT

NO

YES

 

DATA

YES

YES

 

DESCRIPTION

NO

YES

Introduced in API version 2.7.10

EVENT

YES

NO

Not Implemented

@FORM

YES

YES

Introduced in API Version 2.7.22

FORM

YES

YES



IDENTIFIER

NO

YES

Introduced in API version 2.6.20

IMAGE

NO

YES

Introduced in API version 2.6.20

@ITEM

YES

YES

Introduced in API Version 2.7.22

ITEM

YES

YES

 

OUTCOME

NO

YES

Introduced in API version 2.7.19

PROGRAM

YES

NO

A program TEMPLATE. Also refers to a PROGRAM TEMPLATE associated with a SUBSCRIPTION

Introduced in API version 2.7.9

PROTOCOL

YES

YES

Not Implemented

REFERRAL

YES

YES

Introduced in API version 2.7.12

ROLE

NO

YES

 

ROW

YES

NO

Introduced in API version 2.7.9

SESSION

YES

NO

Introduced in API version 2.7.3

SETTINGS

NO

YES

 

SUBSCRIPTION

YES

YES

Introduced in API version 2.7.9

SYSTEM

YES

NO

Introduced in API version 2.7.10

@TASK

YES

NO

Introduced in API Version 2.7.22

TASK

YES

YES

 

TEAM

YES

YES

 

USER

YES

YES

 





Related content