Adobe Launch · Schema
SecretAttributes
Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the secret. |
| type_of | string | The type of secret credential. |
| status | string | The exchange status of the secret. |
| credentials | object | The credential payload. Structure varies by type_of: token (token string), simple-http (username/password), oauth2 (client_id/client_secret/token_url), oauth2-google (scopes/authorization). |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SecretAttributes",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the secret."
},
"type_of": {
"type": "string",
"description": "The type of secret credential."
},
"status": {
"type": "string",
"description": "The exchange status of the secret."
},
"credentials": {
"type": "object",
"description": "The credential payload. Structure varies by type_of: token (token string), simple-http (username/password), oauth2 (client_id/client_secret/token_url), oauth2-google (scopes/authorization)."
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}