FastDOL · Schema

FeedbackRequest

FeedbackRequest schema from FastDOL API

OSHAComplianceWorkplace SafetyPublic RecordsFederal EnforcementLabor

Properties

Name Type Description
type string
description object
contact_email object
View JSON Schema on GitHub

JSON Schema

fastdol-feedback-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-feedback-request-schema.json",
  "title": "FeedbackRequest",
  "description": "FeedbackRequest schema from FastDOL API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "title": "Type",
      "example": "string"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "contact_email": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Contact Email"
    }
  },
  "required": [
    "type"
  ]
}