PostHog · Schema

SharePassword

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer
created_at string
note string
created_by_email string
is_active boolean
View JSON Schema on GitHub

JSON Schema

posthog-sharepassword-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharePassword",
  "title": "SharePassword",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "note": {
      "type": "string",
      "nullable": true,
      "maxLength": 100
    },
    "created_by_email": {
      "type": "string",
      "readOnly": true
    },
    "is_active": {
      "type": "boolean",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "created_by_email",
    "id",
    "is_active"
  ]
}