app.fitsky.workoutPlan

thatsit.dev

{
  "id": "app.fitsky.workoutPlan",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "type",
          "exercises",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256
          },
          "type": {
            "type": "string",
            "maxLength": 64,
            "knownValues": [
              "weightlifting",
              "bodyweight",
              "yoga",
              "hiit"
            ]
          },
          "ogImage": {
            "type": "blob",
            "accept": [
              "image/png",
              "image/jpeg",
              "image/webp"
            ],
            "maxSize": 1000000,
            "description": "Open Graph preview image for social sharing"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "exercises": {
            "type": "array",
            "items": {
              "ref": "#planExercise",
              "type": "ref"
            }
          }
        }
      },
      "description": "A reusable workout plan template"
    },
    "planExercise": {
      "type": "object",
      "required": [
        "name",
        "targetSets",
        "targetReps"
      ],
      "properties": {
        "name": {
          "type": "string",
          "maxLength": 128
        },
        "notes": {
          "type": "string",
          "maxLength": 512
        },
        "targetReps": {
          "type": "integer",
          "minimum": 1
        },
        "targetSets": {
          "type": "integer",
          "minimum": 1
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}

Validate Record

Validate a record against app.fitsky.workoutPlan

Validation Options
Treat any remaining unresolved references as valid

Metadata

DID
did:plc:tr7zlhacx3fete5s7cx5tyjd
CID
bafyreiaymqkygc2qviia3dz7yhx7nkgzxzixw7s7bdgtlgfwgj75wdx5la
Indexed At
2026-03-10 00:36 UTC
AT-URI
at://did:plc:tr7zlhacx3fete5s7cx5tyjd/com.atproto.lexicon.schema/app.fitsky.workoutPlan

Version History (2 versions)

Lexicon Garden

@