PostHog · Schema

ProjectSecretAPIKey

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
label string
value string
mask_value string
created_at string
created_by integer
last_used_at string
last_rolled_at string
scopes array
View JSON Schema on GitHub

JSON Schema

posthog-projectsecretapikey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectSecretAPIKey",
  "title": "ProjectSecretAPIKey",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "label": {
      "type": "string",
      "maxLength": 40
    },
    "value": {
      "type": "string",
      "readOnly": true
    },
    "mask_value": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "type": "integer",
      "readOnly": true,
      "nullable": true
    },
    "last_used_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "last_rolled_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "scopes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "created_at",
    "created_by",
    "id",
    "label",
    "last_rolled_at",
    "last_used_at",
    "mask_value",
    "scopes",
    "value"
  ]
}