org.stormlightlabs.malfestio.source.lecture

desertthunder.dev

Documentation

A reference to a lecture or video used as source material.

main record

A reference to a lecture or video used as source material.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

creator string Optional

Creator or channel name.

maxLength: 300 bytes
language string Optional

Language code for the lecture content (e.g., 'en', 'es', 'fr').

maxLength: 20 bytes
timestamps array of object Optional

Important timestamps or chapters in the lecture.

title string Required

Title of the lecture.

maxLength: 500 bytes
url string uri Required

URL of the lecture (e.g., YouTube link).

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "url",
      "title",
      "createdAt"
    ],
    "properties": {
      "url": {
        "type": "string",
        "format": "uri",
        "description": "URL of the lecture (e.g., YouTube link)."
      },
      "title": {
        "type": "string",
        "maxLength": 500,
        "description": "Title of the lecture."
      },
      "creator": {
        "type": "string",
        "maxLength": 300,
        "description": "Creator or channel name."
      },
      "language": {
        "type": "string",
        "maxLength": 20,
        "description": "Language code for the lecture content (e.g., 'en', 'es', 'fr')."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "timestamps": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "t",
            "label"
          ],
          "properties": {
            "t": {
              "type": "integer",
              "description": "Time in seconds."
            },
            "label": {
              "type": "string",
              "maxLength": 500,
              "description": "Description of the timestamp."
            },
            "noteRef": {
              "type": "string",
              "format": "at-uri",
              "description": "Optional reference to a note taken at this timestamp."
            }
          }
        },
        "description": "Important timestamps or chapters in the lecture."
      }
    }
  },
  "description": "A reference to a lecture or video used as source material."
}

Lexicon Garden

@