PostHog · Schema

PatchedFileSystemShortcut

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
path string
type string
ref string
href string
order integer
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedfilesystemshortcut-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedFileSystemShortcut",
  "title": "PatchedFileSystemShortcut",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "path": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "maxLength": 100
    },
    "ref": {
      "type": "string",
      "nullable": true,
      "maxLength": 100
    },
    "href": {
      "type": "string",
      "nullable": true
    },
    "order": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": -2147483648
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}