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.
status string The exchange status of the secret.
credentials object The credential payload, varies by secret type.
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

reactor-secret-attributes-schema.json Raw ↑
{
  "$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."
    },
    "status": {
      "type": "string",
      "description": "The exchange status of the secret."
    },
    "credentials": {
      "type": "object",
      "description": "The credential payload, varies by secret type."
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    }
  }
}