FastDOL · Schema

ResetPasswordRequest

ResetPasswordRequest schema from FastDOL API

OSHAComplianceWorkplace SafetyPublic RecordsFederal EnforcementLabor

Properties

Name Type Description
token string
new_password string
View JSON Schema on GitHub

JSON Schema

fastdol-reset-password-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/fastdol/refs/heads/main/json-schema/fastdol-reset-password-request-schema.json",
  "title": "ResetPasswordRequest",
  "description": "ResetPasswordRequest schema from FastDOL API",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "title": "Token",
      "example": "tok_9d2e1c4b7a6f3e5d"
    },
    "new_password": {
      "type": "string",
      "title": "New Password",
      "example": "CorrectHorseBatteryStaple1!"
    }
  },
  "required": [
    "token",
    "new_password"
  ]
}