Data - TagDoc
The TagDoc document is a data document that contains the key value pair that makes up a tag.
Field | Data Type | Required | Default | Description |
---|---|---|---|---|
id | String | Yes | - | Regno unique document identifier. |
type | Fixed String | No | TagDoc | Type of the document, resolved from fixed document types. |
key | String | Yes | - | The key. |
value | String | No | - | The value. |
Sample JSON
Below is a sample JSON representation of the TagDoc structure:
▼ TagDoc Sample JSON
{
"id": "-",
"key": "-",
"type": {
"$type": "Fixed String"
},
"value": "-"
}