CustomFieldValue Data Type

Encapsulates a custom field value. Supports the following data types:

  • string, date, double and long that are stored as separate fields
  • reference to an entity, that is serialized as Json to serializedValue field
  • a child entity containing the actual data, that is serialized as Json to serializedValue field
  • a list or a map of above mentioned data types, serialized as Json to to serializedValue field

A reference to an entity, child entity, list and map values should not be modified behind the scenes - an appropriate SET method has to be called to serialize the value. - This limitations comes from MERGE loosing transient values and thus JPA callback @postUpdate can not be used (see CustomFieldInstance class).

Serialized value format is described in serializeValue() method for each data type.

entityReferenceValueForGUI, mapValuesForGUI, matrixValuesForGUI fields are used in data entry from GUI ONLY.

Implemented Interfaces
Serializable
Properties
name data type description
from number
to number
string string String type value
date object Date type value
long number Long type value
double number Double type value
boolean boolean Double type value
entity EntityReferenceWrapper Entity reference type value
url UrlReferenceWrapper Entity reference type value
listString array of string List of Strings type value
listDate array of object List of Date type value
listLong array of number List of Long type value
valid boolean Check that start date is before end date or any of them is empty
listDouble array of number List of Double type value
listBoolean array of boolean List of Boolean type value
listEntity array of EntityReferenceWrapper List of Entity references type value
mapString map of string Map of String type value
mapDate map of number Map of Date type value
mapLong map of number Map of Long type value
mapDouble map of number Map of Double type value
mapBoolean map of boolean Map of Boolean type value
mapEntity map of EntityReferenceWrapper Map of Entity reference type value
source string Source entity/accumulation path that value came from
empty boolean Is period empty - are both From and To values are not specified
strictMatch boolean
fromMatch number
toMatch number
customTableCode string Custom Table Code.
dataFilter string Filters for custom table wrapper.
fields string Fields for custom table wrapper.
mapCfValues map of string
newPeriod boolean
mapValuesForGUI array of map of object
matrixValuesForGUI array of map of object
listValue array of object
mapValue map of object
entityReferenceValueForGUI IReferenceEntity
childEntityValuesForGUI array of CustomFieldValueHolder
priority number
datasetForGUI object
valueEmptyForGui boolean Check if values is empty when used in data entry/display for GUI (use XXXForGUI fields instead of serializedValue field )
valueEmpty boolean Check if values is empty when used in non-GUI data manipulation (do not use XXXForGUI fields)
value object
keyValueMap map of object
excessiveInSize boolean Check if List/Map/Matrix type field is excessive in size
allEntities array of EntityReferenceWrapper

Example

