# Convert Event Details to JSON

**Use case:** 

Extract event name, date, time and venue from a text invite into JSON so calendars and booking tools stay accurate.

## Input

```json
{
  "texts": [
    "Annual Tech Summit on March 14 2026 at 9am, Moscone Center San Francisco"
  ],
  "schema": {
    "event": "",
    "date": "",
    "time": "",
    "venue": ""
  }
}
```

## Output

```json
{
  "_sourceIndex": {
    "label": "Source index",
    "format": "number"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "truncated": {
    "label": "Truncated",
    "format": "boolean"
  },
  "observedAt": {
    "label": "Converted at",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Tool: Any Text to Structured JSON](https://apify.com/scrapers_lat/text-to-json-tool) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/text-to-json-tool) to learn more, explore other use cases, and run it yourself.