Regno Standard - ParamScalarValueDoc 


Data - ParamScalarValueDoc

The ParamScalarValueDoc document is a data document that contains the properties and a set of values for a single configuration parameter.

Field Data Type Required Default Description
id String Yes - Regno unique document identifier.
type Fixed String No ParamScalarValueDoc Type of the document, resolved from fixed document types.
configDocId String Yes - The unique identifier (id) of the ConfigDoc document that this document is associated with.
paramDefDocId String Yes - The unique identifier (id) of the ParamDefinitionDoc that holds the properties for the parameter associated with the data values stored in this document.
time Int64 No - A 64-bit Long timestamp value.
value Double Yes - A single 64-bit double value.
constant Boolean No - Boolean value indicating if the current data is constant within the current configuration.

Sample JSON

Below is a sample JSON representation of the ParamScalarValueDoc structure:

ParamScalarValueDoc Sample JSON
{
  "configDocId": "-",
  "constant": true,
  "id": "-",
  "paramDefDocId": "-",
  "time": {
    "$type": "Int64"
  },
  "type": {
    "$type": "Fixed String"
  },
  "value": 0
}