Prototypen
Ein lauffähiger Mock — von der groben Skizze bis zum ausgefeilten Build —, den Personas tatsächlich anklicken und auf den sie reagieren.
Wofür: Geerdete Reaktionen auf etwas Echtes statt auf eine Beschreibung — du siehst, was funktioniert, bevor du baust.
Was es enthält
- Name + Version +
tags(Fidelity, z. B. lofi/midfi/hifi) path/entry/run— wie der lauffähige Build gestartet wird- Optionaler Link zum Projekt + zur Notiz, aus der er gebaut wurde
- Eine Session ist eine Persona, die ihn benutzt — als
statements, geerdet in beobachteten Prototyp-States
Daten-Schema
Ein echter, gekürzter Record (gespeichert als JSON):
// the prototype artefact
{
"id": "proto_5d…", "slug": "weekly-planner-v2",
"name": "Weekly Planner", "version": "v2", "kind": "web",
"path": "prototypes/weekly-planner-v2/", "entry": "index.html",
"run": "static", "tags": ["midfi"]
}
// a proband session = a persona actually using it
{
"persona_id": "persona_7f3…", "prototype_id": "proto_5d…",
"statements": [
{ "persona_id": "persona_7f3…", "text": "I clicked Add task and got a blank screen.",
"stance": { "value": 1, "label": "conditional" },
"refs": [ { "kind": "prototype_state", "text": "after Add task → empty state" } ] }
]
}