mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 04:19:42 +00:00
1009 B
1009 B
id, title, pagination_label, sidebar_label, keywords, description, slug, tags
| id | title | pagination_label | sidebar_label | keywords | description | slug | tags | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| connector-spec-key-value | Key Value | Key Value | Key Value |
|
Details on using the key value item | /connectivity/saas-connectivity/connector-spec/key-value |
|
How to use the key value type in the connector spec
You can use the keyValue type to allow users to enter multiple key value items in a single entry box.
This is an example implementation:
Example key value item type
{
"key": "header",
"label": "Header Values",
"type": "keyValue",
"keyValueKey": {
"key": "key",
"label": "Key",
"type": "text",
"required": true,
"maxlength": "4096"
},
"keyValueValue": {
"key": "value",
"label": "Value",
"type": "text",
"required": true,
"maxlength": "4096"
}
}
