Sentry · Schema

ClientKey

APMApplication MonitoringBug TrackingDeveloper ToolsError TrackingObservabilityPerformance MonitoringReal-Time Monitoring

Properties

Name Type Description
id string
name string
label string
public string The public key portion of the DSN.
secret string The secret key portion of the DSN.
projectId integer
isActive boolean
dateCreated string
dsn object
View JSON Schema on GitHub

JSON Schema

sentry-system-clientkey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientKey",
  "title": "ClientKey",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "public": {
      "type": "string",
      "description": "The public key portion of the DSN."
    },
    "secret": {
      "type": "string",
      "description": "The secret key portion of the DSN."
    },
    "projectId": {
      "type": "integer"
    },
    "isActive": {
      "type": "boolean"
    },
    "dateCreated": {
      "type": "string",
      "format": "date-time"
    },
    "dsn": {
      "type": "object",
      "properties": {
        "secret": {
          "type": "string"
        },
        "public": {
          "type": "string"
        },
        "csp": {
          "type": "string"
        },
        "security": {
          "type": "string"
        },
        "minidump": {
          "type": "string"
        },
        "unreal": {
          "type": "string"
        },
        "cdn": {
          "type": "string"
        }
      }
    }
  },
  "required": [
    "id",
    "name",
    "public"
  ]
}