FastDOL · Schema

DeleteAccountRequest

DeleteAccountRequest schema from FastDOL API

OSHAComplianceWorkplace SafetyPublic RecordsFederal EnforcementLabor

Properties

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

JSON Schema

fastdol-delete-account-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-delete-account-request-schema.json",
  "title": "DeleteAccountRequest",
  "description": "DeleteAccountRequest schema from FastDOL API",
  "type": "object",
  "properties": {
    "password": {
      "type": "string",
      "title": "Password",
      "example": "CorrectHorseBatteryStaple1!"
    },
    "confirm": {
      "type": "string",
      "title": "Confirm",
      "example": "string"
    }
  },
  "required": [
    "password",
    "confirm"
  ]
}