haus.opn.mic.show.episode

lexicon.store View official

Documentation

A specific episode or VOD of a show.

main record

A specific episode or VOD of a show.

Record Key tid Timestamp-based ID

Properties

airingDate string datetime Optional

Scheduled or actual date/time when this episode airs.

coverArt blob Optional

No description available.

maxSize: 1.0 MB
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 5000 bytes
showUri string at-uri Required

Reference to the haus.opn.mic.show record.

status string Optional

Current episode lifecycle status.

Known values: upcoming, live, ended
title string Required

No description available.

maxLength: 100 bytes
vodUrl string uri Optional

A valid URI.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "showUri",
      "title",
      "createdAt"
    ],
    "properties": {
      "title": {
        "type": "string",
        "maxLength": 100
      },
      "status": {
        "type": "string",
        "description": "Current episode lifecycle status.",
        "knownValues": [
          "upcoming",
          "live",
          "ended"
        ]
      },
      "vodUrl": {
        "type": "string",
        "format": "uri"
      },
      "showUri": {
        "type": "string",
        "format": "at-uri",
        "description": "Reference to the haus.opn.mic.show record."
      },
      "coverArt": {
        "type": "blob",
        "accept": [
          "image/*"
        ],
        "maxSize": 1000000
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "airingDate": {
        "type": "string",
        "format": "datetime",
        "description": "Scheduled or actual date/time when this episode airs."
      },
      "description": {
        "type": "string",
        "maxLength": 5000
      }
    }
  },
  "description": "A specific episode or VOD of a show."
}

Lexicon Garden

@