Skip to main content
An Activity is anything you put inside a lesson that the learner does. A Question is a single prompt inside a quiz-like activity. In other LMSs you’d find these scattered across “quiz”, “discussion”, “assignment”, “page”. In Hawkings they’re one resource with a type field.

The 22 types

Reading aids

introduction — a one-paragraph hook for the lesson. objective — explicit learning goals. expand — deeper-dive on a sub-topic. explain — a focused explanation of a concept. explain_simple — same, ELI5-style. audio_resume / text_resume — short summaries, audio or text. glossary — defined terms. bibliography — sources and further reading. underline — key passages highlighted in source text. remember — flashcard-style recall prompts (single concept).
quiz — multi-question quiz. Has variants:
  • true_false
  • fill_blank
  • matching
  • grouping
  • element_order
  • open_ended
  • mixed (combines variants)
flashcard — front/back card deck. short_answer — single open-ended question, AI-graded. practical — hands-on exercise. integrative — combines concepts from multiple lessons. application — apply the concept to a real-world scenario. discover — exploratory prompt: “given X, what would happen if…?”
podcast — generated audio walkthrough of the lesson. diagram — generated diagram (mermaid / plain image).
regulation — self-regulation prompts (“rate your confidence”, “pick the next topic”).

Creating an activity

One method, regardless of type:
The SDK only requires lessonId and type. Everything else has sensible defaults — including prompt, which the SDK will derive from the lesson context if you don’t supply one.

Generating in bulk

Most authoring flows want “give me a sensible mix of activities for this lesson”:
This returns an async handle. Poll or webhook-listen for completion; see AI generation.

Questions

Every quiz-like activity has one or more Questions. Read them with expand:
Evaluate one or all of them:
Both forms return a Submission, so the same downstream code handles in-lesson quizzes and graded assignments.

When to use each type — heuristics