File Status Update

Usage

This event triggers when the status of a file has been updated.

JSON Payload

{
  "event_id": "(UUID format) - Unique identifier for the event.",
  "event_type": "Describes the type of event that occurred.",
  "event_time": "(floating-point numeric timestamp) - Unix timestamp representing the time when the event occurred, rounded to whole seconds.",
  "event": {
    "event_name": "Name of the specific event.",
    "event_type": "Type of the event, often matching or related to the outer event_type.",
    "company_id": "(UUID format) - Unique identifier for the company involved in the event.",
    "company_name": "Name of the company involved in the event.",
    "file_id": "(UUID format) - Unique identifier for the file associated with the event.",
    "blob_name": "Path identifier of the document within the storage system.",
    "blob_url": "URL - Fully qualified URL where the document is stored, accessible via HTTP or HTTPS.",
    "tag_id": "(UUID format) - Unique identifier for the tag associated with the file.",
    "tag_name": "Name of the tag assigned to the file.",
    "manual_classification": "Boolean - Indicates whether the classification was performed manually.",
    "classification_score": "(floating-point numeric value) - Score representing the confidence or relevance of the classification, typically between 0.0 and 1.0.",
    "classification_status": "Status of the classification process, such as 'complete', 'pending', or 'in progress'.",
    "file_status": "Status of the file, typically a textual description like 'active', 'archived', etc.",
    "creation_date": "(ISO 8601 date format) - Date and time when the file was initially created.",
    "update_date": "(ISO 8601 date format) - Date and time when the file or event was last updated."
  }
}
{
  "event_id": "abcd4567-efgh-8910-ijkl-1234mnop5678",
  "event_type": "file_event_type",
  "event_time": "1652235600.00",
  "event": {
    "event_name": "file_status_update_event",
    "event_type": "file_event_type",
    "company_id": "78901234-7890-7890-7890-7890123456ij",
    "company_name": "Global Innovations",
    "file_id": "65432109-8765-8765-8765-543210987654",
    "blob_name": "annual_report_2023.pdf",
    "blob_url": "https://storage.globalinnov.com/annual_report_2023.pdf",
    "tag_id": "98765432-1234-1234-1234-123456789012",
    "tag_name": "Reviewed",
    "manual_classification": true,
    "classification_score": "0.94",
    "classification_status": "complete",
    "file_status": "active",
    "creation_date": "2023-05-19T17:10:00Z",
    "update_date": "2023-05-19T18:25:00Z"
  }
}

Last updated

Was this helpful?