PostHog · Schema

ResetPasswordResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
username string
password string
View JSON Schema on GitHub

JSON Schema

posthog-resetpasswordresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResetPasswordResponse",
  "title": "ResetPasswordResponse",
  "type": "object",
  "properties": {
    "username": {
      "type": "string"
    },
    "password": {
      "type": "string"
    }
  },
  "required": [
    "password",
    "username"
  ]
}