segment · Schema
DestinationConfig
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The fully qualified name of the config setting. |
| display_name | string | The display name of the setting. |
| value | object | The value of the setting. Can be any JSON type. |
| type | string | The data type of the setting. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DestinationConfig",
"title": "DestinationConfig",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The fully qualified name of the config setting."
},
"display_name": {
"type": "string",
"description": "The display name of the setting."
},
"value": {
"description": "The value of the setting. Can be any JSON type."
},
"type": {
"type": "string",
"description": "The data type of the setting.",
"enum": [
"boolean",
"string",
"number",
"list",
"map",
"mixed"
]
}
}
}