# org.devcon.event.test

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

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:hbzsfn4hxb4bigmwwhmwl5hl/org.devcon.event.test)
- [Documentation](https://lexicon.garden/lexicon/did:plc:hbzsfn4hxb4bigmwwhmwl5hl/org.devcon.event.test/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:hbzsfn4hxb4bigmwwhmwl5hl/org.devcon.event.test/examples)

## Definitions

### `org.devcon.event.test`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `end` | `string` (datetime) | Yes | End time of the event |
| `url` | `string` | No | URL of the event |
| `start` | `string` (datetime) | Yes | Start time of the event |
| `title` | `string` | Yes | Title of the event |
| `location` | `string` | No | Location of the event |
| `createdAt` | `string` (datetime) | No |  |
| `description` | `string` | No | Description of the event |

## Raw Schema

```json
{
  "id": "org.devcon.event.test",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "start",
          "end"
        ],
        "properties": {
          "end": {
            "type": "string",
            "format": "datetime",
            "description": "End time of the event"
          },
          "url": {
            "type": "string",
            "description": "URL of the event"
          },
          "start": {
            "type": "string",
            "format": "datetime",
            "description": "Start time of the event"
          },
          "title": {
            "type": "string",
            "description": "Title of the event"
          },
          "location": {
            "type": "string",
            "description": "Location of the event"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "description": "Description of the event"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
