> For the complete documentation index, see [llms.txt](https://docs.tagshelf.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tagshelf.dev/event-api/fileevents/file-extracted-data-delete.md).

# File Extracted Data Delete

### Usage

This file event triggers when the extracted information of a file has been deleted. More specifically, this event triggers when the **content** has been deleted. &#x20;

Once the extracted data is deleted, this file will skip the sorting, indexing, and data point extraction stages of the pipeline.

### JSON Payload

```json
{
  "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, including hundredths of a second.",
  "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_log_id": "(UUID format) - Unique identifier for the log entry related to the file event.",
    "content": "Text - Previously extracted textual content or data from the file that is now being deleted.",
    "provider": "Name of the service provider that performed the data extraction and is now managing its deletion.",
    "creation_date": "(ISO 8601 date format) - Date and time when the extracted data was initially created.",
    "update_date": "(ISO 8601 date format) - Date and time when the extracted data or event log was last updated."
  }
}
```

```bash
{
  "event_id": "qrst5678-uv90-1234-wx56-yzab78901234",
  "event_type": "file_event_type",
  "event_time": "1651426789.20",
  "event": {
    "event_name": "file_extracted_data_delete_event",
    "event_type": "file_event_type",
    "company_id": "789o0123-p45q-89r1-s234-567814184000",
    "company_name": "DataSolutions Inc",
    "file_log_id": "567p1234-q56r-90s2-t345-678914185000",
    "content": "Previously extracted text content that is now being deleted...",
    "provider": "DataExtractionService",
    "creation_date": "2023-05-05T13:25:00Z",
    "update_date": "2023-05-06T14:30:00Z"
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.tagshelf.dev/event-api/fileevents/file-extracted-data-delete.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
