{ "$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" ] }