Developer guide for creating, importing, exporting, and modifying metadata fields via the Python SDK.
Type | Descriptions | Enum value |
---|---|---|
DateTime | An ISO 8601 datetime field. All times must be in UTC timezone | DataRowMetadataKind.datetime |
Number | Floating-point value (max: 64-bit float) | DataRowMetadataKind.number |
String | Free text field. Max 4,096 characters. | DataRowMetadataKind.string |
Enum | Enum field with options. Multiple options can be imported. | DataRowMetadataKind.enum |
Option (Enum) | Option of an enum. Max 64 options can be created per Enum type. 128 for enterprise customers and can be further increased upon request. | DataRowMetadataKind.enumoption |
Embedding | 128 float 32 vector used for similarity | DataRowMetadataKind.embedding |
Name | Type | Description |
---|---|---|
tag | String | The tags of the data row |
split | Enum | The split of the dataset that the data row belongs, includingtrain , valid , and test |
captureDateTime | DateTime | The timestamp when the data is captured |
skipNFrames | Number | (Video data only) The number of frames to skip |
value
attribute should not be null
.