{
  "from" : 12345,
  "to" : 12345,
  "string" : "...",
  "date" : { },
  "long" : 12345,
  "double" : 12345.0,
  "boolean" : true,
  "entity" : {
    "classname" : "...",
    "classnameCode" : "...",
    "code" : "...",
    "id" : 12345,
    "empty" : true,
    "referenceCode" : "...",
    "referenceDescription" : "..."
  },
  "url" : {
    "length" : 12345,
    "url" : "...",
    "regexp" : "...",
    "empty" : true,
    "label" : "..."
  },
  "listString" : [ "...", "..." ],
  "listDate" : [ { }, { } ],
  "listLong" : [ 12345, 12345 ],
  "valid" : true,
  "listDouble" : [ 12345.0, 12345.0 ],
  "listBoolean" : [ true, true ],
  "listEntity" : [ {
    "classname" : "...",
    "classnameCode" : "...",
    "code" : "...",
    "id" : 12345,
    "empty" : true,
    "referenceCode" : "...",
    "referenceDescription" : "..."
  }, {
    "classname" : "...",
    "classnameCode" : "...",
    "code" : "...",
    "id" : 12345,
    "empty" : true,
    "referenceCode" : "...",
    "referenceDescription" : "..."
  } ],
  "mapString" : {
    "property1" : "...",
    "property2" : "..."
  },
  "mapDate" : {
    "property1" : 12345,
    "property2" : 12345
  },
  "mapLong" : {
    "property1" : 12345,
    "property2" : 12345
  },
  "mapDouble" : {
    "property1" : 12345.0,
    "property2" : 12345.0
  },
  "mapBoolean" : {
    "property1" : true,
    "property2" : true
  },
  "mapEntity" : {
    "property1" : {
      "classname" : "...",
      "classnameCode" : "...",
      "code" : "...",
      "id" : 12345,
      "empty" : true,
      "referenceCode" : "...",
      "referenceDescription" : "..."
    },
    "property2" : {
      "classname" : "...",
      "classnameCode" : "...",
      "code" : "...",
      "id" : 12345,
      "empty" : true,
      "referenceCode" : "...",
      "referenceDescription" : "..."
    }
  },
  "source" : "...",
  "empty" : true,
  "strictMatch" : true,
  "fromMatch" : 12345,
  "toMatch" : 12345,
  "customTableCode" : "...",
  "dataFilter" : "...",
  "fields" : "...",
  "mapCfValues" : {
    "property1" : "...",
    "property2" : "..."
  },
  "newPeriod" : true,
  "mapValuesForGUI" : [ {
    "property1" : { },
    "property2" : { }
  }, {
    "property1" : { },
    "property2" : { }
  } ],
  "matrixValuesForGUI" : [ {
    "property1" : { },
    "property2" : { }
  }, {
    "property1" : { },
    "property2" : { }
  } ],
  "listValue" : [ { }, { } ],
  "mapValue" : {
    "property1" : { },
    "property2" : { }
  },
  "entityReferenceValueForGUI" : {
    "referenceCode" : "...",
    "referenceDescription" : "..."
  },
  "childEntityValuesForGUI" : [ {
    "empty" : true,
    "selectedFieldTemplate" : {
      "codeChanged" : true,
      "entityClazz" : "...",
      "triggerEndPeriodEvent" : true,
      "GUIFieldPosition" : 12345,
      "referenceDescription" : "...",
      "maxValue" : 12345,
      "description" : "...",
      "childEntityFields" : "...",
      "auditable" : { },
      "dataFilterEL" : "...",
      "regExp" : "...",
      "active" : true,
      "uniqueConstraint" : true,
      "matrixColumns" : [ { }, { } ],
      "descriptionI18n" : {
        "property1" : "...",
        "property2" : "..."
      },
      "listValues" : {
        "property1" : "...",
        "property2" : "..."
      },
      "disabled" : true,
      "defaultValue" : "...",
      "useInheritedAsDefaultValue" : true,
      "historized" : true,
      "matrixValueColumnCodes" : [ "...", "..." ],
      "appliesTo" : "...",
      "entityClazzCetCode" : "...",
      "guiPosition" : "...",
      "hideOnNew" : true,
      "roundingMode" : "NEAREST",
      "matrixKeyColumns" : [ { }, { } ],
      "minValue" : 12345,
      "fieldType" : "TEXT_AREA",
      "dbFieldname" : "...",
      "allowEdit" : true,
      "valueRequired" : true,
      "calendar" : { },
      "applicableOnEl" : "...",
      "descriptionOrCode" : "...",
      "matrixKeyColumnCodes" : [ "...", "..." ],
      "code" : "...",
      "nbDecimal" : 12345,
      "defaultValueConverted" : { },
      "notified" : true,
      "protectable" : true,
      "versionable" : true,
      "hideInGUI" : true,
      "indexType" : "INDEX_NOT_ANALYZE",
      "anonymizeGdpr" : true,
      "fieldsEL" : "...",
      "referenceCode" : "...",
      "matrixValueColumns" : [ { }, { } ],
      "version" : 12345,
      "listValuesSorted" : {
        "property1" : "...",
        "property2" : "..."
      },
      "parentEntityType" : { },
      "appendGeneratedCode" : true,
      "customTableCodeEL" : "...",
      "matrixColumnCodes" : [ "...", "..." ],
      "guiPositionParsed" : {
        "property1" : "...",
        "property2" : "..."
      },
      "auditableFields" : [ { }, { } ],
      "descriptionI18nNullSafe" : {
        "property1" : "...",
        "property2" : "..."
      },
      "tags" : "...",
      "descriptionAndCode" : "...",
      "transient" : true,
      "parentEntity" : { },
      "id" : 12345,
      "displayFormat" : "...",
      "childEntityFieldsAsList" : [ "...", "..." ],
      "storageType" : "MAP",
      "mapKeyType" : "RON"
    },
    "selectedChildEntity" : { },
    "entity" : {
      "cfValuesNullSafe" : { },
      "uuid" : "...",
      "dirtyCF" : true,
      "cfValuesAsValues" : {
        "property1" : { },
        "property2" : { }
      },
      "cfValues" : { },
      "parentCFEntities" : [ { }, { } ],
      "CFValuesCopy" : { },
      "cfAccumulatedValuesNullSafe" : { },
      "cfAccumulatedValues" : { }
    },
    "valuesByCode" : {
      "property1" : [ {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      }, {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      } ],
      "property2" : [ {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      }, {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      } ]
    },
    "entityUuid" : "...",
    "updated" : true,
    "newValues" : {
      "property1" : { },
      "property2" : { }
    },
    "valuePeriodMatched" : true,
    "selectedValuePeriodId" : "...",
    "shortRepresentationOfValues" : "...",
    "selectedValuePeriodEdit" : true,
    "selectedValuePeriod" : {
      "from" : 12345,
      "to" : 12345,
      "string" : "...",
      "date" : { },
      "long" : 12345,
      "double" : 12345.0,
      "boolean" : true,
      "entity" : { },
      "url" : { },
      "listString" : [ "...", "..." ],
      "listDate" : [ { }, { } ],
      "listLong" : [ 12345, 12345 ],
      "valid" : true,
      "listDouble" : [ 12345.0, 12345.0 ],
      "listBoolean" : [ true, true ],
      "listEntity" : [ { }, { } ],
      "mapString" : {
        "property1" : "...",
        "property2" : "..."
      },
      "mapDate" : {
        "property1" : 12345,
        "property2" : 12345
      },
      "mapLong" : {
        "property1" : 12345,
        "property2" : 12345
      },
      "mapDouble" : {
        "property1" : 12345.0,
        "property2" : 12345.0
      },
      "mapBoolean" : {
        "property1" : true,
        "property2" : true
      },
      "mapEntity" : {
        "property1" : { },
        "property2" : { }
      },
      "source" : "...",
      "empty" : true,
      "strictMatch" : true,
      "fromMatch" : 12345,
      "toMatch" : 12345,
      "customTableCode" : "...",
      "dataFilter" : "...",
      "fields" : "...",
      "mapCfValues" : {
        "property1" : "...",
        "property2" : "..."
      },
      "newPeriod" : true,
      "mapValuesForGUI" : [ {
        "property1" : { },
        "property2" : { }
      }, {
        "property1" : { },
        "property2" : { }
      } ],
      "matrixValuesForGUI" : [ {
        "property1" : { },
        "property2" : { }
      }, {
        "property1" : { },
        "property2" : { }
      } ],
      "listValue" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValueForGUI" : { },
      "childEntityValuesForGUI" : [ { }, { } ],
      "priority" : 12345,
      "datasetForGUI" : { },
      "valueEmptyForGui" : true,
      "valueEmpty" : true,
      "value" : { },
      "keyValueMap" : {
        "property1" : { },
        "property2" : { }
      },
      "excessiveInSize" : true,
      "allEntities" : [ { }, { } ]
    }
  }, {
    "empty" : true,
    "selectedFieldTemplate" : {
      "codeChanged" : true,
      "entityClazz" : "...",
      "triggerEndPeriodEvent" : true,
      "GUIFieldPosition" : 12345,
      "referenceDescription" : "...",
      "maxValue" : 12345,
      "description" : "...",
      "childEntityFields" : "...",
      "auditable" : { },
      "dataFilterEL" : "...",
      "regExp" : "...",
      "active" : true,
      "uniqueConstraint" : true,
      "matrixColumns" : [ { }, { } ],
      "descriptionI18n" : {
        "property1" : "...",
        "property2" : "..."
      },
      "listValues" : {
        "property1" : "...",
        "property2" : "..."
      },
      "disabled" : true,
      "defaultValue" : "...",
      "useInheritedAsDefaultValue" : true,
      "historized" : true,
      "matrixValueColumnCodes" : [ "...", "..." ],
      "appliesTo" : "...",
      "entityClazzCetCode" : "...",
      "guiPosition" : "...",
      "hideOnNew" : true,
      "roundingMode" : "HALF_EVEN",
      "matrixKeyColumns" : [ { }, { } ],
      "minValue" : 12345,
      "fieldType" : "STRING",
      "dbFieldname" : "...",
      "allowEdit" : true,
      "valueRequired" : true,
      "calendar" : { },
      "applicableOnEl" : "...",
      "descriptionOrCode" : "...",
      "matrixKeyColumnCodes" : [ "...", "..." ],
      "code" : "...",
      "nbDecimal" : 12345,
      "defaultValueConverted" : { },
      "notified" : true,
      "protectable" : true,
      "versionable" : true,
      "hideInGUI" : true,
      "indexType" : "STORE_ONLY",
      "anonymizeGdpr" : true,
      "fieldsEL" : "...",
      "referenceCode" : "...",
      "matrixValueColumns" : [ { }, { } ],
      "version" : 12345,
      "listValuesSorted" : {
        "property1" : "...",
        "property2" : "..."
      },
      "parentEntityType" : { },
      "appendGeneratedCode" : true,
      "customTableCodeEL" : "...",
      "matrixColumnCodes" : [ "...", "..." ],
      "guiPositionParsed" : {
        "property1" : "...",
        "property2" : "..."
      },
      "auditableFields" : [ { }, { } ],
      "descriptionI18nNullSafe" : {
        "property1" : "...",
        "property2" : "..."
      },
      "tags" : "...",
      "descriptionAndCode" : "...",
      "transient" : true,
      "parentEntity" : { },
      "id" : 12345,
      "displayFormat" : "...",
      "childEntityFieldsAsList" : [ "...", "..." ],
      "storageType" : "MATRIX",
      "mapKeyType" : "LONG"
    },
    "selectedChildEntity" : { },
    "entity" : {
      "cfValuesNullSafe" : { },
      "uuid" : "...",
      "dirtyCF" : true,
      "cfValuesAsValues" : {
        "property1" : { },
        "property2" : { }
      },
      "cfValues" : { },
      "parentCFEntities" : [ { }, { } ],
      "CFValuesCopy" : { },
      "cfAccumulatedValuesNullSafe" : { },
      "cfAccumulatedValues" : { }
    },
    "valuesByCode" : {
      "property1" : [ {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      }, {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      } ],
      "property2" : [ {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      }, {
        "from" : 12345,
        "to" : 12345,
        "string" : "...",
        "date" : { },
        "long" : 12345,
        "double" : 12345.0,
        "boolean" : true,
        "entity" : { },
        "url" : { },
        "listString" : [ "...", "..." ],
        "listDate" : [ { }, { } ],
        "listLong" : [ 12345, 12345 ],
        "valid" : true,
        "listDouble" : [ 12345.0, 12345.0 ],
        "listBoolean" : [ true, true ],
        "listEntity" : [ { }, { } ],
        "mapString" : {
          "property1" : "...",
          "property2" : "..."
        },
        "mapDate" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapLong" : {
          "property1" : 12345,
          "property2" : 12345
        },
        "mapDouble" : {
          "property1" : 12345.0,
          "property2" : 12345.0
        },
        "mapBoolean" : {
          "property1" : true,
          "property2" : true
        },
        "mapEntity" : {
          "property1" : { },
          "property2" : { }
        },
        "source" : "...",
        "empty" : true,
        "strictMatch" : true,
        "fromMatch" : 12345,
        "toMatch" : 12345,
        "customTableCode" : "...",
        "dataFilter" : "...",
        "fields" : "...",
        "mapCfValues" : {
          "property1" : "...",
          "property2" : "..."
        },
        "newPeriod" : true,
        "mapValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "matrixValuesForGUI" : [ {
          "property1" : { },
          "property2" : { }
        }, {
          "property1" : { },
          "property2" : { }
        } ],
        "listValue" : [ { }, { } ],
        "mapValue" : {
          "property1" : { },
          "property2" : { }
        },
        "entityReferenceValueForGUI" : { },
        "childEntityValuesForGUI" : [ { }, { } ],
        "priority" : 12345,
        "datasetForGUI" : { },
        "valueEmptyForGui" : true,
        "valueEmpty" : true,
        "value" : { },
        "keyValueMap" : {
          "property1" : { },
          "property2" : { }
        },
        "excessiveInSize" : true,
        "allEntities" : [ { }, { } ]
      } ]
    },
    "entityUuid" : "...",
    "updated" : true,
    "newValues" : {
      "property1" : { },
      "property2" : { }
    },
    "valuePeriodMatched" : true,
    "selectedValuePeriodId" : "...",
    "shortRepresentationOfValues" : "...",
    "selectedValuePeriodEdit" : true,
    "selectedValuePeriod" : {
      "from" : 12345,
      "to" : 12345,
      "string" : "...",
      "date" : { },
      "long" : 12345,
      "double" : 12345.0,
      "boolean" : true,
      "entity" : { },
      "url" : { },
      "listString" : [ "...", "..." ],
      "listDate" : [ { }, { } ],
      "listLong" : [ 12345, 12345 ],
      "valid" : true,
      "listDouble" : [ 12345.0, 12345.0 ],
      "listBoolean" : [ true, true ],
      "listEntity" : [ { }, { } ],
      "mapString" : {
        "property1" : "...",
        "property2" : "..."
      },
      "mapDate" : {
        "property1" : 12345,
        "property2" : 12345
      },
      "mapLong" : {
        "property1" : 12345,
        "property2" : 12345
      },
      "mapDouble" : {
        "property1" : 12345.0,
        "property2" : 12345.0
      },
      "mapBoolean" : {
        "property1" : true,
        "property2" : true
      },
      "mapEntity" : {
        "property1" : { },
        "property2" : { }
      },
      "source" : "...",
      "empty" : true,
      "strictMatch" : true,
      "fromMatch" : 12345,
      "toMatch" : 12345,
      "customTableCode" : "...",
      "dataFilter" : "...",
      "fields" : "...",
      "mapCfValues" : {
        "property1" : "...",
        "property2" : "..."
      },
      "newPeriod" : true,
      "mapValuesForGUI" : [ {
        "property1" : { },
        "property2" : { }
      }, {
        "property1" : { },
        "property2" : { }
      } ],
      "matrixValuesForGUI" : [ {
        "property1" : { },
        "property2" : { }
      }, {
        "property1" : { },
        "property2" : { }
      } ],
      "listValue" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValueForGUI" : { },
      "childEntityValuesForGUI" : [ { }, { } ],
      "priority" : 12345,
      "datasetForGUI" : { },
      "valueEmptyForGui" : true,
      "valueEmpty" : true,
      "value" : { },
      "keyValueMap" : {
        "property1" : { },
        "property2" : { }
      },
      "excessiveInSize" : true,
      "allEntities" : [ { }, { } ]
    }
  } ],
  "priority" : 12345,
  "datasetForGUI" : { },
  "valueEmptyForGui" : true,
  "valueEmpty" : true,
  "value" : { },
  "keyValueMap" : {
    "property1" : { },
    "property2" : { }
  },
  "excessiveInSize" : true,
  "allEntities" : [ {
    "classname" : "...",
    "classnameCode" : "...",
    "code" : "...",
    "id" : 12345,
    "empty" : true,
    "referenceCode" : "...",
    "referenceDescription" : "..."
  }, {
    "classname" : "...",
    "classnameCode" : "...",
    "code" : "...",
    "id" : 12345,
    "empty" : true,
    "referenceCode" : "...",
    "referenceDescription" : "..."
  } ]
}