{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zeoel Team Document",
  "type": "object",
  "properties": {
    "document_id": {
      "type": "string"
    },
    "project_id": {
      "type": "string"
    },
    "document_type": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "prepared_by": {
      "type": "string"
    },
    "approved_by": {
      "type": "string"
    },
    "approval_status": {
      "type": "string"
    }
  },
  "required": [
    "document_id",
    "project_id",
    "document_type",
    "version",
    "status"
  ],
  "additionalProperties": true
}
