# com.thelexfiles.tuna97.temp.event

> Published by [protopunx.bsky.social](https://lexicon.garden/identity/did:plc:deh4u7fsoeqtrbtkf5eptizr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.tuna97.temp.event)
- [Documentation](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.tuna97.temp.event/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.tuna97.temp.event/examples)

## Definitions

### `com.thelexfiles.tuna97.temp.event`

**Type**: `record`

Event data type

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | No | e.g google meet link, zoom link, etc |
| `title` | `string` | Yes | event title |
| `endTime` | `string` (datetime) | No | specify the end date and time for the event |
| `createdAt` | `string` (datetime) | Yes |  |
| `startTime` | `string` (datetime) | Yes | set a start date and time for the event |
| `description` | `string` | No | briefly describe what the event is about |

## Raw Schema

```json
{
  "id": "com.thelexfiles.tuna97.temp.event",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "startTime",
          "createdAt"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "e.g google meet link, zoom link, etc"
          },
          "title": {
            "type": "string",
            "description": "event title"
          },
          "endTime": {
            "type": "string",
            "format": "datetime",
            "description": "specify the end date and time for the event"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "startTime": {
            "type": "string",
            "format": "datetime",
            "description": "set a start date and time for the event"
          },
          "description": {
            "type": "string",
            "description": "briefly describe what the event is about"
          }
        }
      },
      "description": "Event data type"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
