Skip to content
Snippets Groups Projects
Commit 7d3491b7 authored by Truong Le Quang's avatar Truong Le Quang
Browse files

Merge remote-tracking branch 'origin/develop' into trusted-feature/validation-metadata

parents 772a3987 6b9fc004
No related branches found
No related tags found
2 merge requests!130integer data type,!124Validation CSV metadata
......@@ -58,12 +58,15 @@ A value type defines the data type of individual values in a time-series. Many t
Currently following value types are available:
| Value Type | Description | Supported by API | Supported by CSV parser workflow |
|------------|---------------------------------------------------------------------------|:----------------:|:--------------------------------:|
| DOUBLE | The floating-point numeric types represent real numbers. | M24 | M24 |
| LONG | The integral numeric types represent integer numbers. | M24 | M25 |
| BOOLEAN | Boolean value, which can be either true or false. | M25 | M25 |
| STRING | The string type represents a sequence of zero or more Unicode characters. | M25 | M25 |
| Value Type | Description | Supported by API | Supported by CSV parser workflow |
|------------|-----------------------------------------------------------------------------------------------------------|:----------------:|:--------------------------------:|
| DOUBLE | The floating-point numeric type represent real numbers. | M24 | M24 |
| INTEGER | The integral numeric type represents 32-bit signed integer numbers. | M25 | M25 |
| LONG | The integral numeric type represents 64-bit signed integer numbers. | M24 | M25 |
| BOOLEAN | Boolean value, which can be either true or false. | M25 | M25 |
| STRING | The string type represents a sequence of zero or more Unicode characters. | M25 | M25 |
| SET-STRING | The strings collection type represents an array of String values. Example: ["a","b", "c"] | M25 | M25 |
| DATETIME | Date and Time type. ISO-8601 given in UTC "yyyy-MM-dd'T'HH:mm:ss.SSSZ". Example: 2020-12-16T11:46:20.163Z | M25 | M25 |
## Extended Value Types
......
......@@ -137,12 +137,15 @@ Each datapoint has `point` and `value` attributes. Where point is a point in tim
}
```
| Value Type | Description | Supported by API | Supported by CSV parser workflow |
|------------|----------------------------------------------------------------------------|:----------------:|:--------------------------------:|
| DOUBLE | The floating-point numeric type represent real numbers. | M24 | M24 |
| LONG | The integral numeric type represent integer numbers. | M24 | M25 |
| BOOLEAN | Boolean value, which can be either true or false. | M25 | M25 |
| STRING | The string type represents a sequence of zero or more Unicode characters. | M25 | M25 |
| Value Type | Description | Supported by API | Supported by CSV parser workflow |
|------------|-----------------------------------------------------------------------------------------------------------|:----------------:|:--------------------------------:|
| DOUBLE | The floating-point numeric type represent real numbers. | M24 | M24 |
| INTEGER | The integral numeric type represents 32-bit signed integer numbers. | M25 | M25 |
| LONG | The integral numeric type represents 64-bit signed integer numbers. | M24 | M25 |
| BOOLEAN | Boolean value, which can be either true or false. | M25 | M25 |
| STRING | The string type represents a sequence of zero or more Unicode characters. | M25 | M25 |
| SET-STRING | The strings collection type represents an array of String values. Example: ["a","b", "c"] | M25 | M25 |
| DATETIME | Date and Time type. ISO-8601 given in UTC "yyyy-MM-dd'T'HH:mm:ss.SSSZ". Example: 2020-12-16T11:46:20.163Z | M25 | M25 |
!!! note "Value type validation"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment