Flipdish · JSON Structure

Customers Password Reset Model Structure

Password reset model

Type: object Properties: 5 Required: 2
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

PasswordResetModel is a JSON Structure definition published by Flipdish, describing 5 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

TokenId Email Password PasswordConfirmation Token

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/customers-password-reset-model-structure.json",
  "name": "PasswordResetModel",
  "description": "Password reset model",
  "type": "object",
  "properties": {
    "TokenId": {
      "description": "Token Id",
      "type": "string",
      "example": "500123"
    },
    "Email": {
      "description": "Email address",
      "type": "string",
      "example": "owner@example.com"
    },
    "Password": {
      "description": "Password",
      "type": "string",
      "example": "string"
    },
    "PasswordConfirmation": {
      "description": "Password confirmation",
      "type": "string",
      "example": "string"
    },
    "Token": {
      "description": "Password reset token",
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "Password",
    "PasswordConfirmation"
  ]
}