# xyz.pardisio.time.entry

> Published by [chris.pardy.family](https://lexicon.garden/identity/did:plc:dp7v5b5kejmmzzpwmqyf5wj6)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/xyz.pardisio.time.entry)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/xyz.pardisio.time.entry/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dp7v5b5kejmmzzpwmqyf5wj6/xyz.pardisio.time.entry/examples)

## Definitions

### `xyz.pardisio.time.entry`

**Type**: `record`

A single tracked span of time. A running timer is simply an entry with no endTime yet.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Short label for what is being tracked. |
| `tags` | `array` | No | Arbitrary tag strings applied to this entry. |
| `endTime` | `string` (datetime) | No | When tracking stopped. Absent while the timer is still running. |
| `createdAt` | `string` (datetime) | Yes | When this record was created. |
| `startTime` | `string` (datetime) | Yes | When tracking started. |

## Raw Schema

```json
{
  "id": "xyz.pardisio.time.entry",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "startTime",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 2000,
            "description": "Short label for what is being tracked.",
            "maxGraphemes": 200
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 640,
              "maxGraphemes": 64
            },
            "maxLength": 64,
            "description": "Arbitrary tag strings applied to this entry."
          },
          "endTime": {
            "type": "string",
            "format": "datetime",
            "description": "When tracking stopped. Absent while the timer is still running."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was created."
          },
          "startTime": {
            "type": "string",
            "format": "datetime",
            "description": "When tracking started."
          }
        }
      },
      "description": "A single tracked span of time. A running timer is simply an entry with no endTime yet."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
