# app.fitsky.blueskyPost

> Published by [thatsit.dev](https://lexicon.garden/identity/did:plc:tr7zlhacx3fete5s7cx5tyjd)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.blueskyPost)
- [Documentation](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.blueskyPost/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:tr7zlhacx3fete5s7cx5tyjd/app.fitsky.blueskyPost/examples)

## Definitions

### `app.fitsky.blueskyPost`

**Type**: `record`

Links a Fitsky workout record to its cross-posted Bluesky post

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `postUri` | `string` (at-uri) | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `workoutUri` | `string` (at-uri) | Yes |  |

## Raw Schema

```json
{
  "id": "app.fitsky.blueskyPost",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "workoutUri",
          "postUri",
          "createdAt"
        ],
        "properties": {
          "postUri": {
            "type": "string",
            "format": "at-uri"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "workoutUri": {
            "type": "string",
            "format": "at-uri"
          }
        }
      },
      "description": "Links a Fitsky workout record to its cross-posted Bluesky post"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
