# es.joeinn.timetracker.entry

> Published by [joe-test.spaces-alpha.bsky.network](https://lexicon.garden/identity/did:plc:o5amjq3nj2xts23zi6nmv52b)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:o5amjq3nj2xts23zi6nmv52b/es.joeinn.timetracker.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:o5amjq3nj2xts23zi6nmv52b/es.joeinn.timetracker.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:o5amjq3nj2xts23zi6nmv52b/es.joeinn.timetracker.entry/examples)

## Definitions

### `es.joeinn.timetracker.entry`

**Type**: `record`

A timed interval associated with an activity.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `endedAt` | `string` (datetime) | No |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `startedAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | Yes |  |
| `activityId` | `string` | Yes |  |

## Raw Schema

```json
{
  "id": "es.joeinn.timetracker.entry",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "activityId",
          "startedAt",
          "createdAt",
          "updatedAt"
        ],
        "properties": {
          "endedAt": {
            "type": "string",
            "format": "datetime"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "startedAt": {
            "type": "string",
            "format": "datetime"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime"
          },
          "activityId": {
            "type": "string",
            "maxLength": 512,
            "minLength": 1
          }
        }
      },
      "description": "A timed interval associated with an activity."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
