From 1dd6db9315e7241c13e5c34a24b29b6c205dd769 Mon Sep 17 00:00:00 2001 From: jhull Date: Sat, 7 Feb 2026 16:23:59 -0800 Subject: [PATCH] updates: improve NCP validation workflow and adopter docs --- .github/workflows/validate-ncp.yml | 31 + CONTRIBUTING.md | 6 + HISTORY.md | 2 +- README.md | 49 +- SPECIFICATION.md | 4 +- VALIDATION.md | 105 + docs/narrative-context-protocol-schema.md | 974 ++------ examples/anora.json | 371 ++- .../signpost-sequence-out-of-range.json | 105 + examples/legacy/anora-legacy.json | 228 ++ .../the-shawshank-redemption-legacy.json | 2068 +++++++++++++++ examples/the-shawshank-redemption.json | 2207 ++--------------- package-lock.json | 65 + package.json | 9 + schema/ncp-schema.json | 75 +- schema/ncp-schema.yaml | 50 +- tests/validate-file.js | 53 + tests/validate-schema.js | 56 +- 18 files changed, 3326 insertions(+), 3132 deletions(-) create mode 100644 .github/workflows/validate-ncp.yml create mode 100644 VALIDATION.md create mode 100644 examples/invalid/signpost-sequence-out-of-range.json create mode 100644 examples/legacy/anora-legacy.json create mode 100644 examples/legacy/the-shawshank-redemption-legacy.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 tests/validate-file.js diff --git a/.github/workflows/validate-ncp.yml b/.github/workflows/validate-ncp.yml new file mode 100644 index 0000000..259eb5e --- /dev/null +++ b/.github/workflows/validate-ncp.yml @@ -0,0 +1,31 @@ +name: Validate NCP + +on: + pull_request: + push: + paths: + - 'schema/**' + - 'examples/**' + - 'tests/**' + - 'package.json' + - 'package-lock.json' + - '.github/workflows/validate-ncp.yml' + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install Dependencies + run: npm ci + + - name: Validate Canonical Fixtures + run: npm run validate:schema diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e612a03..9d381fb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,6 +6,12 @@ The **Narrative Context Protocol (NCP)** is the open-source Dramatica storyform ## How to Contribute We welcome contributions that improve the schema, examples, documentation, and validation tooling. Proposed changes should maintain cross-medium applicability and keep JSON/YAML definitions in sync. +### Example Fixture Policy +- Keep schema-valid interchange fixtures in `/examples/` (and `/examples/invalid/` for expected-failure tests). +- Keep historical or migration-only payloads in `/examples/legacy/`. +- Update `tests/validate-schema.js` whenever fixture coverage changes. +- Run `npm run validate:schema` before opening a PR. + ## Governance & Review NCP was developed in collaboration with the **Entertainment Technology Center (ETC) at the University of Southern California** and is stewarded by **Narrative First** (The Dramatica Co.). Core maintainers lead reviews and incorporate community and partner feedback. diff --git a/HISTORY.md b/HISTORY.md index eed5fea..2c8931d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -26,4 +26,4 @@ Together, this dedicated group is charting a forward-looking path, passionately ⸻ -For a full list of changes and updates, refer to [terminology.md](/terminology.md). +For canonical terminology updates, refer to the files under [/docs/terminology/](/docs/terminology/). diff --git a/README.md b/README.md index cc5888b..a5f10b1 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ NCP is curated by **The Dramatica Co.**—the merger of **Write Bros. Inc.** and At its core, NCP provides a **structured yet adaptable schema**, ensuring narratives retain their logical consistency and emotional depth, even when interpreted or extended by numerous interacting agents. By encoding narrative elements into clear, universally understood representations, NCP maintains the original intent of the author throughout dynamic, distributed narrative environments. -Additionally, NCP acts like a "blockchain-for-subtext," transparently tracking narrative contributions, modifications, and creative expansions. This ensures the original artistic voice and intent remain clear and traceable, regardless of the complexity or number of agents involved. +NCP is transport-focused: it standardizes how storyform context is represented so different tools can exchange the same structural intent without semantic drift. Built upon proven narrative theories and driven by emerging advancements in AI storytelling, NCP simplifies and standardizes complex narrative exchanges. It empowers storytellers, technologists, and creative communities in film, gaming, literature, interactive media, and generative AI environments to collaborate freely—without sacrificing coherence, authenticity, or the original author's vision. @@ -51,6 +51,32 @@ In 2025, **Write Brothers®**—creators of Dramatica® and Movie Magic Screenwr Begin by reading the complete [Specification](/SPECIFICATION.md) +Install validation dependencies and run fixture checks: + +```bash +npm install +npm run validate:schema +``` + +`examples/legacy/` contains migration samples and is intentionally excluded from canonical validation. +`examples/example-mapping.json` is a mapping fragment example, not a full schema document. +Use [/VALIDATION.md](/VALIDATION.md) for validating your own NCP files and CI setup. + +## For Adopters (Self-Serve) + +If you found this repository and want to validate your own NCP JSON, do this: + +1. Clone this repo and run: +```bash +npm install +``` +2. Validate your file directly against the canonical schema: +```bash +npm run validate:file -- /path/to/your-ncp.json +``` +3. If validation fails, fix the reported fields and run the same command again. +4. If you maintain your own repository, copy the CI pattern from `/VALIDATION.md` so every PR validates NCP automatically. + ## Repository Structure ``` narrative-context-protocol/ @@ -64,18 +90,23 @@ narrative-context-protocol/ │ ├── ncp-schema.json │ └── ncp-schema.yaml ├── examples/ +│ ├── example-story.json │ ├── anora.json │ ├── the-shawshank-redemption.json -│ ├── example-story.json -│ └── example-mapping.json +│ ├── example-mapping.json +│ ├── invalid/ +│ │ └── signpost-sequence-out-of-range.json +│ └── legacy/ +│ ├── anora-legacy.json +│ └── the-shawshank-redemption-legacy.json ├── docs/ │ ├── terminology/ -│ ├── 01.perspectives.md -│ ├── 02.appreciations-of-narrative.md -│ ├── 03.narrative-functions.md -│ ├── 04.dynamics.md -│ ├── 05.vectors.md -│ ├── 10.dramatica-translation.md +│ │ ├── 01.perspectives.md +│ │ ├── 02.appreciations-of-narrative.md +│ │ ├── 03.narrative-functions.md +│ │ ├── 04.dynamics.md +│ │ ├── 05.vectors.md +│ │ └── 10.dramatica-translation.md │ └── narrative-context-protocol-schema.md ├── tests/ │ └── validate-schema.js diff --git a/SPECIFICATION.md b/SPECIFICATION.md index 1ffca85..c4bd936 100644 --- a/SPECIFICATION.md +++ b/SPECIFICATION.md @@ -147,7 +147,7 @@ Clearly differentiating between Subtext and Storytelling enhances narrative clar | Represents authorial intent | Shapes audience experience | | Ensures structural coherence | Allows stylistic and expressive flexibility | -This separation becomes even more critical in the AI era. Training models exclusively on storytelling—whether through transcripts, closed captions, or script dialogue—beyond being unethical--is fundamentally unproductive. Such training is ineffective because it captures only the surface-level "flavoring" of a story, not its underlying thematic essence. The true value resides in the structural coherence provided by subtext, the very heart of the narrative. +This separation becomes even more critical in AI workflows. Training exclusively on storytelling artifacts captures surface expression, but often misses transferable structural intent. Subtext is the layer designed for durable interchange. --- @@ -217,7 +217,7 @@ The implications for interactive narratives are significant. In interactive stor ### Players -Characters whose actions and motivations reveal deeper thematic layers (subtext), moving beyond superficial characterization. Each Player must be linked explicitly to an **Objective Story Throughline Perspective** to maintain narrative coherence. +Characters whose actions and motivations reveal deeper thematic layers (subtext), moving beyond superficial characterization. Each Player should be linked to one or more relevant Perspectives to maintain narrative coherence. ```json "players": [ diff --git a/VALIDATION.md b/VALIDATION.md new file mode 100644 index 0000000..c75e234 --- /dev/null +++ b/VALIDATION.md @@ -0,0 +1,105 @@ +# NCP Validation Guide + +Use this guide to validate Narrative Context Protocol JSON payloads against the canonical schema. + +## First-Time Adopter Checklist + +If you discovered NCP and want to validate your own payload quickly, follow this exact sequence: + +1. Clone this repository. +2. Run: +```bash +npm install +``` +3. Validate your file: +```bash +npm run validate:file -- /path/to/your-ncp.json +``` +4. Treat any `FAIL` output as blocking. +5. Re-run until you get `PASS`. + +## Local Setup + +```bash +npm install +``` + +## Validate This Repository's Fixtures + +```bash +npm run validate:schema +``` + +This validates: + +- `/examples/example-story.json` +- `/examples/anora.json` +- `/examples/the-shawshank-redemption.json` +- Expected failures in `/examples/invalid/*.json` + +## Validate Your Own NCP File(s) + +```bash +npm run validate:file -- /absolute/or/relative/path/to/your-ncp.json +``` + +You can pass multiple files: + +```bash +npm run validate:file -- ./my-story.json ./their-story.json +``` + +The command returns non-zero on failure, which makes it CI-friendly. + +## Using NCP Validation In Your Own Repository + +If you do not want to run validation from this repository, copy these files into your own project: + +- `/schema/ncp-schema.json` +- `/tests/validate-file.js` + +Then install Ajv and run: + +```bash +npm install ajv +node tests/validate-file.js /path/to/your-ncp.json +``` + +For continuous enforcement, add the GitHub Actions workflow below. + +## Timestamp Rule (`created_at`) + +NCP requires `story.created_at` to be an ISO-8601 UTC timestamp in this form: + +- `YYYY-MM-DDTHH:MM:SSZ` +- Example: `2025-12-01T12:34:56Z` + +## GitHub Actions (Reference) + +If another repository stores NCP files, use this workflow pattern: + +```yaml +name: Validate NCP + +on: + pull_request: + push: + +jobs: + validate-ncp: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm run validate:file -- path/to/your-ncp.json +``` + +## Adoption Recommendations + +- Pin the schema version (`schema_version`) in your payloads. +- Validate NCP during pull requests and before release builds. +- Keep canonical keys even when using custom mapping namespaces. +- Treat `/examples/legacy/` as migration reference only, not canonical interchange fixtures. diff --git a/docs/narrative-context-protocol-schema.md b/docs/narrative-context-protocol-schema.md index 7c068ad..6591e8e 100644 --- a/docs/narrative-context-protocol-schema.md +++ b/docs/narrative-context-protocol-schema.md @@ -1,929 +1,237 @@ --- -title: Narrative Context Protocol -description: A standardized JSON format for structuring narrative elements, enabling consistency, interoperability, and adaptability across storytelling platforms. +title: Narrative Context Protocol Schema Reference +description: Practical implementation guide for validating and exchanging NCP storyforms. --- -The **Narrative Context Protocol** provides a standardized format for defining and organizing story elements in a structured, interoperable way. This schema allows narratives to be stored, analyzed, and transferred between different storytelling tools while maintaining **clarity, flexibility, and the author's original intent**. +# Narrative Context Protocol Schema Reference -At its core, the schema divides a story into two layers: the **deep, structural meaning (Subtext)** and the **surface-level presentation (Storytelling)**. This split ensures that authors can preserve the underlying message of their work while allowing for various forms of high-level audience engagement. +This document explains the canonical schema at `/schema/ncp-schema.json` and `/schema/ncp-schema.yaml`. +Use this page when implementing import/export, validation, and cross-tool interchange. ---- - -## **Schema Validation & Usage** - -The schema is designed for **broad adoption**. It can be used in: - -- **Storytelling platforms** (Subtxt/Dramatica, AI-driven tools, screenwriting apps) -- **APIs** that facilitate structured narrative generation -- **AI models** that generate structured story data -- **Interactive storytelling** systems (video games, branching narratives) - ---- - -## **Extending the Model** - -Narrative Context Protocol is **designed for flexibility**. Developers and storytellers can: - -- Add **custom Appreciations, Narrative Functions, Dynamics, and Vectors** using `custom_appreciation`, `custom_narrative_function`, `custom_dynamic`, and `custom_vector` fields. -- Map terms from other storytelling frameworks using `custom_appreciation_namespace`, `custom_narrative_function_namespace`, `custom_dynamic_namespace`, and `custom_vector_namespace`. -- Submit **extensions and feedback** via issues and discussions in this repo. - ---- - -## **Schema Overview** - -The schema is divided into the following key sections: - -### Story -The highest-level object representing the entire story, containing its metadata and core narrative structure. - -#### **Story Properties:** -- `id`: Unique story identifier -- `title`: Story title -- `genre`: Story genre -- `logline`: A short description of the story’s premise -- `created_at`: Timestamp for record-keeping - -```json -"story": { - "id": "story_123e4567", - "title": "The Journey Within", - "genre": "Psychological Drama", - "logline": "A psychologist struggling with his past helps a patient uncover a hidden trauma, only to confront his own.", - "created_at": "2025-02-05T14:30:00Z" -} -``` - -Inside a story, the **narrative** is broken down into two layers: **Subtext** and **Storytelling.** - ---- - -### Narrative: Structuring Subtext & Storytelling - -A **story** may contain **one or more narratives**, though most stories exhibit a **single central narrative**. Each narrative is composed of two core layers: +## What This Schema Guarantees -1. **Subtext:** The deep, underlying structure of the narrative that conveys the author's intent. -2. **Storytelling:** The high-level, audience-facing presentation of the story. +- A shared envelope for transporting narrative context (`schema_version` + `story`). +- A consistent separation of `subtext` and `storytelling` per narrative. +- Canonical enums for `appreciation`, `narrative_function`, `dynamic`, and `vector`. +- Optional custom mapping fields that preserve canonical meaning. -This structure provides both depth (meaning) and flexibility (presentation) within a single, organized model, ensuring a clear distinction between **what the story means** (Subtext) and **how the story is told** (Storytelling). +## Validation Quickstart ---- - -```json -"story": { - "id": "story_123e4567", - "title": "The Journey Within", - "narratives": [ - { - "id": "narrative_AbnHJ147", - "title": "Central Form", - "subtext": { - "perspectives": [], - "players": [], - "storypoints": [], - "storybeats": [], - "dynamics": [] - }, - "storytelling": { - "overviews": [], - "moments": [] - } - } - ] -} +```bash +npm install ajv +node tests/validate-schema.js ``` ---- -## Structuring Subtext vs. Storytelling +The test runner validates: -### **Subtext** – The deep, underlying message of the narrative that communicates the author's intent. -Subtext is composed of core structural components that define meaning beneath the surface: -- **Perspectives** – The lens through which story elements are experienced (e.g., `Objective Story`, `Main Character`). -- **Dynamics** – High-level narrative forces like `Story Outcome` (`Success` or `Failure`). -- **Players** – Characters with defined roles and motivations that impact the story's underlying meaning. -- **Storypoints** – Key structural points, such as `Problem`, `Solution`, and `Story Goal`. -- **Storybeats** – Significant turning points that reflect shifts in narrative meaning, such as `Signpost`, `Progression`, or `Event`. +- Valid fixtures: `/examples/example-story.json`, `/examples/anora.json`, `/examples/the-shawshank-redemption.json` +- Invalid fixtures: `/examples/invalid/*.json` ---- - -### **Storytelling** – The high-level, audience-facing presentation of the narrative. -This is how the story is structured and told, with organizational and stylistic elements that shape audience perception: -- **Overviews** – Surface-level storytelling components. The only standard Overviews are **Logline** and **Genre Dynamics**. -- **Moments** – Organizational units (such as scenes, sequences, acts, chapters, sections, or levels) that define the telling of the narrative. Each Moment includes a `synopsis` and reference to ordered Storybeats found within. - ---- +Legacy exports are kept in `/examples/legacy/` for migration reference only. -### **Example Breakdown** +## Top-Level Shape -#### **Subtext Example** ```json -"subtext": { - "perspectives": [ - { - "id": "perspective_abc123", - "name": "Dr. Michael Hayes", - "storytelling": "The perspective through which the audience primarily experiences the story.", - "pov": "i" - } - ], - "players": [ - { - "id": "player_def456", - "name": "Dr. Michael Hayes", - "role": "the world's leading psychologist", - "visual": "A distinguished man in his late 50s, with silver-streaked hair and piercing blue eyes. He wears a well-tailored suit but often appears slightly disheveled, as if sleep eludes him.", - "audio": "His voice is calm and measured, carrying the weight of experience but occasionally betraying a hint of hesitation when discussing personal matters.", - "bio": "Dr. Michael Hayes is a renowned psychologist known for his groundbreaking research on trauma and memory. Despite his professional success, he struggles with the ghosts of his past—mistakes he can never take back and patients he couldn’t save. As he delves deeper into the minds of others, he finds himself unable to escape his own unresolved grief.", - "storytelling": "A psychologist haunted by his past.", - "motivations": [ - { - "narrative_function": "Avoid", - "illustration": "avoiding confronting past failures", - "storytelling": "In therapy sessions, he changes topics when pressed." - } - ] - } - ] -} -``` - ---- - -#### **Storytelling Example** -```json -"storytelling": { - "overviews": [ - { - "id": "overview_789123", - "summary": "A cyberpunk thriller with a rogue AI.", - "storytelling": "Fast-paced action with a dystopian backdrop." - } - ], - "moments": [ - { - "id": "moment_456789", - "summary": "The protagonist confronts the rogue AI.", - "synopsis": "Alex tracks the AI to its hidden base for a final confrontation.", - "storybeats": [ - { "sequence": 0, "storybeat_id": "beat_123456" }, - { "sequence": 1, "storybeat_id": "beat_654321" } - ] +{ + "schema_version": "1.2.0", + "story": { + "id": "story_123e4567-e89b-12d3-a456-426614174000", + "title": "Echoes of the Past", + "genre": "Mystery Thriller", + "logline": "A hardened detective uncovers clues linking a cold case to his own haunting history.", + "created_at": "2025-12-01T12:34:56Z", + "narratives": [] } - ] } ``` ---- - -## Summary of the Narrative Structure -| Section | Purpose | Key Elements | -|----------------|----------------------------------|-----------------------------------------| -| **Subtext** | Deep, underlying narrative meaning | Perspectives, Players, Storypoints, Storybeats, Dynamics | -| **Storytelling**| Surface-level narrative presentation | Overviews, Moments | - ---- - -### Subtext (Deep Narrative Structure) -This section represents the **core meaning** of the story. - -#### **Perspectives** -The lens through which the audience experiences the story’s **meaning**. - -```json -"perspectives": [ - { - "id": "perspective_ab12cd34", - "pov": "i", - "summary": "Michael Radford", - "storytelling": "Michael Radford has spent his life convincing himself that control is the key to survival, but every step forward only tightens the noose around him. When his instincts betray him at the worst possible moment, he’s forced to confront the truth—his carefully built defenses aren’t protecting him, they’re suffocating him." - } -] -``` - -#### **Players** -Characters within the **narrative structure**, with motivations tied to **subtext** rather than superficial characterization. The associated Perspective MUST be associated with an `Objective Story` Throughline. +Required top-level fields: -```json -"players": [ - { - "id": "player_def456", - "name": "Dr. Michael Hayes", - "role": "the world's leading psychologist", - "visual": "A distinguished man in his late 50s, with silver-streaked hair and piercing blue eyes. He wears a well-tailored suit but often appears slightly disheveled, as if sleep eludes him.", - "audio": "His voice is calm and measured, carrying the weight of experience but occasionally betraying a hint of hesitation when discussing personal matters.", - "bio": "Dr. Michael Hayes is a renowned psychologist known for his groundbreaking research on trauma and memory. Despite his professional success, he struggles with the ghosts of his past—mistakes he can never take back and patients he couldn’t save. As he delves deeper into the minds of others, he finds himself unable to escape his own unresolved grief.", - "storytelling": "A psychologist haunted by his past.", - "motivations": [ - { - "narrative_function": "Avoid", - "illustration": "avoiding confronting past failures", - "storytelling": "In therapy sessions, he changes topics when pressed." - } - ] - } -] -``` +- `schema_version` (semver string) +- `story` -#### **Dynamics** -High-level narrative forces like **Story Outcome** and **Story Judgment**. - -```json -"dynamics": [ - { - "id": "dynamic_abcdef12", - "dynamic": "Story Outcome", - "vector": "Success", - "summary": "The story resolves with Michael embracing his past.", - "storytelling": "Michael finally opens up, allowing his own progress." - } -] -``` - -#### **Storypoints** -Structured **spatial aspects** that define and shape the narrative. - -```json -"storypoints": [ - { - "id": "storypoint_2345abcd", - "appreciation": "Main Character Issue", - "narrative_function": "Rationalization", - "illustration": "justifying bad behavior", - "summary": "Michael avoids self-examination by rationalizing past behavior.", - "storytelling": "Michael takes charge, justifying his actions as necessary in order to take care of the family.", - "perspectives": [ - { - "perspective_id": "persp_def456" - } - ] - } -] -``` +Required `story` fields: -#### **Storybeats** -**Temporal aspects** that illustrate the progression _through_ the narrative. Each beat captures a **significant temporal shift** and exists within a defined **scope**. +- `id`, `title`, `logline`, `created_at`, `narratives` -#### **Special Keys for Storybeats** -- **`scope`** – Defines the narrative level the beat belongs to: - - `"signpost"` → **Broad thematic shifts** (1-4) - - `"progression"` → **Structural developments** (1-16) - - `"event"` → **Fine-grained events** (1-64) -- **`sequence`** – Canonical ordering within the **scope**. -- **`signpost`** – Optional grouping (1-4) for signpost-level beats. -- **`throughline`** – Optional label for grouping beats by throughline. +## Narrative Layers -These ensure **consistency across all stories** while allowing room for creative variation. +Each item in `story.narratives[]` contains: -```json -"storybeats": [ - { - "id": "beat_9876bcde", - "scope": "signpost", - "sequence": 4, - "signpost": 4, - "throughline": "Main Character", - "narrative_function": "Past", - "summary": "Michael can no longer escape his past.", - "storytelling": "Michael has spent years outrunning his past, but in an instant, it catches up to him. His patient’s words land like a ghostly echo, dredging up memories he’s tried to bury, his composure cracking under the weight of old wounds. For the first time, he isn’t just remembering—he’s reliving it, trapped in a moment he thought he’d left behind.", - "perspectives": [ - { - "perspective_id": "perspective_ab12cd34" - } - ] - } -] -``` +- `subtext` +- `storytelling` ---- +Both objects are required. -### Storytelling (How the Narrative is Expressed) -This section represents the **presentation, style, and organization** of the story. +## Subtext Model -#### **Overviews** -**Surface-level components** like the **Logline** and **Genre Dynamics**. +`subtext` contains five required arrays: -```json -"overviews": [ - { - "id": "overview_12345abc", - "label": "logline", - "storytelling": "A thrilling cat-and-mouse chase through the neon-lit streets of a futuristic city.", - "summary": "A cyberpunk crime thriller about a rogue AI and the detective trying to stop it." - }, - { - "id": "overview_67890def", - "label": "genre_dynamics", - "storytelling": "Blending classic noir with futuristic dystopia, the story challenges conventional crime tropes.", - "summary": "A fusion of cyberpunk and detective noir." - } -] -``` +- `perspectives` +- `players` +- `dynamics` +- `storypoints` +- `storybeats` -#### **Moments** -Organizational and supreficial **narrative units**—Acts, Scenes, Sequences, Chapters, Levels. +### Perspectives -```json -"moments": [ - { - "id": "moment_abcdef12", - "summary": "The protagonist arrives in the dystopian city and gets their first taste of the underworld.", - "synopsis": "After landing in Neo-Tokyo, Alex is forced to navigate a world of hackers, crime syndicates, and AI-controlled law enforcement.", - "setting": "The neon-soaked arrival terminal and its surrounding alleys.", - "timing": "Night, moments after landing.", - "imperatives": "Introduce the city, establish the stakes, and show the protagonist's vulnerability.", - "storybeats": [ - { "sequence": 0, "storybeat_id": "beat_123456" }, - { "sequence": 1, "storybeat_id": "beat_789012" }, - { "sequence": 2, "storybeat_id": "beat_345678" } - ] - }, - { - "id": "moment_ghijkl34", - "summary": "A tense confrontation with the antagonist reveals a shocking truth.", - "synopsis": "Alex finally meets the rogue AI and realizes it may not be the villain they were led to believe.", - "setting": "A sealed data vault beneath the city.", - "timing": "The following evening after a day of investigations.", - "imperatives": "Build tension, reveal the AI's motives, and destabilize prior assumptions.", - "storybeats": [ - { "sequence": 0, "storybeat_id": "beat_987654" }, - { "sequence": 1, "storybeat_id": "beat_654321" } - ] - } -] -``` +Required keys per item: -### Moment Properties +- `id` +- `author_structural_pov` (`i`, `you`, `we`, `they`) +- `summary` +- `storytelling` -#### Audience Experiential POV +### Players -Essential for communicating how the Moment's synopsis and storytelling should be written. +Required keys per item: -```json -"audience_experiential_pov": { - "type": "string", - "enum": [ - "first_person_central", - "first_person_peripheral", - "second_person", - "third_person_limited", - "third_person_objective", - "third_person_omniscient" - ] -} -``` +- `id`, `name`, `role`, `visual`, `audio`, `summary`, `storytelling`, `perspectives` -- **first_person_central:** Narrator is the main character, directly experiencing events ("I did this"). -- **first_person_peripheral:** Narrator is a secondary character observing another's story ("I saw him do this"). -- **second_person:** Directly addresses the reader, immersing them in the action ("You did this"). -- **third_person_limited:** Narration closely follows one character’s perspective and thoughts ("She thought this"). -- **third_person_objective:** Narration reports only observable actions without internal thoughts ("He did that"). -- **third_person_omniscient:** Narration shares thoughts and emotions from multiple characters ("He felt angry; meanwhile, she was plotting"). +`perspectives` must be an array of objects, each with required `perspective_id`. ---- +### Dynamics -## Why This Split Matters -| **Subtext** | **Storytelling** | -|-------------|----------------| -| Represents **deep narrative structure** | Represents **surface-level presentation** | -| Focuses on **author's intent** | Focuses on **audience appreciation** | -| Structural elements: **Perspectives, Players, Storypoints, Storybeats, Dynamics** | Expressive elements: **Overviews, Moments** | -| Determines the **underlying meaning** | Determines **how the story is told** | +Required keys per item: ---- +- `id`, `dynamic`, `vector`, `summary`, `storytelling` -## **Canonical Standards & Custom Mapping** +Canonical `dynamic` values: -The **Narrative Context Protocol JSON Schema** provides a **canonical set of values** for `appreciation`, `narrative_function`, `dynamic`, and `vector` ensuring consistency across different implementations. However, we recognize that different storytelling frameworks (such as **Dramatica, Hero’s Journey, or Save the Cat!**) may use alternative terminology to describe similar concepts. +- `main_character_resolve` +- `influence_character_resolve` +- `main_character_growth` +- `main_character_approach` +- `problem_solving_style` +- `story_limit` +- `story_driver` +- `story_outcome` +- `story_judgment` -To maintain **compatibility** while allowing **customization**, we introduce: +Canonical `vector` values: -- **Canonical Standards** – A predefined list of `appreciation`, `narrative_function`, `dynamic`, and `vector` values that form the foundation of the model and convey the meaning of the narrative. -- **Custom Mapping Fields** – Optional fields (`custom_appreciation`, `custom_narrative_function`, `custom_dynamic`, `custom_vector`) for alternative terms. -- **Namespacing for Third-Party Mappings** – The ability to link terminology from other frameworks via `custom_appreciation_namespace`, `custom_narrative_function_namespace`, `custom_dynamic_namespace`, and `custom_vector_namespace`. +- `change`, `steadfast` +- `stop`, `start` +- `do_er`, `be_er` +- `linear`, `holistic` +- `optionlock`, `timelock` +- `action`, `decision` +- `success`, `failure` +- `good`, `bad` -**Base Set** +Custom extension fields: -**Validation Rule:** Any `appreciation`, `narrative_function`, `dynamic`, or `vector` **must match** the canonical lists referenced below unless explicitly mapped via the **custom mapping system** for compliance with the Narrative Context Protocol: +- `custom_dynamic`, `custom_dynamic_namespace` +- `custom_vector`, `custom_vector_namespace` ---- +### Storypoints -### Appreciations +Required keys per item: -Canonical Appreciations are maintained in `docs/terminology/02.appreciations-of-narrative.md` as name + short_definition. +- `id`, `appreciation`, `narrative_function`, `illustration`, `summary`, `storytelling`, `perspectives` ---- +`appreciation` and `narrative_function` are validated against canonical enums in the schema. -### Narrative Functions +Custom extension fields: -Canonical Narrative Functions are maintained in `docs/terminology/03.narrative-functions.md` as name + semantic_definition. +- `custom_appreciation`, `custom_appreciation_namespace` +- `custom_narrative_function`, `custom_narrative_function_namespace` ---- +### Storybeats -### Dynamics +Required keys per item: -```json -"dynamic": { - "type": "string", - "enum": [ - "main_character_resolve", - "influence_character_resolve", - "main_character_growth", - "main_character_approach", - "problem_solving_style", - "story_limit", - "story_driver", - "story_outcome", - "story_judgment" - ], - "description": "An indication of a Dynamic applied to the Dramatica storyform." -} -``` -**💡 Expansion:** Third-party implementations can add their own `custom_dynamic` fields. +- `id`, `scope`, `sequence`, `narrative_function`, `summary`, `storytelling`, `perspectives` ---- +Optional keys: -### Vectors -```json -"vector": { - "type": "string", - "enum": [ - "change", - "steadfast", - "stop", - "start", - "do_er", - "be_er", - "linear", - "holistic", - "optionlock", - "timelock", - "action", - "decision", - "success", - "failure", - "good", - "bad" - ], - "description": "A vector illustrating how a Dynamic manifests within the story." -} -``` -**💡 Expansion:** Third-party implementations can add their own `custom_vector` fields. +- `signpost` (1-4) +- `throughline` +- `custom_narrative_function`, `custom_narrative_function_namespace` ---- +`scope` controls allowed `sequence` range (enforced in schema): -### Storypoints +- `signpost`: `1-4` +- `progression`: `1-16` +- `event`: `1-64` -```json -"storypoints": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { "type": "string" }, - "appreciation": { - "type": "string", - "description": "Canonical Appreciation (see docs/terminology/02.appreciations-of-narrative.md)." - }, - "narrative_function": { - "type": "string", - "description": "Canonical Narrative Function (see docs/terminology/03.narrative-functions.md)." - }, - "custom_appreciation": { "type": "string" }, - "custom_appreciation_namespace": { - "type": "object", - "additionalProperties": { "type": "string" } - }, - "custom_narrative_function": { "type": "string" }, - "custom_narrative_function_namespace": { - "type": "object", - "additionalProperties": { "type": "string" } - }, - "illustration": { "type": "string" }, - "summary": { "type": "string" }, - "storytelling": { "type": "string" }, - "perspectives": { - "type": "array", - "items": { - "type": "object", - "properties": { - "perspective_id": { "type": "string" } - }, - "required": ["perspective_id"] - } - } - }, - "required": ["id", "appreciation", "narrative_function", "illustration", "summary", "storytelling", "perspectives"] - } -} -``` +## Storytelling Model ---- - -### Storybeats -The following standardized values ensure consistency and interoperability in story structure: +`storytelling` contains two required arrays: -#### Scope-Based Sequence Ranges +- `overviews` +- `moments` -In a Storybeat, `scope` determines the intended range of `sequence`: +### Overviews -| **Scope** | **Typical Range** | -|------------|-----------------| -| **Signpost** | `1-4` | -| **Progression** | `1-16` | -| **Event** | `1-64` | +Required keys per item: -#### Full Example: Canonical Storybeats +- `label`, `summary`, `storytelling` -```json -"storybeats": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string", - "pattern": "^(?:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}|(?:story|narrative|beat)_[A-Za-z0-9][A-Za-z0-9_-]*)$" - }, - "scope": { - "type": "string", - "enum": ["signpost", "progression", "event"] - }, - "sequence": { - "type": "integer", - "minimum": 1 - }, - "signpost": { - "type": "integer", - "minimum": 1, - "maximum": 4 - }, - "throughline": { - "type": "string" - }, - "narrative_function": { - "type": "string" - }, - "custom_narrative_function": { "type": "string" }, - "custom_narrative_function_namespace": { - "type": "object", - "additionalProperties": { "type": "string" } - }, - "summary": { - "type": "string" - }, - "storytelling": { - "type": "string" - }, - "perspectives": { - "type": "array", - "items": { - "type": "object", - "properties": { - "perspective_id": { - "type": "string" - } - }, - "required": ["perspective_id"] - } - } - }, - "required": [ - "id", - "scope", - "sequence", - "narrative_function", - "summary", - "storytelling", - "perspectives" - ] - } -} +`label` must be normalized snake_case (`^[a-z][a-z0-9_]*$`), e.g. `logline`, `genre_dynamics`. -``` ---- +### Moments -#### Example Storybeat Validation +Required keys per item: -**Valid Signpost** +- `summary`, `synopsis`, `setting`, `timing`, `imperatives`, `storybeats` -```json -{ - "id": "beat_abc123", - "scope": "signpost", - "sequence": 3, - "narrative_function": "Memory", - "signpost": 3, - "throughline": "Main Character", - "summary": "A moment of hesitation as the protagonist considers the past.", - "storytelling": "In the rain, Alex stares at the old photo, lost in thought.", - "perspectives": [ - { - "perspective_id": "perspective_ab12cd34" - } - ] -} -``` -✅ **Passes validation** because `sequence: 3` is within the **1-4 range** for `signpost`. +Optional keys: ---- +- `id`, `act`, `order`, `maximum_steps`, `fabric`, `audience_experiential_pov` -**Invalid Signpost** +`storybeats` inside a moment is an ordered reference list: ```json -{ - "id": "beat_abc123", - "scope": "signpost", - "sequence": 7, - "narrative_function": "Memory", - "signpost": 3, - "throughline": "Main Character", - "summary": "A moment of hesitation as the protagonist considers the past.", - "storytelling": "In the rain, Alex stares at the old photo, lost in thought.", - "perspectives": [ - { - "perspective_id": "perspective_xyz789" - } - ] -} +"storybeats": [ + { "sequence": 0, "storybeat_id": "beat_abc123" }, + { "sequence": 1, "storybeat_id": "beat_def456" } +] ``` -❌ **Fails validation** because `sequence: 7` is **outside the typical range (1-4)** for `signpost` scope. ---- - -### Customizing & Cross-Framework Mapping +## Canonical Terminology Sources -**Narrative Context Protocol** provides a **structured, standardized framework** for defining storytelling elements. However, we recognize that different storytelling paradigms may use **alternative terminology** or require **custom extensions**. +Canonical sets are versioned in two places: -To maintain both **consistency and flexibility**, the schema introduces two mechanisms: +- Enforced by schema enums in `/schema/ncp-schema.json` +- Documented in: + - `/docs/terminology/02.appreciations-of-narrative.md` + - `/docs/terminology/03.narrative-functions.md` + - `/docs/terminology/04.dynamics.md` + - `/docs/terminology/05.vectors.md` -1. **`custom_appreciation`** – For defining a **personalized term** while retaining compatibility with the standard model. -2. **`custom_appreciation_namespace`** – For mapping an appreciation to **external storytelling frameworks** (e.g., Dramatica, Hero’s Journey, Save the Cat!). +## Custom Mapping Guidance ---- +Use custom fields to map alternate terminology while preserving canonical keys. -## Custom Appreciations, Narrative Functions, Dynamics, and Vectors -While every standard is open to customization, we focus on customizing an Appreciation here as an example. +Example (storypoint): -`custom_appreciation` allows users to introduce **a preferred appreciation label** without replacing the canonical standard. - -### Storypoint Example ```json { "id": "storypoint_2345abcd", - "perspectives": [ - { - "perspective_id": "perspective_ab12cd34" - } - ], - "appreciation": "Main Character Symptom", - "narrative_function": "Disbelief", - "custom_appreciation": "Alternative Viewpoint" -} -``` - -**Why?** -- The combination of the `"Catalust Provocateur"` Perspective and the `"Focus"` Appreciation fits within **NCP** standards and serves as an anchor across all systems. There is no ambiguity as to what this Storypoint refers to within the narrative. -- `"Alternative Viewpoint"` is the **user’s preferred alternative**, which **does not conflict** with the standard model. - -::callout ---- -icon: i-heroicons-exclamation-triangle ---- -**Best Practice**: When using `custom_appreciation`, it is **required** to keep the original **canonical standards** outlined in the standard set for compatibility. -:: - ---- - -## Custom Appreciation Namespace (Cross-Framework Mapping) -To **ensure interoperability** across storytelling models, users can map appreciations to **alternative terminologies** using `custom_appreciation_namespace`. - -### Usage Example -```json -{ - "id": "storypoint_2345abcd", - "perspectives": [ - { - "perspective_id": "perspective_ab12cd34" - } - ], "appreciation": "Main Character Symptom", "narrative_function": "Disbelief", "custom_appreciation": "Alternative Viewpoint", "custom_appreciation_namespace": { - "Dramatica": "Influence Character Symptom", + "Dramatica": "Main Character Symptom", "Hero's Journey": "Call to Adventure", "Save the Cat!": "Debate" - } -} -``` -**Why?** - -- `"Focus"`, along with `"Influence Character"` remains the **official Perspective and Appreciation**. -- `"Alternative Tension"` is the **custom term** for internal use. -- `"Dramatica": "Influence Character Symptom"` ensures **compatibility with original Dramatica theory concepts**. -- `"Hero's Journey": "Call to Adventure"` provides a **direct mapping to Joseph Campbell’s model**. -- `"Save the Cat!": "Debate"` aligns with **Blake Snyder’s methodology**. - -::callout ---- -icon: i-heroicons-information-circle ---- -**Best Practice:** For broader adoption, users should **map their custom terms** to at least **one external framework** when possible. -:: - ---- - -## Summary of Differences -| **Feature** | **`custom_appreciation`** | **`custom_appreciation_namespace`** | -|------------|----------------------|--------------------------------| -| **Purpose** | Allows a user to define a **custom term** for internal use | Maps an appreciation to an **external narrative framework** | -| **Scope** | A single replacement term | Multi-framework compatibility | -| **Format** | A simple string | An object with key-value mappings | -| **Use Case** | User wants to customize terminology but stay within the model | User needs to translate their story into Dramatica, Hero’s Journey, etc. | - ---- - -## Other Customization and Namespacing -Just as Appreciations of Storypoints can be customized and mapped, the same applies to **Narrative Functions**, **Dynamics**, and **Vectors** across Storypoints, Storybeats, and Dynamics. The key requirement is to maintain the canonical fields for the applicable component, then expand with both the **custom term** and **custom term namespace**. - -### Storybeat Example - -```json -"storybeats": [ - { - "id": "beat_9876bcde", - "scope": "signpost", - "sequence": 3, - "signpost": 3, - "throughline": "Main Character", - "narrative_function": "Preconscious", - "summary": "Michael’s carefully constructed world crumbles as his instincts betray him, pushing him into a moment of raw, unfiltered reaction that costs him everything he’s fought for.", - "storytelling": "Michael doesn’t think—he just reacts. The argument erupts, his voice raw as he hurls words he can’t take back, exposing the fear he’s buried beneath years of control. The moment shatters, leaving only silence, a slammed door, and the sinking realization that he’s just lost everything.", + }, + "illustration": "the character distrusts obvious evidence", + "summary": "A recurring refusal to accept what is in front of them.", + "storytelling": "The protagonist keeps dismissing direct warnings.", "perspectives": [ - { - "perspective_id": "perspective_ab12cd34" - } - ], - "custom_narrative_function": "Impulsive Responses", - "custom_narrative_function_namespace": { - "Dramatica": "Impulsive Responses", - "Save the Cat!": "Dark Night of the Soul" - } - } -] + { "perspective_id": "perspective_ab12cd34" } + ] +} ``` ---- - -## Validation & Best Practices -To **preserve the integrity** of NCP while allowing for flexibility, the following **validation rules** should be applied: - -- Storypoints must always include canonical `appreciation` and `narrative_function` values, even if mapped to an external framework. -- Storybeats must include `scope`, `sequence`, and canonical `narrative_function` values to map across the temporal progression of the narrative. -- Dynamics must include a standard `dynamic` and `vector`. -- If `custom_appreciation` is used, `appreciation` must still be present. -- `custom_appreciation_namespace` should be used when interoperability with external frameworks is desired. - ---- +## Legacy Data and Migration -## Example JSON Document +Some historical exports in `/examples/legacy/` predate the current interchange contract. +They are useful references but are not guaranteed to validate against the canonical schema. -To see the schema in action, here’s a **full example JSON document**: +For migration strategy, see: -```json -{ - "schema_version": "1.2.0", - "story": { - "id": "story_123e4567-e89b-12d3-a456-426614174000", - "title": "Echoes of the Past", - "genre": "Mystery Thriller", - "logline": "A hardened detective uncovers clues linking a cold case to his own haunting history.", - "created_at": "2025-12-01T12:34:56Z", - "narratives": [ - { - "id": "narrative_001", - "title": "Central Narrative", - "subtext": { - "perspectives": [ - { - "id": "perspective_12345678-1234-1234-1234-123456789012", - "author_structural_pov": "i", - "summary": "Michael Radford", - "storytelling": "Michael Radford has spent his life convincing himself that control is the key to survival, but every step forward only tightens the noose around him. When his instincts betray him at the worst possible moment, he’s forced to confront the truth—his carefully built defenses aren’t protecting him, they’re suffocating him." - } - ], - "players": [ - { - "id": "player_abcdef12-3456-7890-abcd-ef1234567890", - "name": "Detective John Marlowe", - "role": "Main Character", - "visual": "A rumpled trench coat and tired eyes that miss nothing.", - "audio": "Measured speech with an edge of impatience.", - "summary": "A seasoned detective battling personal demons and a haunting past.", - "storytelling": "John projects a stoic and determined front, masking his inner turmoil.", - "perspectives": [ - { - "perspective_id": "perspective_12345678-1234-1234-1234-123456789012" - } - ] - } - ], - "dynamics": [ - { - "id": "dynamic_00112233-4455-6677-8899-aabbccddeeff", - "dynamic": "story_outcome", - "vector": "success", - "summary": "The investigation culminates with John finding redemption as truth prevails.", - "storytelling": "A crescendo of revelations ties together the character’s journey and the case." - } - ], - "storypoints": [ - { - "id": "storypoint_11223344-5566-7788-99aa-bbccddeeff00", - "perspectives": [ - { - "perspective_id": "perspective_12345678-1234-1234-1234-123456789012" - } - ], - "appreciation": "Main Character Focus", - "narrative_function": "Consider", - "illustration": "ruminating over the case", - "summary": "John discovers evidence that hints at a personal connection to the old unsolved case.", - "storytelling": "A shattered piece of glass at the scene becomes a recurring symbol of hidden truths.", - "custom_appreciation": "Mystery Element", - "custom_narrative_function": "Clue Analysis" - } - ], - "storybeats": [ - { - "id": "beat_aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", - "scope": "signpost", - "sequence": 2, - "signpost": 2, - "throughline": "Main Character", - "narrative_function": "Preconscious", - "summary": "Haunted by the past, John relives the traumatic events that shaped his career.", - "storytelling": "Intercut scenes merge present-day investigation with vivid flashbacks of earlier failures.", - "perspectives": [ - { - "perspective_id": "perspective_12345678-1234-1234-1234-123456789012" - } - ], - "custom_narrative_function": "Impulsive Responses", - "custom_narrative_function_namespace": { - "Dramatica": "Impulsive Responses" - } - } - ] - }, - "storytelling": { - "overviews": [ - { - "id": "overview_001", - "label": "logline", - "summary": "A dark investigation in a rain-soaked city where every shadow holds a secret.", - "storytelling": "A gritty, atmospheric narrative blending film noir with modern mystery." - }, - { - "id": "overview_002", - "label": "genre_dynamics", - "summary": "A psychological dive into trauma and redemption.", - "storytelling": "The story juxtaposes stark reality with introspective moments, engaging the audience emotionally." - } - ], - "moments": [ - { - "id": "moment_001", - "summary": "The inciting discovery.", - "synopsis": "John stumbles upon a crucial piece of evidence that challenges everything he believed about the case.", - "setting": "A dim archive room at the precinct.", - "timing": "After hours, late night.", - "imperatives": "Introduce the evidence, seed the personal connection, and raise immediate stakes.", - "storybeats": [ - { - "sequence": 0, - "storybeat_id": "beat_aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" - } - ] - }, - { - "id": "moment_002", - "summary": "The tense confrontation.", - "synopsis": "In a high-stakes interrogation, John confronts a suspect whose ambiguous alibi deepens the mystery.", - "setting": "An interrogation room lit by a single overhead lamp.", - "timing": "The next morning.", - "imperatives": "Escalate conflict, undermine assumptions, and tease a larger conspiracy.", - "storybeats": [ - { - "sequence": 0, - "storybeat_id": "beat_aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee" - } - ] - } - ] - } - } - ] - } -} -``` +- `/docs/terminology/10.dramatica-translation.md` +- `/examples/example-mapping.json` diff --git a/examples/anora.json b/examples/anora.json index 731d5c8..0ef6c64 100644 --- a/examples/anora.json +++ b/examples/anora.json @@ -1,228 +1,183 @@ { + "schema_version": "1.2.0", "story": { - "id": "af3b3394-1405-4236-befc-b8c869ef6059", + "id": "story_anora_2026", "title": "Anora", - "genre": "the genre", - "logline": "the logline", - "created_at": "2025-01-03T20:55:13.000000Z" - }, - "narratives": [ - { - "id": "7904027e-291a-44cf-a46f-4a6305894601", - "title": "Anora", - "subtext": { - "perspectives": { - "they": [ + "genre": "Drama", + "logline": "A young dancer's marriage to a wealthy heir puts her at the center of a family power struggle.", + "created_at": "2025-01-03T20:55:13Z", + "narratives": [ + { + "id": "narrative_anora_central", + "title": "Central Narrative", + "subtext": { + "perspectives": [ { - "id": "de74d6c4-7828-48fd-904f-b945ee2c5923", + "id": "perspective_anora_mc", + "author_structural_pov": "i", + "summary": "Ani", + "storytelling": "Ani fights to preserve dignity and agency while others attempt to define her future." + }, + { + "id": "perspective_anora_ic", + "author_structural_pov": "you", + "summary": "Igor", + "storytelling": "Igor pressures Ani to accept a pragmatic view of survival inside a coercive system." + }, + { + "id": "perspective_anora_os", "author_structural_pov": "they", - "summary": "Navigating the high-stakes world of Russian-oligarchy family dynamics", - "storytelling": "The story revolves around Ani's whirlwind journey through the dangerous, high-stakes world of the Zakharov family. Vanya's reckless immaturity and the family's power plays collide with Ani's determination to carve out her own survival in the face of manipulation, threats, and violence. The conflict escalates as Ani fights to maintain her independence amidst the chaos of annulments, bribes, and emotional betrayals." + "summary": "Zakharov family conflict", + "storytelling": "Competing interests collide around money, image, and control of the marriage." + }, + { + "id": "perspective_anora_rs", + "author_structural_pov": "we", + "summary": "Ani and Igor", + "storytelling": "Their relationship shifts from antagonism to uneasy mutual recognition." } ], - "i": [ + "players": [ { - "id": "c6d78240-f6dd-4b6f-8157-387a0fc26704", - "author_structural_pov": "i", - "summary": "Ani", - "storytelling": "Ani is a young woman struggling to survive in a world that sees her as disposable. As she navigates her way through stripping, eloping with a reckless rich boy, and facing the power of his family, Ani confronts her own hopes and fears for the future. Her fight is grounded in the desire to be seen as more than just a commodity, but as a person with value and agency." + "id": "player_anora_ani", + "name": "Anora Mikheeva", + "role": "Main Character", + "visual": "A young dancer with a confident public persona.", + "audio": "Quick, sharp, and defensive when cornered.", + "summary": "A protagonist trying to hold onto self-worth under pressure.", + "storytelling": "Ani resists being reduced to a bargaining chip.", + "perspectives": [ + { + "perspective_id": "perspective_anora_mc" + } + ] + }, + { + "id": "player_anora_igor", + "name": "Igor", + "role": "Influence Character", + "visual": "Reserved enforcer with controlled body language.", + "audio": "Low, economical speech.", + "summary": "A pressure force pushing Ani toward a harsher worldview.", + "storytelling": "Igor challenges Ani's assumptions about freedom and safety.", + "perspectives": [ + { + "perspective_id": "perspective_anora_ic" + } + ] } ], - "you": [ + "dynamics": [ { - "id": "2095e21f-1cdf-495f-a26d-ff2f084032e0", - "author_structural_pov": "you", - "summary": "Igor", - "storytelling": "Igor, a loyal enforcer for the Zakharov family, embodies a chilling mix of pragmatism and intimidation. He challenges Ani\u00e2\u20ac\u2122s sense of agency with his cold demeanor and violent methods but also reveals unexpected moments of humanity that complicate her perception of him. Igor forces Ani to confront the harsh realities of survival in the Zakharov family's world." + "id": "dynamic_anora_outcome", + "dynamic": "story_outcome", + "vector": "success", + "summary": "Ani secures practical freedom from the arrangement.", + "storytelling": "The external conflict resolves in Ani's favor, but not without cost." + }, + { + "id": "dynamic_anora_judgment", + "dynamic": "story_judgment", + "vector": "good", + "summary": "Ani ends with stronger internal self-definition.", + "storytelling": "She leaves with clearer boundaries and restored self-respect." } ], - "we": [ + "storypoints": [ { - "id": "0444eba4-a912-4ac9-9b2d-c1287aec01d1", - "author_structural_pov": "we", - "summary": "Protector/Protectee", - "storytelling": "The bond between Ani and Igor evolves from distrust and aggression to a complicated dynamic of reluctant understanding. As the protector and the protectee, their relationship is fraught with tension, power imbalances, and moments of vulnerability. Ani and Igor\u00e2\u20ac\u2122s interactions explore the fine line between control and care, forcing both to confront their own prejudices and vulnerabilities." + "id": "storypoint_anora_goal", + "appreciation": "Story Goal", + "narrative_function": "Obtaining", + "illustration": "securing independent control over her life", + "summary": "The objective effort centers on escaping coercive control.", + "storytelling": "Ani's conflict focuses on tangible autonomy and legal freedom.", + "perspectives": [ + { + "perspective_id": "perspective_anora_os" + } + ] + }, + { + "id": "storypoint_anora_mc_problem", + "appreciation": "Main Character Problem", + "narrative_function": "Control", + "illustration": "forcing outcomes in unpredictable situations", + "summary": "Ani over-relies on controlling every interaction.", + "storytelling": "Her defensive control tactics escalate pressure and conflict.", + "perspectives": [ + { + "perspective_id": "perspective_anora_mc" + } + ] + } + ], + "storybeats": [ + { + "id": "beat_anora_signpost_1", + "scope": "signpost", + "sequence": 1, + "signpost": 1, + "throughline": "Main Character", + "narrative_function": "Present", + "summary": "Ani experiences the immediate thrill and danger of rapid escalation.", + "storytelling": "The marriage appears to offer escape but quickly reveals hidden constraints.", + "perspectives": [ + { + "perspective_id": "perspective_anora_mc" + } + ] + }, + { + "id": "beat_anora_progression_3", + "scope": "progression", + "sequence": 3, + "signpost": 1, + "throughline": "Objective Story", + "narrative_function": "Learning", + "summary": "The family applies escalating leverage to force compliance.", + "storytelling": "Each negotiation reveals deeper asymmetries in power and intent.", + "perspectives": [ + { + "perspective_id": "perspective_anora_os" + } + ] } ] }, - "players": [ - { - "id": "812f9f71-29b6-49e0-983a-60ecce5809cc", - "name": "Anora \"Ani\" Mikheeva", - "role": "a high-priced stripper at the Headquarters strip club", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "", - "elements": [ - { - "element": "Uncontrolled", - "storytelling": "" - } - ], - "perspectives": { - "perspective_id": "d80805bf-073b-4ea5-985c-ffa16e697d84" - } - }, - { - "id": "aee134eb-a88e-4f5e-8aec-ec5c60b7006e", - "name": "Igor", - "role": "a Russian henchman hired by Toros to look after Vanya", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "", - "elements": [ - { - "element": "Control", - "storytelling": "" - } - ], - "perspectives": { - "perspective_id": "3fc05215-ab5c-4c1a-84d8-9a3dd672cb53" - } - } - ], - "storypoints": [ - { - "id": "7b7a431e-0f5a-4a3e-a92d-2a22e4a5f23d", - "context": "Premise", - "appreciation": "Subjective Premise", - "narrative_function": "Uncontrolled", - "illustration": "being in a disorganized group", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "d2a170ac-4cf5-49d3-a770-761238800f64" - } - }, - { - "id": "b0112475-0156-4778-a19a-e1dc271a4612", - "context": "Premise", - "appreciation": "Objective Premise", - "narrative_function": "Self Interest", - "illustration": "thinking about one's own interests", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "89706d68-c599-4846-a821-e39d3c05753d" - } - }, - { - "id": "ea9670d5-02fb-4199-8f6d-f7d8460d90fd", - "context": "Premise", - "appreciation": "Subjective Premise Balance", - "narrative_function": "Control", - "illustration": "living controlled by attachments", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "be676cc8-2f9c-45b0-b57a-5f91691f676d" - } - }, - { - "id": "a762d2bf-73e7-46cf-9980-4d1e18f2c6c5", - "context": "Objective Story", - "appreciation": "Story Goal", - "narrative_function": "Obtaining", - "illustration": "obtaining freedom", - "summary": "", - "storytelling": "The Story Goal of Obtaining manifests in Ani's relentless pursuit of agency and self-worth in a world that constantly seeks to strip her of both. Ani's journey is fraught with external and internal conflict as she battles the Zakharov family's manipulative power plays and Vanya's reckless immaturity, all while trying to secure her own survival and independence. Her struggle to \"obtain\" is not just about material survival\u00e2\u20ac\u201dthough that is a pressing concern\u00e2\u20ac\u201dbut about achieving recognition as a person of value in a world that commodifies her. This intention drives her to make bold, often dangerous choices, such as eloping with Vanya or standing up to the family's threats, even when the odds are stacked against her. Ani's growth is marked by her increasing ability to assert her own desires and boundaries, refusing to be a pawn in the Zakharov family's games. The tension between her need to obtain control over her life and the forces trying to dominate her creates a gripping narrative of resilience and self-determination.", - "perspectives": { - "perspective_id": "31fe11ad-9699-4b5f-86da-7fce127eb974" - } - }, - { - "id": "6a9120b5-abbc-47be-9eb7-064dedafcca6", - "context": "Objective Story", - "appreciation": "Story Consequence", - "narrative_function": "Becoming", - "illustration": "becoming someone else", - "summary": "", - "storytelling": "The sensation of overwhelm in this story stems from Ani's struggle with \"Becoming\"\u00e2\u20ac\u201dthe pressure to transform into someone she is not in order to survive the Zakharov family's manipulative world. As Ani fights to obtain her freedom, she is constantly forced to adapt, shapeshift, and play roles dictated by the powerful forces around her. The overwhelming nature of this conflict manifests in moments where Ani feels herself losing her identity, such as when she must feign loyalty to Vanya despite his recklessness or when she is coerced into navigating the family's dangerous schemes. Each compromise Ani makes to stay alive and protect herself chips away at her sense of self, leaving her questioning who she is becoming in the process. The weight of these transformations\u00e2\u20ac\u201dbeing seen as a pawn, a trophy, or a threat\u00e2\u20ac\u201dclashes with her deep desire to be valued as an individual, creating a suffocating tension that drives her to the brink of emotional collapse. This internal battle between survival and selfhood defines her overwhelming journey.", - "perspectives": { - "perspective_id": "454be6be-413b-4b75-9488-528fdcdced82" - } - }, - { - "id": "040258a2-b6d0-4f14-ad53-10c3ab02892f", - "context": "Main Character", - "appreciation": "Problem", - "narrative_function": "Control", - "illustration": "someone being controlled", - "summary": "", - "storytelling": "Ani's MC Condition of Control is reflected in her constant struggle to assert agency over her life in a world that seeks to dominate and define her. Her work as a stripper places her in an environment where others attempt to control her body and identity, while her relationship with the reckless rich boy introduces a new layer of manipulation as his family exerts their influence to maintain their power and status. Ani's journey is marked by her attempts to wrest control back from these external forces, often clashing with societal expectations and the oppressive systems around her. This condition also manifests internally, as Ani grapples with her own fears of losing control over her future and succumbing to the roles others impose on her. Her growth is driven by her ability to redefine control\u00e2\u20ac\u201dnot as domination, but as self-determination\u00e2\u20ac\u201dultimately finding strength in her own choices and reclaiming her sense of worth.", - "perspectives": { - "perspective_id": "1e4d10e2-9025-4015-ade6-7c42fcbe896d" - } - }, - { - "id": "65bdce43-852e-4a5c-be4f-4ea623507257", - "context": "Main Character", - "appreciation": "Solution", - "narrative_function": "Uncontrolled", - "illustration": "abandoning", - "summary": "", - "storytelling": "Ani's journey revolves around her struggle with the Condition of Control, as she is constantly manipulated by societal expectations, the rich boy she elopes with, and the oppressive power of his family. At first, Ani fights to assert her agency within these constraints, believing she can wrest control of her life by playing within the rules of those who dominate her. However, her transformative Revision to Abandon occurs when she realizes that true freedom cannot be achieved by clinging to the systems and relationships that seek to control her.This shift is catalyzed by a moment of profound betrayal or disillusionment\u00e2\u20ac\u201dperhaps the rich boy's family uses her as a scapegoat for a scandal, or she discovers he views her as a trophy rather than an equal partner. In abandoning her need to control the narrative others have imposed on her, Ani chooses to walk away from the toxic dynamics entirely, even if it means starting over with nothing. This act of relinquishing control paradoxically grants her the agency she has been seeking, as she begins to define her worth on her own terms. By the end of the story, Ani finds a balance between self-reliance and vulnerability, embracing a life where she no longer seeks validation from those who once sought to dominate her.", - "perspectives": { - "perspective_id": "cee70951-e8fb-4147-9637-8dda6285d468" - } - }, - { - "id": "8abcf5c1-1dce-49c4-ba4b-cac6611ed43a", - "context": "Influence Character", - "appreciation": "Problem", - "narrative_function": "Consider", - "illustration": "considering someone's options", - "summary": "", - "storytelling": "Igor\u00e2\u20ac\u2122s OC Condition of \"Consider\" manifests in his unyielding focus on the Zakharov family's interests, refusing to entertain any perspective outside of their survival and dominance. His cold pragmatism and violent methods force Ani to confront her own tendency to avoid hard truths about her circumstances. Igor\u00e2\u20ac\u2122s refusal to consider alternatives\u00e2\u20ac\u201dwhether it\u00e2\u20ac\u2122s sparing someone\u00e2\u20ac\u2122s life or deviating from orders\u00e2\u20ac\u201dcreates a stark contrast to Ani\u00e2\u20ac\u2122s growing desire for agency and self-worth. However, his rare moments of humanity, such as a fleeting act of mercy or a begrudging acknowledgment of Ani\u00e2\u20ac\u2122s resilience, challenge her to see the complexity in even the most brutal figures. This dynamic pushes Ani to reconcile her own survival instincts with her longing to be more than a pawn, ultimately driving her to claim her agency in a world that demands submission. Igor\u00e2\u20ac\u2122s unwavering focus on the Zakharov family\u00e2\u20ac\u2122s survival becomes the mirror through which Ani must decide what she is willing to fight for\u00e2\u20ac\u201dand at what cost.", - "perspectives": { - "perspective_id": "2c2a096a-e948-4da8-8e5c-51fd8d3a64ee" - } - }, - { - "id": "11a36847-13c4-447e-ae7a-373eca54c5bb", - "context": "Influence Character", - "appreciation": "Evolution", - "narrative_function": "Consider", - "illustration": "being considerate", - "summary": "", - "storytelling": "Igor\u00e2\u20ac\u2122s reaffirmed motivation of \"Consider\" manifests in a pivotal moment where his unexpected humanity shines through, forcing Ani to reevaluate her perception of him and, by extension, her own approach to survival. Despite his violent role within the Zakharov family, Igor demonstrates a profound, albeit quiet, consideration for Ani\u00e2\u20ac\u2122s plight\u00e2\u20ac\u201dperhaps by subtly ensuring her safety during a dangerous encounter or offering her a piece of advice that could save her life. This act of consideration, while consistent with his original motivation, challenges Ani to see beyond her hardened view of the world and recognize that even in the darkest corners, there are shades of complexity. Igor\u00e2\u20ac\u2122s actions push Ani to confront her own agency, urging her to consider not just how she survives, but how she defines her worth and humanity in a world that seeks to strip it away.", - "perspectives": { - "perspective_id": "3be4c7ae-fc4b-4888-a6b3-9730f0306c58" - } - }, - { - "id": "4d9d77a4-ea43-40b3-b3e1-253905156b08", - "context": "Main Character", - "appreciation": "Pivotal Element", - "narrative_function": "Uncontrolled", - "illustration": "being wild", - "summary": "Ani argues that embracing a \"wild and crazy\" lifestyle is a powerful act of reclaiming agency and individuality in a dehumanizing world, challenging societal expectations and asserting her worth.", - "storytelling": "Ani\u00e2\u20ac\u2122s argument centers on the idea that embracing a \"wild and crazy\" approach to life is sometimes the only way to assert one\u00e2\u20ac\u2122s humanity in a world that dehumanizes and commodifies people. She contends that by taking risks\u00e2\u20ac\u201dwhether it\u00e2\u20ac\u2122s stripping to survive, eloping with a reckless rich boy, or standing up to his powerful family\u00e2\u20ac\u201dshe is reclaiming her agency and refusing to be boxed into society\u00e2\u20ac\u2122s expectations. Ani argues that living boldly, even chaotically, is a form of resistance against a system that sees her as disposable. Her actions, though unconventional, are a declaration that she is more than a product of her circumstances; she is a person with dreams, fears, and the right to define her own worth.Through her journey, Ani demonstrates that being \"wild and crazy\" is not about recklessness for its own sake, but about refusing to conform to a world that tries to strip her of her individuality. She uses her audacity to challenge the power structures around her, forcing others to see her as a person rather than a commodity. In doing so, Ani makes a compelling case that sometimes, the only way to survive\u00e2\u20ac\u201dand thrive\u00e2\u20ac\u201dis to embrace the chaos and carve out a space where one\u00e2\u20ac\u2122s voice and value cannot be ignored.", - "perspectives": { - "perspective_id": "29ec7f82-057c-4df2-a429-1df8f2f7d609" + "storytelling": { + "overviews": [ + { + "id": "overview_anora_logline", + "label": "logline", + "summary": "A fast-moving relationship drama about power, class, and agency.", + "storytelling": "A character-driven narrative where each turning point reframes who has leverage." + }, + { + "id": "overview_anora_genre", + "label": "genre_dynamics", + "summary": "Romantic drama with pressure-cooker social conflict.", + "storytelling": "The tone shifts from impulsive romance to coercive family confrontation." } - }, - { - "id": "3f5008c7-fd22-4903-adeb-1219bc77092c", - "context": "Influence Character", - "appreciation": "Pivotal Element", - "narrative_function": "Control", - "illustration": "keeping a group under control", - "summary": "Igor illustrates that in the brutal world of the Zakharov family's criminal empire, being considerate is a strategic strength that fosters loyalty and survival, challenging Ani's views on morality and power.", - "storytelling": "Igor makes a compelling argument for the value of being considerate, even in a brutal and unforgiving world like the Zakharov family's criminal empire. He demonstrates that consideration is not a weakness but a calculated strength, one that can foster loyalty and ensure survival. For example, while his violent methods often leave Ani questioning her own agency, Igor occasionally shows unexpected kindness\u00e2\u20ac\u201dperhaps sparing a life when it serves no purpose to take it or offering Ani advice that helps her navigate the treacherous dynamics of their world. These moments of humanity reveal that even in a world ruled by power and fear, being considerate can be a tool for influence and control. Igor argues, through his actions, that understanding others' needs and vulnerabilities can be just as effective as brute force, forcing Ani to reevaluate her assumptions about morality and survival.", - "perspectives": { - "perspective_id": "d2d13bd3-f669-4968-872b-0f8d16704b0a" + ], + "moments": [ + { + "id": "moment_anora_01", + "summary": "A sudden marriage changes the stakes.", + "synopsis": "Ani's choice creates immediate conflict with a wealthy family determined to reverse it.", + "setting": "Las Vegas and later New York.", + "timing": "Early story escalation.", + "imperatives": "Establish desire, leverage, and first consequences.", + "audience_experiential_pov": "third_person_limited", + "storybeats": [ + { + "sequence": 0, + "storybeat_id": "beat_anora_signpost_1" + } + ] } - } - ], - "storybeats": [] - }, - "storytelling": { - "overviews": [], - "moments": [] + ] + } } - } - ] -} \ No newline at end of file + ] + } +} diff --git a/examples/invalid/signpost-sequence-out-of-range.json b/examples/invalid/signpost-sequence-out-of-range.json new file mode 100644 index 0000000..176ac05 --- /dev/null +++ b/examples/invalid/signpost-sequence-out-of-range.json @@ -0,0 +1,105 @@ +{ + "schema_version": "1.2.0", + "story": { + "id": "story_invalid_001", + "title": "Invalid Signpost Sequence", + "genre": "Test", + "logline": "Used to assert that signpost sequences are bounded.", + "created_at": "2026-02-07T00:00:00Z", + "narratives": [ + { + "id": "narrative_invalid_001", + "title": "Validation Case", + "subtext": { + "perspectives": [ + { + "id": "perspective_invalid_001", + "author_structural_pov": "i", + "summary": "Test POV", + "storytelling": "Test perspective" + } + ], + "players": [ + { + "id": "player_invalid_001", + "name": "Test Player", + "role": "Main Character", + "visual": "", + "audio": "", + "summary": "", + "storytelling": "", + "perspectives": [ + { + "perspective_id": "perspective_invalid_001" + } + ] + } + ], + "dynamics": [ + { + "id": "dynamic_invalid_001", + "dynamic": "story_outcome", + "vector": "success", + "summary": "", + "storytelling": "" + } + ], + "storypoints": [ + { + "id": "storypoint_invalid_001", + "appreciation": "Story Goal", + "narrative_function": "Obtaining", + "illustration": "", + "summary": "", + "storytelling": "", + "perspectives": [ + { + "perspective_id": "perspective_invalid_001" + } + ] + } + ], + "storybeats": [ + { + "id": "beat_invalid_001", + "scope": "signpost", + "sequence": 7, + "narrative_function": "Past", + "summary": "This should fail.", + "storytelling": "Signpost sequence exceeds allowed max.", + "perspectives": [ + { + "perspective_id": "perspective_invalid_001" + } + ] + } + ] + }, + "storytelling": { + "overviews": [ + { + "label": "logline", + "summary": "", + "storytelling": "" + } + ], + "moments": [ + { + "summary": "", + "synopsis": "", + "setting": "", + "timing": "", + "imperatives": "", + "storybeats": [ + { + "sequence": 0, + "storybeat_id": "beat_invalid_001" + } + ] + } + ] + } + } + ] + } +} diff --git a/examples/legacy/anora-legacy.json b/examples/legacy/anora-legacy.json new file mode 100644 index 0000000..731d5c8 --- /dev/null +++ b/examples/legacy/anora-legacy.json @@ -0,0 +1,228 @@ +{ + "story": { + "id": "af3b3394-1405-4236-befc-b8c869ef6059", + "title": "Anora", + "genre": "the genre", + "logline": "the logline", + "created_at": "2025-01-03T20:55:13.000000Z" + }, + "narratives": [ + { + "id": "7904027e-291a-44cf-a46f-4a6305894601", + "title": "Anora", + "subtext": { + "perspectives": { + "they": [ + { + "id": "de74d6c4-7828-48fd-904f-b945ee2c5923", + "author_structural_pov": "they", + "summary": "Navigating the high-stakes world of Russian-oligarchy family dynamics", + "storytelling": "The story revolves around Ani's whirlwind journey through the dangerous, high-stakes world of the Zakharov family. Vanya's reckless immaturity and the family's power plays collide with Ani's determination to carve out her own survival in the face of manipulation, threats, and violence. The conflict escalates as Ani fights to maintain her independence amidst the chaos of annulments, bribes, and emotional betrayals." + } + ], + "i": [ + { + "id": "c6d78240-f6dd-4b6f-8157-387a0fc26704", + "author_structural_pov": "i", + "summary": "Ani", + "storytelling": "Ani is a young woman struggling to survive in a world that sees her as disposable. As she navigates her way through stripping, eloping with a reckless rich boy, and facing the power of his family, Ani confronts her own hopes and fears for the future. Her fight is grounded in the desire to be seen as more than just a commodity, but as a person with value and agency." + } + ], + "you": [ + { + "id": "2095e21f-1cdf-495f-a26d-ff2f084032e0", + "author_structural_pov": "you", + "summary": "Igor", + "storytelling": "Igor, a loyal enforcer for the Zakharov family, embodies a chilling mix of pragmatism and intimidation. He challenges Ani\u00e2\u20ac\u2122s sense of agency with his cold demeanor and violent methods but also reveals unexpected moments of humanity that complicate her perception of him. Igor forces Ani to confront the harsh realities of survival in the Zakharov family's world." + } + ], + "we": [ + { + "id": "0444eba4-a912-4ac9-9b2d-c1287aec01d1", + "author_structural_pov": "we", + "summary": "Protector/Protectee", + "storytelling": "The bond between Ani and Igor evolves from distrust and aggression to a complicated dynamic of reluctant understanding. As the protector and the protectee, their relationship is fraught with tension, power imbalances, and moments of vulnerability. Ani and Igor\u00e2\u20ac\u2122s interactions explore the fine line between control and care, forcing both to confront their own prejudices and vulnerabilities." + } + ] + }, + "players": [ + { + "id": "812f9f71-29b6-49e0-983a-60ecce5809cc", + "name": "Anora \"Ani\" Mikheeva", + "role": "a high-priced stripper at the Headquarters strip club", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "", + "elements": [ + { + "element": "Uncontrolled", + "storytelling": "" + } + ], + "perspectives": { + "perspective_id": "d80805bf-073b-4ea5-985c-ffa16e697d84" + } + }, + { + "id": "aee134eb-a88e-4f5e-8aec-ec5c60b7006e", + "name": "Igor", + "role": "a Russian henchman hired by Toros to look after Vanya", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "", + "elements": [ + { + "element": "Control", + "storytelling": "" + } + ], + "perspectives": { + "perspective_id": "3fc05215-ab5c-4c1a-84d8-9a3dd672cb53" + } + } + ], + "storypoints": [ + { + "id": "7b7a431e-0f5a-4a3e-a92d-2a22e4a5f23d", + "context": "Premise", + "appreciation": "Subjective Premise", + "narrative_function": "Uncontrolled", + "illustration": "being in a disorganized group", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "d2a170ac-4cf5-49d3-a770-761238800f64" + } + }, + { + "id": "b0112475-0156-4778-a19a-e1dc271a4612", + "context": "Premise", + "appreciation": "Objective Premise", + "narrative_function": "Self Interest", + "illustration": "thinking about one's own interests", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "89706d68-c599-4846-a821-e39d3c05753d" + } + }, + { + "id": "ea9670d5-02fb-4199-8f6d-f7d8460d90fd", + "context": "Premise", + "appreciation": "Subjective Premise Balance", + "narrative_function": "Control", + "illustration": "living controlled by attachments", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "be676cc8-2f9c-45b0-b57a-5f91691f676d" + } + }, + { + "id": "a762d2bf-73e7-46cf-9980-4d1e18f2c6c5", + "context": "Objective Story", + "appreciation": "Story Goal", + "narrative_function": "Obtaining", + "illustration": "obtaining freedom", + "summary": "", + "storytelling": "The Story Goal of Obtaining manifests in Ani's relentless pursuit of agency and self-worth in a world that constantly seeks to strip her of both. Ani's journey is fraught with external and internal conflict as she battles the Zakharov family's manipulative power plays and Vanya's reckless immaturity, all while trying to secure her own survival and independence. Her struggle to \"obtain\" is not just about material survival\u00e2\u20ac\u201dthough that is a pressing concern\u00e2\u20ac\u201dbut about achieving recognition as a person of value in a world that commodifies her. This intention drives her to make bold, often dangerous choices, such as eloping with Vanya or standing up to the family's threats, even when the odds are stacked against her. Ani's growth is marked by her increasing ability to assert her own desires and boundaries, refusing to be a pawn in the Zakharov family's games. The tension between her need to obtain control over her life and the forces trying to dominate her creates a gripping narrative of resilience and self-determination.", + "perspectives": { + "perspective_id": "31fe11ad-9699-4b5f-86da-7fce127eb974" + } + }, + { + "id": "6a9120b5-abbc-47be-9eb7-064dedafcca6", + "context": "Objective Story", + "appreciation": "Story Consequence", + "narrative_function": "Becoming", + "illustration": "becoming someone else", + "summary": "", + "storytelling": "The sensation of overwhelm in this story stems from Ani's struggle with \"Becoming\"\u00e2\u20ac\u201dthe pressure to transform into someone she is not in order to survive the Zakharov family's manipulative world. As Ani fights to obtain her freedom, she is constantly forced to adapt, shapeshift, and play roles dictated by the powerful forces around her. The overwhelming nature of this conflict manifests in moments where Ani feels herself losing her identity, such as when she must feign loyalty to Vanya despite his recklessness or when she is coerced into navigating the family's dangerous schemes. Each compromise Ani makes to stay alive and protect herself chips away at her sense of self, leaving her questioning who she is becoming in the process. The weight of these transformations\u00e2\u20ac\u201dbeing seen as a pawn, a trophy, or a threat\u00e2\u20ac\u201dclashes with her deep desire to be valued as an individual, creating a suffocating tension that drives her to the brink of emotional collapse. This internal battle between survival and selfhood defines her overwhelming journey.", + "perspectives": { + "perspective_id": "454be6be-413b-4b75-9488-528fdcdced82" + } + }, + { + "id": "040258a2-b6d0-4f14-ad53-10c3ab02892f", + "context": "Main Character", + "appreciation": "Problem", + "narrative_function": "Control", + "illustration": "someone being controlled", + "summary": "", + "storytelling": "Ani's MC Condition of Control is reflected in her constant struggle to assert agency over her life in a world that seeks to dominate and define her. Her work as a stripper places her in an environment where others attempt to control her body and identity, while her relationship with the reckless rich boy introduces a new layer of manipulation as his family exerts their influence to maintain their power and status. Ani's journey is marked by her attempts to wrest control back from these external forces, often clashing with societal expectations and the oppressive systems around her. This condition also manifests internally, as Ani grapples with her own fears of losing control over her future and succumbing to the roles others impose on her. Her growth is driven by her ability to redefine control\u00e2\u20ac\u201dnot as domination, but as self-determination\u00e2\u20ac\u201dultimately finding strength in her own choices and reclaiming her sense of worth.", + "perspectives": { + "perspective_id": "1e4d10e2-9025-4015-ade6-7c42fcbe896d" + } + }, + { + "id": "65bdce43-852e-4a5c-be4f-4ea623507257", + "context": "Main Character", + "appreciation": "Solution", + "narrative_function": "Uncontrolled", + "illustration": "abandoning", + "summary": "", + "storytelling": "Ani's journey revolves around her struggle with the Condition of Control, as she is constantly manipulated by societal expectations, the rich boy she elopes with, and the oppressive power of his family. At first, Ani fights to assert her agency within these constraints, believing she can wrest control of her life by playing within the rules of those who dominate her. However, her transformative Revision to Abandon occurs when she realizes that true freedom cannot be achieved by clinging to the systems and relationships that seek to control her.This shift is catalyzed by a moment of profound betrayal or disillusionment\u00e2\u20ac\u201dperhaps the rich boy's family uses her as a scapegoat for a scandal, or she discovers he views her as a trophy rather than an equal partner. In abandoning her need to control the narrative others have imposed on her, Ani chooses to walk away from the toxic dynamics entirely, even if it means starting over with nothing. This act of relinquishing control paradoxically grants her the agency she has been seeking, as she begins to define her worth on her own terms. By the end of the story, Ani finds a balance between self-reliance and vulnerability, embracing a life where she no longer seeks validation from those who once sought to dominate her.", + "perspectives": { + "perspective_id": "cee70951-e8fb-4147-9637-8dda6285d468" + } + }, + { + "id": "8abcf5c1-1dce-49c4-ba4b-cac6611ed43a", + "context": "Influence Character", + "appreciation": "Problem", + "narrative_function": "Consider", + "illustration": "considering someone's options", + "summary": "", + "storytelling": "Igor\u00e2\u20ac\u2122s OC Condition of \"Consider\" manifests in his unyielding focus on the Zakharov family's interests, refusing to entertain any perspective outside of their survival and dominance. His cold pragmatism and violent methods force Ani to confront her own tendency to avoid hard truths about her circumstances. Igor\u00e2\u20ac\u2122s refusal to consider alternatives\u00e2\u20ac\u201dwhether it\u00e2\u20ac\u2122s sparing someone\u00e2\u20ac\u2122s life or deviating from orders\u00e2\u20ac\u201dcreates a stark contrast to Ani\u00e2\u20ac\u2122s growing desire for agency and self-worth. However, his rare moments of humanity, such as a fleeting act of mercy or a begrudging acknowledgment of Ani\u00e2\u20ac\u2122s resilience, challenge her to see the complexity in even the most brutal figures. This dynamic pushes Ani to reconcile her own survival instincts with her longing to be more than a pawn, ultimately driving her to claim her agency in a world that demands submission. Igor\u00e2\u20ac\u2122s unwavering focus on the Zakharov family\u00e2\u20ac\u2122s survival becomes the mirror through which Ani must decide what she is willing to fight for\u00e2\u20ac\u201dand at what cost.", + "perspectives": { + "perspective_id": "2c2a096a-e948-4da8-8e5c-51fd8d3a64ee" + } + }, + { + "id": "11a36847-13c4-447e-ae7a-373eca54c5bb", + "context": "Influence Character", + "appreciation": "Evolution", + "narrative_function": "Consider", + "illustration": "being considerate", + "summary": "", + "storytelling": "Igor\u00e2\u20ac\u2122s reaffirmed motivation of \"Consider\" manifests in a pivotal moment where his unexpected humanity shines through, forcing Ani to reevaluate her perception of him and, by extension, her own approach to survival. Despite his violent role within the Zakharov family, Igor demonstrates a profound, albeit quiet, consideration for Ani\u00e2\u20ac\u2122s plight\u00e2\u20ac\u201dperhaps by subtly ensuring her safety during a dangerous encounter or offering her a piece of advice that could save her life. This act of consideration, while consistent with his original motivation, challenges Ani to see beyond her hardened view of the world and recognize that even in the darkest corners, there are shades of complexity. Igor\u00e2\u20ac\u2122s actions push Ani to confront her own agency, urging her to consider not just how she survives, but how she defines her worth and humanity in a world that seeks to strip it away.", + "perspectives": { + "perspective_id": "3be4c7ae-fc4b-4888-a6b3-9730f0306c58" + } + }, + { + "id": "4d9d77a4-ea43-40b3-b3e1-253905156b08", + "context": "Main Character", + "appreciation": "Pivotal Element", + "narrative_function": "Uncontrolled", + "illustration": "being wild", + "summary": "Ani argues that embracing a \"wild and crazy\" lifestyle is a powerful act of reclaiming agency and individuality in a dehumanizing world, challenging societal expectations and asserting her worth.", + "storytelling": "Ani\u00e2\u20ac\u2122s argument centers on the idea that embracing a \"wild and crazy\" approach to life is sometimes the only way to assert one\u00e2\u20ac\u2122s humanity in a world that dehumanizes and commodifies people. She contends that by taking risks\u00e2\u20ac\u201dwhether it\u00e2\u20ac\u2122s stripping to survive, eloping with a reckless rich boy, or standing up to his powerful family\u00e2\u20ac\u201dshe is reclaiming her agency and refusing to be boxed into society\u00e2\u20ac\u2122s expectations. Ani argues that living boldly, even chaotically, is a form of resistance against a system that sees her as disposable. Her actions, though unconventional, are a declaration that she is more than a product of her circumstances; she is a person with dreams, fears, and the right to define her own worth.Through her journey, Ani demonstrates that being \"wild and crazy\" is not about recklessness for its own sake, but about refusing to conform to a world that tries to strip her of her individuality. She uses her audacity to challenge the power structures around her, forcing others to see her as a person rather than a commodity. In doing so, Ani makes a compelling case that sometimes, the only way to survive\u00e2\u20ac\u201dand thrive\u00e2\u20ac\u201dis to embrace the chaos and carve out a space where one\u00e2\u20ac\u2122s voice and value cannot be ignored.", + "perspectives": { + "perspective_id": "29ec7f82-057c-4df2-a429-1df8f2f7d609" + } + }, + { + "id": "3f5008c7-fd22-4903-adeb-1219bc77092c", + "context": "Influence Character", + "appreciation": "Pivotal Element", + "narrative_function": "Control", + "illustration": "keeping a group under control", + "summary": "Igor illustrates that in the brutal world of the Zakharov family's criminal empire, being considerate is a strategic strength that fosters loyalty and survival, challenging Ani's views on morality and power.", + "storytelling": "Igor makes a compelling argument for the value of being considerate, even in a brutal and unforgiving world like the Zakharov family's criminal empire. He demonstrates that consideration is not a weakness but a calculated strength, one that can foster loyalty and ensure survival. For example, while his violent methods often leave Ani questioning her own agency, Igor occasionally shows unexpected kindness\u00e2\u20ac\u201dperhaps sparing a life when it serves no purpose to take it or offering Ani advice that helps her navigate the treacherous dynamics of their world. These moments of humanity reveal that even in a world ruled by power and fear, being considerate can be a tool for influence and control. Igor argues, through his actions, that understanding others' needs and vulnerabilities can be just as effective as brute force, forcing Ani to reevaluate her assumptions about morality and survival.", + "perspectives": { + "perspective_id": "d2d13bd3-f669-4968-872b-0f8d16704b0a" + } + } + ], + "storybeats": [] + }, + "storytelling": { + "overviews": [], + "moments": [] + } + } + ] +} \ No newline at end of file diff --git a/examples/legacy/the-shawshank-redemption-legacy.json b/examples/legacy/the-shawshank-redemption-legacy.json new file mode 100644 index 0000000..ec56ed2 --- /dev/null +++ b/examples/legacy/the-shawshank-redemption-legacy.json @@ -0,0 +1,2068 @@ +{ + "story": { + "id": "dd488e87-41b5-4927-b5ac-d89561510932", + "title": "The Shawshank Redemption", + "genre": "the genre", + "logline": "the logline", + "created_at": "2023-05-29T21:52:25.000000Z" + }, + "narratives": [ + { + "id": "78adcfde-3a64-443b-b297-3294ff4ed00d", + "title": "The Shawshank Redemption", + "subtext": { + "perspectives": { + "i": [ + { + "id": "2b6380b0-4423-442a-bdbf-4eba7cb4a598", + "author_structural_pov": "i", + "summary": "Ellis \u00e2\u20ac\u0153Red\u00e2\u20ac\u009d Redding", + "storytelling": "Red, a seasoned inmate, carries a profound sense of loyalty and a protective instinct that often puts him at odds with his own survival instincts. His years in the system have made him a pragmatic realist, yet he harbors a quiet hope for redemption that he rarely admits, even to himself." + } + ], + "we": [ + { + "id": "26b4d894-d122-4e84-9d1d-dc4eb15803af", + "author_structural_pov": "we", + "summary": "friendship", + "storytelling": "The friendship between Red and Andy begins as a cautious connection, shaped by the harsh realities of prison life and their contrasting outlooks on hope. As they share stories, advice, and moments of vulnerability, their bond deepens into a mutual reliance that challenges their individual beliefs and fosters a profound sense of trust and understanding." + } + ], + "you": [ + { + "id": "2cc7ab49-abd3-4e77-ad52-8555a653d00d", + "author_structural_pov": "you", + "summary": "Tommy Williams", + "storytelling": "Tommy Williams exudes a brash confidence and a hunger for validation, often embellishing his past exploits to gain respect among the inmates. His impulsive nature and need to prove himself frequently lead him into risky situations, making him both a wildcard and a potential liability in the delicate balance of prison dynamics." + }, + { + "id": "7ce35b24-bef6-4375-ba46-1a6f4abdf658", + "author_structural_pov": "you", + "summary": "Andy Dufresne", + "storytelling": "Andy Dufresne's meticulous and calculated demeanor masks a deep-seated determination to reclaim his autonomy and expose the injustices of the system that wronged him. His quiet, methodical approach to problem-solving often leads him to manipulate situations and people subtly, always keeping his ultimate goal in sight while maintaining an air of unassuming composure." + } + ], + "they": [ + { + "id": "38830cab-af1c-4184-aa54-eb8d027e5621", + "author_structural_pov": "they", + "summary": "Sowing Hope in Shawshank's Brutality", + "storytelling": "Within the oppressive environment of a high-security prison, a misjudged former banker navigates the brutality of institutional life. The system's corruption relies on exploitation and dehumanization, yet small acts of intelligence and camaraderie begin to inspire a resilience among inmates. In this bleak context, the struggle is centered on persisting hope and resisting the crushing force of the institution." + } + ] + }, + "players": [ + { + "id": "d5a5261e-e949-44ec-810b-0e0bae3a43ad", + "name": "Ellis \"Red\" Redding", + "role": "the guy who can get you anything", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Ellis \"Red\" Redding is a crucial player in the story as he is the one who can get anything for anyone in Shawshank. His motivations to support and help those in need make him an important ally for Andy, who needs his help to obtain certain items that will aid in his escape plan. Red's conscience, however, makes him hesitant to take risks that could jeopardize his own safety. Despite this, Red ultimately decides to help Andy in his quest for freedom, which is essential to the story goal of overcoming the injustice of Andy's wrongful imprisonment.", + "elements": [ + { + "element": "Support", + "storytelling": "Ellis \"Red\" Redding is an opportunity supporter." + }, + { + "element": "Help", + "storytelling": "Ellis \"Red\" Redding helps those in Shawshank get what they're looking for." + }, + { + "element": "Conscience", + "storytelling": "Ellis \"Red\" Redding would rather not do something if it means he'll stay safe." + } + ], + "perspectives": { + "perspective_id": "1b58e70f-ad6b-4b13-8423-07f2558d7deb" + } + }, + { + "id": "a0b0262a-127c-4e1a-a5e2-198fbe82931c", + "name": "Andy Dufresne", + "role": "the banker who killed his wife", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "The banker who killed his wife functions as the protagonist of the story, driving the plot forward towards the Story Goal of overcoming the injustice of his wrongful imprisonment. His pursuit of happiness and his ability to get others to think about a different way of being are key to his success in achieving this goal. Despite the many obstacles he faces, the banker's unwavering vision of a brighter future outside of prison gives him the strength to persevere and ultimately achieve his freedom.", + "elements": [ + { + "element": "Oppose", + "storytelling": "Andy Dufresne foments opposition." + }, + { + "element": "Pursuit", + "storytelling": "Andy Dufresne pursues his own happiness." + }, + { + "element": "Consider", + "storytelling": "Andy Dufresne gets others to think about a different way of being." + } + ], + "perspectives": { + "perspective_id": "4525cdca-b0f4-4ddf-aa0c-23a0599d59a1" + } + }, + { + "id": "c8a2691b-5dd6-4535-8a13-2578992f0c1f", + "name": "Warden Samuel Norton", + "role": "the warden of Shawshank Prison", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Warden Samuel Norton functions as the primary antagonist in the story, as he is the one responsible for maintaining the corrupt and oppressive system within Shawshank prison. His motivations to avoid anyone leaving or undermining his work directly conflict with Andy's story goal of overcoming the injustice of his wrongful imprisonment. Norton's actions, such as denying Andy's requests for books and preventing him from receiving a fair trial, serve as obstacles that Andy must overcome in order to achieve his goal of freedom.", + "elements": [ + { + "element": "Avoid", + "storytelling": "Warden Samuel Norton prevents anyone from leaving Shawshank or undermining his work there." + }, + { + "element": "Reconsider", + "storytelling": "Warden Samuel Norton reconsiders a group's behavior, gets others to reconsider, and is always ready to renegotiate to get what he wants." + } + ], + "perspectives": { + "perspective_id": "76258106-f0d3-49fc-8fea-3894f196011b" + } + }, + { + "id": "a8cf74cb-b78a-44ac-aeec-3d5e88b3ca92", + "name": "Heywood", + "role": "a member of Red's gang of long-serving convicts", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Heywood functions in the story as a loyal member of Red's gang who believes in the innocence of Andy. Heywood's faith in Red and the gang, as well as his rationalization of being in prison, provide Andy with a support system that helps him hold on to his vision for a brighter future outside of prison. Heywood's unwavering loyalty to Red and his belief in Andy's innocence ultimately contribute to the eventual realization of Andy's freedom.", + "elements": [ + { + "element": "Faith", + "storytelling": "Heywood believes in Red and the rest of the gang." + }, + { + "element": "Logic", + "storytelling": "Heywood rationalizes being in prison (\"The lawyer screwed me!\")" + } + ], + "perspectives": { + "perspective_id": "0e15fd28-49e4-4b3a-a286-2bc0f9344eb7" + } + }, + { + "id": "38527f5d-cfc2-4b42-988e-1a19acb87db4", + "name": "Byron Hadley", + "role": "the brutal captain of the prison guards", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Byron Hadley functions as a major obstacle to Andy's goal of overcoming the injustice of his wrongful imprisonment. As the brutal captain of the prison guards, Hadley is responsible for enforcing the corrupt and oppressive system that keeps Andy and the other inmates trapped in Shawshank. Hadley's motivations to hinder and embrace immediate benefits make him a formidable opponent for Andy, as he is willing to use violence and intimidation to maintain his power and control over the inmates. Andy must find a way to navigate around Hadley's influence and find allies who can help him achieve his goal of freedom and justice.", + "elements": [ + { + "element": "Hinder", + "storytelling": "Byron Hadley deters everyone in Shawshank." + }, + { + "element": "Temptation", + "storytelling": "Byron Hadley embraces immediate benefits despite possible future negatives." + } + ], + "perspectives": { + "perspective_id": "4e5c1b29-edac-4384-b8af-6ab8821f6313" + } + }, + { + "id": "6f6249b5-32bb-4499-a6c8-af9a0c7519f9", + "name": "Tommy Williams", + "role": "a young convict imprisoned for burglary", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Tommy Williams functions in the story as a catalyst for Andy's eventual freedom. His disbelief in Andy's conviction leads him to reveal crucial information that ultimately proves Andy's innocence. Without Tommy's actions, Andy may have never been able to hold on to his vision for the future and overcome the injustice of his false imprisonment.The problem is an innocent man has been sent to prison.", + "elements": [ + { + "element": "Disbelief", + "storytelling": "Tommy Williams finds Andy's conviction false." + } + ], + "perspectives": { + "perspective_id": "a3c9d949-3202-42f4-b064-50fe150c5376" + } + }, + { + "id": "9c829dac-38c7-4956-8724-21be7c6a7e6d", + "name": "Brooks Hatlen", + "role": "the elderly prison librarian", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Brooks Hatlen functions in the story as a symbol of the fear and hopelessness that can come with a life sentence in prison. As the elderly prison librarian, he has spent most of his life behind bars and has become institutionalized to the point where he is scared of life on the outside. His motivations are driven by this fear, and he does not want to be free. His character serves as a contrast to Andy's unwavering hope for a better future, highlighting the difficulty of maintaining such a vision in the face of overwhelming adversity.", + "elements": [ + { + "element": "Feeling", + "storytelling": "Brooks Hatlen is scared of life on the outside." + }, + { + "element": "Uncontrolled", + "storytelling": "Brooks Hatlen does not want to be free." + } + ], + "perspectives": { + "perspective_id": "421ce6d6-8699-449e-90aa-34819d3b1c80" + } + }, + { + "id": "6517477f-df47-4f39-bbf9-f04a0d432b9c", + "name": "Bogs Diamond", + "role": "the head of \"the Sisters\" gang and a prison rapist", + "visual": "", + "audio": "", + "bio": "", + "storytelling": "Bogs Diamond functions as a major obstacle to Andy's story goal of overcoming the injustice of his wrongful imprisonment. As the head of \"the Sisters\" gang and a prison rapist, Bogs exerts control over Andy and others in his gang, making it difficult for Andy to maintain hope and hold on to his vision of a brighter future outside of prison. Bogs' actions and influence create a constant threat to Andy's safety and well-being, making it even more challenging for him to achieve his ultimate goal of freedom.", + "elements": [ + { + "element": "Control", + "storytelling": "Bogs Diamond controls Andy and others in his gang." + } + ], + "perspectives": { + "perspective_id": "62b408be-b2d1-4c4e-8981-22b679b4f8fb" + } + } + ], + "storypoints": [ + { + "id": "7e4bdd2d-028b-42c5-a149-73174d88448a", + "context": "Objective Story", + "appreciation": "Story Goal", + "narrative_function": "Future", + "illustration": "seeking a group's future", + "summary": "Andy must hold onto a vision of a brighter future to overcome the injustice of being wrongfully imprisoned and eventually be free.", + "storytelling": "When Andy is declared guilty, an injustice has been served and an innocent man is sentenced to serve the rest of his life in Shawshank prison. In order to overcome this injustice, Andy must hold on to this vision that a brighter future exists for him outside of the walls of prison--no matter how impossible or desperate such a future seems. If he can hold on to this vision for the future, then he'll eventually be free to live the rest of his life the way he wants to live it.", + "perspectives": { + "perspective_id": "1be74e7a-2523-488c-bbd5-9af5a1df6c95" + } + }, + { + "id": "88662708-fdd8-4570-971d-a76ff1f8278c", + "context": "Objective Story", + "appreciation": "Story Consequence", + "narrative_function": "Subconscious", + "illustration": "living in fear", + "summary": "The Warden's alignment with the Story Consequence of Subconscious highlights the importance of achieving the Story Goal of Future, as without it, the inmates would remain trapped in a state of fear and oppression.", + "storytelling": "In The Shawshank Redemption, the Story Consequence of Subconscious (living in fear) can be seen in the way the Warden perpetuates a system of fear and control within the prison. The Warden, as a representative of this consequence, thrives on the inmates' fear and uses it to maintain his power and authority. He manipulates the prisoners' subconscious fears, such as the fear of punishment, isolation, and hopelessness, to keep them in line and prevent any attempts at challenging the status quo.If the Story Goal of achieving a brighter future is not met, the consequence of living in fear would continue to dominate the lives of the inmates at Shawshank. The Warden would maintain his iron grip on the prison, and the inmates would remain trapped in a cycle of fear and despair, unable to break free from the oppressive environment. This consequence would not only affect Andy but also the other inmates, as they would continue to be subjected to the Warden's cruel and unjust methods of control.The Warden's alignment with the Story Consequence of Subconscious highlights the importance of achieving the Story Goal of Future. Without the hope and vision for a better future, the inmates would remain trapped in a state of fear, unable to escape the Warden's control and the oppressive environment of Shawshank prison. \u00f0\u0178\u008f\u00a2\u00f0\u0178\u201d\u2019", + "perspectives": { + "perspective_id": "d433fdd4-f3f7-4558-8baa-0e8b08d6bb71" + } + }, + { + "id": "6016e469-079a-4e7f-a1d7-642eca1fafc8", + "context": "Main Character", + "appreciation": "Problem", + "narrative_function": "Support", + "illustration": "giving something an endorsement", + "summary": "Red's inability to recognize his true self and his tendency to simply agree with authority keeps him imprisoned in Shawshank despite his attempts to manipulate the parole board.", + "storytelling": "Ellis \"Red\" Redding is an inmate and prison-contraband smuggler serving a life sentence in Shawshank for murdering someone. His motivation to support the rehabilitation he receives at Shawshank only keeps him imprisoned for longer. Attempting to manipulate the parole board by telling them what he thinks they want to hear shows that he truly has not been rehabilitated: Red still can't see his true self. Red's unconscious drive to simply be a \"yes\" man to any problem he runs into keeps him locked up in Shawshank prison.", + "perspectives": { + "perspective_id": "00a5407f-d7d9-47ca-a89c-ef22b504bcc7" + } + }, + { + "id": "a943006d-65c1-4e79-8432-7158b499bfa3", + "context": "Main Character", + "appreciation": "Solution", + "narrative_function": "Oppose", + "illustration": "speaking out against something", + "summary": "Red speaks out against the prison system, showing the parole board he is rehabilitated and is granted parole.", + "storytelling": "In the end, Red abandons his silent endorsement of the prison system and instead, speaks his mind and speaks out against the whole process. \"Rehabilitated? That's a bullshit word, so you just go on ahead and stamp that form there, sonny, and stop wasting my damn time. Truth is, I don't give a shit.\" By expressing his true feelings and thoughts on the matter he shows the parole board that he is truly rehabilitated and that he is no longer just saying what he thinks they want to hear. As a consequence, the board approves his parole and they escort Red out of Shawshank prison.", + "perspectives": { + "perspective_id": "82ef466e-d899-415e-b487-0148b8fb271a" + } + }, + { + "id": "44c7c87a-7576-4fc1-8224-d1479aae89b0", + "context": "Influence Character", + "appreciation": "Problem", + "narrative_function": "Control", + "illustration": "being locked up", + "summary": "Andy's refusal to be controlled inspires Red to question why he isn't doing the same for himself.", + "storytelling": "If there's one thing you don't do, it's try to lock Andy Dusfresne up. Whether it's in Shawshank Prison or at the mercy of \"The Sisters\", Andy refuses to back down. Any attempts to control him are met with equal parts resistance, and it is precisely this drive to fight against control that challenges Red to ask himself why he isn't doing the same for himself.", + "perspectives": { + "perspective_id": "1848b4ba-7cdd-4cc4-bd12-a8d9f55a1399" + } + }, + { + "id": "fce30a1b-856e-4f2f-9680-540d1f972d97", + "context": "Influence Character", + "appreciation": "Evolution", + "narrative_function": "Control", + "illustration": "taking control", + "summary": "Andy regains his agency and inspires Red to do the same, despite the Warden's attempts to take it away.", + "storytelling": "In the end, Andy maintains his resolve and continues to dictate the terms upon which he lives his life. Motivated by the Warden's undying cruelty and attempt to seize every last bit of agency, Andy breaks free of prison and sets a path for a new life. This realignment back towards his initial motivation challenges Red to do the same.", + "perspectives": { + "perspective_id": "28c9fb92-cd9c-4b5b-accb-51d5789a133b" + } + }, + { + "id": "84c3fb8a-2243-43aa-931d-3e3f3c2b42a3", + "context": "Influence Character", + "appreciation": "Pivotal Element", + "narrative_function": "Oppose", + "illustration": "speaking out against someone", + "summary": "Andy Dufresne argues that speaking out against injustice is essential for change, inspiring others to stand up and create a ripple effect of positive transformation.", + "storytelling": "Andy Dufresne's argument is that speaking out against something is necessary in order to bring about change. He shows that by standing up for what is right, even in the face of adversity, it is possible to make a difference. He also shows that by speaking out, it is possible to inspire others to do the same, and to create a ripple effect of positive change.", + "perspectives": { + "perspective_id": "85ce5acf-7e53-44ad-af21-866373b76998" + } + }, + { + "id": "78e47555-6d5b-459b-b5b9-1c6e6625661e", + "context": "Premise", + "appreciation": "Subjective Premise", + "narrative_function": "Support", + "illustration": "endorsing something", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "2e9fd7da-712c-45e6-812c-dee7f5dd67f7" + } + }, + { + "id": "2bc395c8-9c62-4223-9314-d753660ec76a", + "context": "Premise", + "appreciation": "Objective Premise", + "narrative_function": "Future", + "illustration": "securing a better future", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "c0ee2c32-ff7b-4505-868d-8323d47af02d" + } + }, + { + "id": "b0a46825-d91c-4c74-860e-d6266f4bae69", + "context": "Objective Story", + "appreciation": "Issue", + "narrative_function": "Delay", + "illustration": "playing a waiting game", + "summary": "The Shawshank Redemption explores the tension between Delay and Choice, as characters endure hardships and take control of their destinies.", + "storytelling": "In The Shawshank Redemption, the Objective Story Issue of Delay creates conflict by subjecting characters to prolonged periods of waiting and hopelessness, such as lengthy prison sentences, repeated parole denials, and resistance to Andy's efforts to prove his innocence. In contrast, the Counterpoint of Choice highlights moments when characters make decisions that challenge the status quo and break free from the constraints of Delay, such as Andy's secret tunnel, Red's honest parole hearing, and the warden's corrupt choices. Together, these thematic elements of Delay and Choice contribute to a rich and engaging narrative that explores the tension between enduring hardships and taking control of one's destiny.", + "perspectives": { + "perspective_id": "db39ba4d-1343-452b-b2f6-a34b7d48f005" + } + }, + { + "id": "e31290ea-0d8e-42dd-b717-d72d9251de78", + "context": "Objective Story", + "appreciation": "Problem", + "narrative_function": "Support", + "illustration": "showing approval for something", + "summary": "In The Shawshank Redemption, the consequences of supporting a corrupt system create conflict and drive the story's central conflicts.", + "storytelling": "In The Shawshank Redemption, the core Problem element of Support in the OS Throughline creates conflict and motivates problems in the story in several ways:1. The prison system: The inmates and staff at Shawshank Prison are all part of a system that supports and perpetuates injustice and corruption. The Warden and the guards maintain their power by supporting each other and keeping the inmates in line, often through brutal means. This support for the corrupt system creates conflict and suffering for the inmates.2. Andy's wrongful conviction: Andy Dufresne is an innocent man who has been convicted of a crime he didn't commit. The legal system that supported his conviction is flawed, and this support for a wrongful verdict creates the central conflict of the story, as Andy struggles to prove his innocence and regain his freedom.3. Red's institutionalization: Red, the main character, has become institutionalized over his many years in prison. He supports the system by going along with it and saying what he thinks the parole board wants to hear during his hearings. This support for the system keeps him stuck in his situation and unable to truly change.4. Tommy's fate: When Tommy, a young inmate, learns information that could potentially exonerate Andy, he tries to help by sharing this information with the Warden. However, the Warden's support for the corrupt system leads him to silence Tommy, ultimately resulting in Tommy's death. This tragic outcome further emphasizes the destructive nature of supporting a corrupt system.5. Andy's defiance: Throughout the story, Andy challenges the system by finding ways to undermine its authority and expose its corruption. His acts of defiance, such as playing Mozart over the prison loudspeakers and secretly digging a tunnel to escape, are motivated by his refusal to support the unjust system that has imprisoned him.In summary, the core Problem element of Support in The Shawshank Redemption's OS Throughline creates conflict and motivates problems in the story by highlighting the destructive consequences of supporting a corrupt and unjust system. This support leads to suffering and injustice for the characters, and ultimately drives the story's central conflicts.", + "perspectives": { + "perspective_id": "e66a1172-2808-4e38-82bc-fac92409fafe" + } + }, + { + "id": "5f27bae3-a864-416e-bd3a-a3c5e4ceda81", + "context": "Objective Story", + "appreciation": "Solution", + "narrative_function": "Oppose", + "illustration": "opposing authority", + "summary": "In The Shawshank Redemption, the OS Solution of Oppose demonstrates the power of standing up against a corrupt and unjust system, allowing the characters to break free and find redemption.", + "storytelling": "In The Shawshank Redemption, the OS Solution of Oppose (opposing authority) resolves the inequity of conflict for everyone by demonstrating the power of standing up against a corrupt and unjust system. This is evident in several key moments throughout the story:1. Andy's acts of defiance, such as playing Mozart over the prison loudspeakers and secretly digging a tunnel to escape, show that opposing the system can lead to moments of freedom and ultimately, his successful escape. These acts inspire other inmates and challenge the authority of the prison staff.2. The exposure of the Warden's corruption and the subsequent arrest of the corrupt prison staff members demonstrate the power of opposing authority in dismantling a harmful system. This resolution brings justice to those who have suffered under the corrupt regime and paves the way for potential improvements in the prison system.3. Finally, Red's decision to break his parole and follow Andy to Zihuatanejo, Mexico, symbolizes his complete rejection of the system that has held him captive for so long. By choosing to oppose authority and pursue a life of freedom with his friend, Red finds a sense of redemption and a new beginning.In conclusion, the OS Solution of Oppose in The Shawshank Redemption effectively resolves the inequity of conflict for everyone by demonstrating the power of standing up against a corrupt and unjust system. Through acts of defiance, exposure of corruption, and personal growth, the characters are able to break free from the oppressive system and find redemption.", + "perspectives": { + "perspective_id": "601599f4-da26-487c-8e96-32788bc432d7" + } + }, + { + "id": "233b43b5-bc1c-48b9-a821-f4b1371e96f9", + "context": "Objective Story", + "appreciation": "Domain", + "narrative_function": "Universe", + "illustration": "being unjustly imprisoned", + "summary": "In The Shawshank Redemption, the OS Domain of Universe creates a shared source of conflict for all the characters as they struggle to survive and maintain their dignity in a corrupt and oppressive prison system.", + "storytelling": "In The Shawshank Redemption, the OS Domain of Universe (being unjustly imprisoned) defines the source of conflict for everyone in the story as they all experience the effects of this unjust system and the harsh realities of prison life. Here are some examples of how this conflict affects various characters in the story:1. Andy Dufresne (Tim Robbins): As the protagonist, Andy is unjustly imprisoned for a crime he didn't commit. His conflict arises from trying to survive and maintain his dignity in a corrupt and brutal environment, while also seeking a way to prove his innocence.2. Ellis \"Red\" Redding (Morgan Freeman): Red is a long-time inmate and Andy's close friend. His conflict comes from his struggle to adapt to life inside the prison and his eventual realization that he has become institutionalized, making it difficult for him to imagine life outside the prison walls.3. Warden Samuel Norton (Bob Gunton): The warden represents the corrupt and oppressive system that governs the prison. His conflict arises from his desire to maintain control over the inmates and exploit them for his own gain, which ultimately leads to his downfall.4. Captain Byron Hadley (Clancy Brown): Hadley is the cruel and sadistic chief of the prison guards. His conflict comes from his need to assert his authority over the inmates through violence and intimidation, which ultimately backfires when Andy exposes the corruption within the prison.5. Tommy Williams (Gil Bellows): Tommy is a young inmate who befriends Andy and Red. His conflict arises from his desire to turn his life around and help Andy prove his innocence, but he faces the harsh reality of the prison system when he is killed to prevent him from revealing the truth.These examples illustrate how the OS Domain of Universe creates a shared source of conflict for all the characters in The Shawshank Redemption. Each character's individual struggles and experiences are connected to the larger theme of injustice and the impact of the prison system on their lives.", + "perspectives": { + "perspective_id": "caaa9bb4-67d0-4473-884e-c131a8d912f6" + } + }, + { + "id": "d0ce3af2-e550-4f70-8a07-d0de99709709", + "context": "Objective Story", + "appreciation": "Concern", + "narrative_function": "Future", + "illustration": "having no future", + "summary": "In \"The Shawshank Redemption,\" the Objective Story Concern of \"Future\" creates a cohesive narrative that explores the impact of having no future on the characters and their actions, ultimately leading to the resolution of the story's central proble", + "storytelling": "In \"The Shawshank Redemption,\" the Objective Story Concern of \"Future\" (having no future) identifies sources of conflict in the plot for everyone by focusing on the uncertainty and limitations that the characters face due to their imprisonment and the corrupt system they are a part of.For the inmates, like Andy and Red, the concern of having no future is a constant source of conflict as they struggle with the reality of their long sentences and the lack of hope for a better life outside the prison walls. This concern is also evident in their interactions with other inmates, who share similar feelings of despair and hopelessness.For the prison staff, such as Warden Norton and Captain Hadley, the concern of having no future manifests in their desire to maintain control and power over the inmates. They exploit the prisoners for their own gain, fearing that any change in the status quo could threaten their positions and the corrupt system they benefit from.The Objective Story Concern of \"Future\" ties all these individual storylines together, creating a cohesive narrative that explores the impact of having no future on the characters and their actions. As the story progresses, we see how this concern drives the characters to make choices that ultimately lead to the resolution of the story's central problem: Andy's escape and the exposure of the corruption within the prison.", + "perspectives": { + "perspective_id": "7c5284f4-0a0c-440a-bb9a-97d9659b8206" + } + }, + { + "id": "2f0dac7b-0204-4413-98d6-936204ad624e", + "context": "Main Character", + "appreciation": "Domain", + "narrative_function": "Psychology", + "illustration": "being institutionalized", + "summary": "Red, in _The Shawshank Redemption_, is a character deeply affected by the psychological aspect of institutionalization. He's been in prison for so long that it has become his norm, his comfort zone. ", + "storytelling": "Though he tries to act like it doesn't bother him, the truth is that being institutionalized has taken a toll on Red. He's been in prison for so long that he's forgotten what it's like to be outside, to be free. He's become accustomed to the routine and the people inside, and the thought of leaving is both terrifying and exhilarating.", + "perspectives": { + "perspective_id": "260614e8-1ea0-4790-b714-b128c9c55ec0" + } + }, + { + "id": "ebde34be-8fb5-4379-b0b2-2f0589fae7a1", + "context": "Main Character", + "appreciation": "Concern", + "narrative_function": "Becoming", + "illustration": "becoming a changed man", + "summary": "Red is haunted by his past and struggles to take responsibility for his own rehabilitation in order to escape it.", + "storytelling": "Ellis \"Red\" Redding is an inmate who is serving a life sentence for murder. At his parole board hearings, he professes to be a changed man from his experiences is prison, but the truth is\u00e2\u20ac\u201dhe hasn't changed a bit. He's still haunted by the memories of his crime. And these memories make it difficult for him to have any measure of hope, as he is constantly reminded of the person he used to be and the life he took. He is afraid that he will never be able to truly change and that he will always be defined by his past. The only way out for Red is for him to truly change, and to take responsibility for his own rehabilitation.", + "perspectives": { + "perspective_id": "b657b866-8894-4b88-87e2-320d8e303be0" + } + }, + { + "id": "27f0790e-3fd5-4dce-b0f7-7aa93c9dd495", + "context": "Main Character", + "appreciation": "Issue", + "narrative_function": "Rationalization", + "illustration": "covering up something", + "summary": "Ellis 'Red' Redding rationalizes his life sentence for killing a man in a fit of rage by telling himself he is doing his time for the man he killed, but this only serves to keep him in Shawshank longer.", + "storytelling": "Ellis 'Red' Redding knows that he is guilty of the crime he was sentenced for. He killed a man in a fit of rage and he knows that he deserves to be in prison for it. But he also knows that the life sentence he was given is far too harsh. He didn't mean to kill the man and he has been remorseful for it ever since. So he rationalizes his actions by telling himself that he is doing his time for the man he killed. He knows that he can never make up for what he has done, but he can try to make the best of his situation and help others in the process. This rationalization, while beneficial in the short term, only serves to keep him in Shawshank longer. ", + "perspectives": { + "perspective_id": "a701a890-226d-476e-816d-afe704f9bc84" + } + }, + { + "id": "89352861-db4d-42db-8aea-2abac24609d5", + "context": "Influence Character", + "appreciation": "Domain", + "narrative_function": "Physics", + "illustration": "fighting against someone", + "summary": "Andy's fight against the system and his playing of music to taunt the warden challenge Red's beliefs, forcing him to confront his own powerlessness and despair and to accept and embrace the idea that joy can be found even in the darkest of", + "storytelling": "Andy Dufresne's fighting against the system challenges Ellis \"Red\" Redding's belief that it is possible to fight the system and win. Red must grapple with the idea that sometimes the system is too big and too powerful to fight. This conflict forces Red to confront his own sense of powerlessness and to accept the fact that sometimes the only way to survive is to go along with the system. Additionally, Andy's playing music over the loudspeakers to taunt the warden challenges Red's belief that it is possible to find a measure of peace and happiness even in the most difficult of circumstances. Red must grapple with the idea that sometimes the only way to endure the pain and the suffering is to find a way to enjoy it. This conflict forces Red to confront his own sense of despair and to embrace the idea that even in the darkest of times there can be moments of joy.", + "perspectives": { + "perspective_id": "df334693-e7a1-41b7-b397-b14cec0c438b" + } + }, + { + "id": "d257c97d-eff0-46cc-9932-d0fe796291a6", + "context": "Influence Character", + "appreciation": "Concern", + "narrative_function": "Obtaining", + "illustration": "finishing something", + "summary": "Andy's Obstacle Character Concern of Obtaining, demonstrated through his pursuit of a better prison library, self-respect, freedom, and justice, challenges Red's beliefs and ultimately inspires him to pursue a life outside of Shawshank.", + "storytelling": "In The Shawshank Redemption, the Obstacle Character Concern of Obtaining is illustrated through Andy Dufresne's (Tim Robbins) character. As the Obstacle Character, Andy's focus on obtaining certain goals and achievements within the prison environment influences Red's (Morgan Freeman) perspective and challenges his way of thinking.Andy's concern with obtaining is evident in several aspects of the story:1. Andy's pursuit of a better prison library: He is determined to obtain funding and resources to improve the library, which he eventually achieves through his persistent letter-writing campaign. This demonstrates his belief in the power of education and rehabilitation, contrasting with Red's more cynical outlook.2. Andy's efforts to maintain his dignity and self-respect: Despite the harsh conditions of prison, Andy strives to obtain a sense of personal integrity and humanity. This is evident in his refusal to let the prison system break his spirit and his insistence on treating others with respect.3. Andy's secret plan to escape Shawshank: Throughout the story, Andy is focused on obtaining his freedom by patiently and methodically digging a tunnel to escape the prison. This long-term goal drives his actions and decisions, even when it seems impossible to achieve.4. Andy's desire to clear his name: Although he knows it's a long shot, Andy is determined to obtain justice for himself by proving his innocence. This is exemplified by his efforts to gather evidence and his interactions with Tommy, who has information that could potentially exonerate him.Throughout the story, Andy's concern with obtaining various goals and achievements challenges Red's beliefs and ultimately inspires him to change his own approach. This is evident when Red finally decides to be honest with the parole board and later follows Andy's advice to pursue a life outside of the prison walls. Andy's concern of Obtaining as the Obstacle Character plays a significant role in Red's character development and the overall thematic exploration of the story.", + "perspectives": { + "perspective_id": "9f79bf9a-d4d3-4326-ac6e-95a62da10dce" + } + }, + { + "id": "c9bad257-a461-4e32-b734-9bd4a27e3298", + "context": "Influence Character", + "appreciation": "Issue", + "narrative_function": "Approach", + "illustration": "taunting", + "summary": "In The Shawshank Redemption, Andy Dufresne's (Tim Robbins) approach to life in prison challenges Red's (Morgan Freeman) more cynical attitude, inspiring him to change his own approach and attitude.", + "storytelling": "In The Shawshank Redemption, the Obstacle Character Issue of Approach is illustrated through Andy Dufresne's (Tim Robbins) character, while the Counterpoint of Attitude is also present, creating a contrast between the two. As the Obstacle Character, Andy's unique approach to life and problem-solving within the prison environment challenges Red's (Morgan Freeman) way of thinking and influences him to reconsider his own approach.Andy's approach is characterized by his determination, resourcefulness, and hope. He maintains his dignity and self-respect despite the harsh conditions of prison. Some examples of Andy's approach include:1. His persistence in writing letters to the state senate to secure funding for the prison library. This demonstrates his belief in the power of education and rehabilitation, which contrasts with Red's more cynical outlook.2. His ability to leverage his financial expertise to gain favor with the prison guards and the warden. Andy uses his skills to help them with their taxes and financial matters, which in turn provides him with some protection and privileges within the prison.3. His friendship with Red, which is built on trust and mutual respect. Andy's approach to friendship is genuine and sincere, which challenges Red's more guarded and skeptical attitude towards others.4. His secret plan to escape from Shawshank. Andy's approach to dealing with his wrongful imprisonment is to patiently and methodically work towards his freedom, rather than accepting his fate as Red initially does.In contrast, the Counterpoint of Attitude is evident in the way other characters, including Red, initially approach their situation in Shawshank. Their attitudes are often marked by cynicism, resignation, and a lack of hope for a better future. This is exemplified by Red's initial belief that hope is a dangerous thing in prison and his reluctance to entertain the possibility of change.Throughout the story, Andy's approach to life within Shawshank challenges Red's beliefs and ultimately inspires him to change his own approach and attitude. This is evident when Red finally decides to be honest with the parole board and later follows Andy's advice to pursue a life outside of the prison walls. Andy's approach as the Obstacle Character Issue, along with the contrasting Counterpoint of Attitude, plays a significant role in Red's character development and the overall thematic exploration of the story.", + "perspectives": { + "perspective_id": "9d19846e-2ca8-4a17-9bd8-2f1db08f7833" + } + }, + { + "id": "e827fbf6-81df-4f65-b9ea-b839a24e88a2", + "context": "Influence Character", + "appreciation": "Solution", + "narrative_function": "Uncontrolled", + "illustration": "being unpredictable", + "summary": "", + "storytelling": "The moment Andy starts behaving unpredictably or unregulated is the moment his influence on Red begins to weaken. Not knowing what Andy is doing in his jail cell at night gives Red a moment to pause and possibly reconsider abandoning the way he has always done things in Shawshank.", + "perspectives": { + "perspective_id": "0044cea8-5157-47d7-9476-fe76637993e3" + } + }, + { + "id": "bf983999-c08a-44c7-8c7f-09dff8261cca", + "context": "Relationship Story", + "appreciation": "Domain", + "narrative_function": "Mind", + "illustration": "taking a position on something", + "summary": "Initially brought together by circumstance, their friendship is strengthened by their differing values, leading to trust, intimacy, and mutual recognition of the value of their friendship.", + "storytelling": "While being victims of circumstance initially brings them together, the taking of a position on incompatible values draws them into a long-lasting and meaningful friendship. In the beginning, the differential in their values pushes them apart--while simultaneously intriguing the two into productive debate. The clash of wills is a means of growth for the relationship as it creates a sense of trust and intimacy. It also allows them to have a discussion about why they feel they way they do, which can lead to much-needed recognition and validation. And when people feel they can rely on each other for support, they are more likely to feel close to one another and be willing to work through difficult issues. In the end, it is a mutual recognition that what is most important is taking a position on the value of their friendship that ultimately brings them together.", + "perspectives": { + "perspective_id": "fe0be769-c4b3-452d-8138-cd8a4761d670" + } + }, + { + "id": "cc3100ed-a8e8-416e-96ea-197a5f26054d", + "context": "Relationship Story", + "appreciation": "Concern", + "narrative_function": "Subconscious", + "illustration": "being fond of someone", + "summary": "In The Shawshank Redemption, the Relationship Story Concern being Subconscious means that the growth of Andy and Red's friendship is based on trust, emotional support, and shared experiences, all of which are rooted in their subconscious desires.", + "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Concern being Subconscious means that the growth of Andy and Red's friendship is centered around their basic drives and desires, often at a level they may not be fully aware of.One such quality is the sense of trust and loyalty that develops between Andy and Red. Trust is a fundamental aspect of their relationship, and it's something that grows over time as they share their experiences, thoughts, and feelings. This trust is built on a subconscious level, as they both have to rely on their instincts to determine if the other person is genuine and trustworthy.Another aspect of their relationship that can be classified under Subconscious is the emotional support they provide each other. In the harsh environment of the prison, both Andy and Red face emotional challenges and struggles. Their friendship offers a safe space for them to express their emotions and find comfort in each other's company. This emotional connection is rooted in their subconscious desires for companionship and understanding.Lastly, their shared experiences in prison also contribute to the growth of their friendship on a subconscious level. They both endure the hardships of prison life, and these shared experiences create a bond between them that goes beyond the surface level. This bond is rooted in their subconscious understanding of each other's struggles and the empathy they develop for one another.", + "perspectives": { + "perspective_id": "208c8f31-baba-456b-9047-ee8cbd1ea8e1" + } + }, + { + "id": "3181b8bf-c058-4809-a21f-6f50c311e681", + "context": "Relationship Story", + "appreciation": "Issue", + "narrative_function": "Hope", + "illustration": "being hopeful about something", + "summary": "", + "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Issue of Hope and the RS Counterpoint of Dream intertwine to create a complex and meaningful exploration of the growth of Andy and Red's friendship, centered around their beliefs and attitudes towards hope and dreams.At the beginning of their friendship, Red and Andy have different perspectives on hope. Red sees hope as a dangerous thing, while Andy believes in the power of hope and dreams. This difference in their views on hope creates a conflict in their relationship, as they struggle to understand each other's point of view.As their friendship develops, they begin to influence each other's beliefs about hope and dreams. Andy's unwavering hope and determination, along with his dream of escaping Shawshank and living a free life in Zihuatanejo, slowly start to affect Red, who begins to reconsider his cynical outlook on life. This growth in their relationship is evident when Red starts to entertain the idea of Zihuatanejo, a place that symbolizes hope, freedom, and dreams for both of them.The growth in their friendship is also seen in the way they support each other through difficult times in prison. Andy helps Red by providing him with a sense of purpose and a renewed belief in the possibility of a better future. In turn, Red supports Andy by smuggling in items that help him maintain his sense of self, hope, and dreams.The RS Counterpoint of Dream adds depth to the growth of Andy and Red's friendship by contrasting their aspirations with the reality of their situation. It also serves to emphasize the transformative power of hope and dreams in their relationship, ultimately leading to a change in their perspectives on life.In conclusion, the RS Issue of Hope and the RS Counterpoint of Dream in The Shawshank Redemption illustrate the growth of Andy and Red's friendship as they influence each other's beliefs about hope and dreams, ultimately leading to a transformation in their perspectives on hope, dreams, and life. \u00f0\u0178\u02dc\u0160", + "perspectives": { + "perspective_id": "48a53b01-b826-4cfa-8035-61e519484235" + } + }, + { + "id": "9acf1918-d0d8-42b1-a3fc-4417bc36f4b1", + "context": "Relationship Story", + "appreciation": "Problem", + "narrative_function": "Consider", + "illustration": "deliberating about something", + "summary": "The RS Condition of Consider in The Shawshank Redemption serves as a motivating force that drives the growth of Andy and Red's friendship by encouraging them to continuously evaluate and appreciate each other's perspectives.", + "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Condition being Consider means that the growth of Andy and Red's friendship is influenced by their continuous evaluation and weighing of each other's perspectives, particularly on hope and their outlook on life.At the beginning of their friendship, Red and Andy have different views on hope. Red sees hope as a dangerous thing, while Andy believes in the power of hope and dreams. The condition of Consider in their relationship pushes them to continuously evaluate and ponder each other's perspectives, which in turn, helps their friendship grow.As their friendship develops, they both engage in moments of Consider, where they listen to each other's stories, experiences, and beliefs. This process of considering each other's viewpoints allows them to understand and appreciate the other's perspective, even if they don't initially agree.For example, when Andy shares his dream of going to Zihuatanejo, Red initially dismisses it as unrealistic. However, as their friendship grows, Red starts to consider Andy's perspective on hope and the possibility of a better life outside the prison. This change in Red's thinking is a result of the motivating force of Consider in their relationship.Similarly, Andy learns from Red's experiences and wisdom, considering Red's perspective on surviving in the harsh environment of the prison. This mutual consideration helps them both navigate their lives in Shawshank and strengthens their bond.In conclusion, the RS Condition of Consider in The Shawshank Redemption serves as a motivating force that drives the growth of Andy and Red's friendship by encouraging them to continuously evaluate and appreciate each other's perspectives on hope and life.", + "perspectives": { + "perspective_id": "3c8b0efe-992c-4584-84dc-a8f7470013ec" + } + }, + { + "id": "e57e1ebb-5864-4d02-a6c0-cf41c2b0b263", + "context": "Relationship Story", + "appreciation": "Solution", + "narrative_function": "Reconsider", + "illustration": "reconsidering someone's options", + "summary": "The RS Revision of Reconsider in The Shawshank Redemption serves as a motivating force that drives the growth of the friendship between Andy and Red, ultimately strengthening their bond.", + "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Revision being Reconsider means that the growth of the friendship between Andy and Red is influenced by the shared drive to reevaluate and renegotiate their initial beliefs and perspectives, ultimately strengthening their bond.As the friendship progresses, the shared drive towards Reconsider becomes a key factor in the growth of their bond. The relationship itself evolves as both parties within the friendship become more open to reevaluating their initial beliefs and attitudes, allowing for a deeper understanding and connection between them.For instance, the friendship experiences a significant growth when the shared drive to Reconsider leads to a mutual openness towards the idea of hope and the possibility of a better life outside the prison. This shift in perspective within the relationship brings them closer together, as they find common ground in their newfound beliefs.Moreover, the shared drive towards Reconsider also helps the friendship navigate the challenges and hardships they face within the prison environment. By continuously reevaluating and renegotiating their perspectives, the relationship becomes more resilient and adaptable, further strengthening their bond.In conclusion, the RS Revision of Reconsider in The Shawshank Redemption serves as a motivating force that drives the growth of the friendship between Andy and Red by encouraging a shared drive to reevaluate and renegotiate their initial beliefs and perspectives, ultimately strengthening their bond.", + "perspectives": { + "perspective_id": "88e4d56a-ed60-418a-825b-f465d1c722ab" + } + }, + { + "id": "71ca10a2-f1d9-4ef8-aa61-36e5a1937ac7", + "context": "Main Character", + "appreciation": "Pivotal Element", + "narrative_function": "Support", + "illustration": "being supportive of a group", + "summary": "Ellis \"Red\" Redding argues that in the isolating environment of prison, forming supportive bonds is essential for survival, providing purpose, hope, and resilience despite the risks of vulnerability.", + "storytelling": "Ellis \"Red\" Redding makes a compelling argument for the importance of being supportive of a group, particularly in the harsh and isolating environment of prison. Red believes that survival in such a dehumanizing system is only possible through the bonds formed with others, even if those bonds come at a personal cost. He demonstrates that loyalty and solidarity can provide a sense of purpose and humanity, even in the bleakest circumstances. Red's protective instincts often lead him to mentor and shield others, like Andy Dufresne, showing that supporting the group can foster hope and resilience. While his pragmatism warns him of the risks of attachment, his actions argue that the strength of a group can outweigh the dangers of vulnerability, offering a path to redemption and a semblance of freedom, even behind bars.", + "perspectives": { + "perspective_id": "edaf6099-6584-47ce-b03c-e0de338ed76f" + } + }, + { + "id": "7c194b5e-d709-4653-b70f-34ae436ff762", + "context": "Influence Character", + "appreciation": "Pivotal Element", + "narrative_function": "Oppose", + "illustration": "opposing someone", + "summary": "Tommy Williams views opposition in prison as essential for self-preservation and identity, using defiance to assert individuality, gain respect, and maintain dignity in a dehumanizing environment.", + "storytelling": "Tommy Williams would argue that opposing someone, especially in a rigid and oppressive environment like prison, is a necessary act of self-preservation and identity. He would justify his brash confidence and impulsive defiance as a way to assert his individuality in a system designed to strip it away. Tommy might embellish his past exploits to gain respect, framing opposition as a way to earn a place in the social hierarchy and avoid being seen as weak or disposable. His hunger for validation would fuel his belief that standing against authority or rivals, even at great personal risk, is the only way to maintain dignity and prove his worth. In his eyes, opposition is not just rebellion\u00e2\u20ac\u201dit's survival.", + "perspectives": { + "perspective_id": "939a158c-8f44-4c63-b064-985e6c732b18" + } + }, + { + "id": "d8911b91-97db-4980-908f-34fefbc8b368", + "context": "Objective Story", + "appreciation": "Symptom", + "narrative_function": "Avoid", + "illustration": "escaping someone", + "summary": "", + "storytelling": "In the oppressive environment of Shawshank prison, the act of avoiding direct confrontation with the institution's corruption becomes a source of conflict. The inmates, led by the misjudged former banker, focus on small acts of resistance and camaraderie, which, while inspiring hope, also distract from addressing the systemic issues head-on. This avoidance of the core problem perpetuates the institution's dehumanizing grip, creating a tension between the inmates' immediate survival strategies and the need for a deeper, more transformative change.", + "perspectives": { + "perspective_id": "cead572e-7d22-4201-9fb5-af835b0436de" + } + }, + { + "id": "9a3705ef-4c82-435c-bd3b-a11a243e5257", + "context": "Objective Story", + "appreciation": "Response", + "narrative_function": "Pursuit", + "illustration": "attempting to achieving something", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's relentless pursuit of hope and justice becomes a double-edged sword, inspiring fellow inmates while simultaneously drawing the ire of the corrupt system. This pursuit, while noble, exacerbates the tension between the inmates' growing resilience and the institution's efforts to maintain control, highlighting the complex interplay between individual determination and systemic oppression. The narrative explores how this unyielding drive for change can both empower and endanger those who dare to challenge the status quo.", + "perspectives": { + "perspective_id": "de1ee2dc-8a4f-4d57-98a4-aea8e7df102d" + } + }, + { + "id": "a70766bd-768b-4eb8-9114-c10aed141729", + "context": "Objective Story", + "appreciation": "Benchmark", + "narrative_function": "Past", + "illustration": "", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the reinterpretation of past events becomes a source of both conflict and hope. As the misjudged former banker uncovers and shares stories of systemic corruption and personal injustices, these revelations challenge the inmates' acceptance of their fates and the institution's authority. This reassessment of history not only disrupts the established order but also ignites a collective resilience, illustrating how revisiting the past can inspire a transformative hope amidst despair.", + "perspectives": { + "perspective_id": "28b7c03b-16a7-4902-ab8c-0220d4fdbc7e" + } + }, + { + "id": "671a192a-78d1-4356-8bc9-98ef510f42ca", + "context": "Objective Story", + "appreciation": "Catalyst", + "narrative_function": "Openness", + "illustration": "opening up oneself to new ideas", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's willingness to entertain alternative perspectives and ideas becomes a source of both inspiration and conflict. This openness, while fostering hope and camaraderie among the inmates, also clashes with the rigid and corrupt institutional framework that thrives on conformity and despair. The resulting tension not only propels the narrative forward but also underscores the transformative power of resilience and adaptability in the face of systemic oppression.", + "perspectives": { + "perspective_id": "13650d17-2e58-4b78-9b33-2f216d1c6618" + } + }, + { + "id": "e393398b-f5ab-4281-9344-2ec1f7686fac", + "context": "Objective Story", + "appreciation": "Inhibitor", + "narrative_function": "Denial", + "illustration": "being in denial", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the denial of the system's unyielding corruption and the cyclical nature of its exploitation creates a profound conflict. The protagonist's refusal to accept the futility of resistance against such an entrenched institution becomes both a source of hope and a barrier to progress, as his actions inspire others but also risk perpetuating a cycle of punishment and despair. This denial, while fostering resilience, underscores the tension between hope and the crushing weight of institutional brutality.", + "perspectives": { + "perspective_id": "8598b488-8faf-4c19-a1f8-df3cbfe74dc3" + } + }, + { + "id": "ae22e726-1967-458b-b02f-069e90e46c37", + "context": "Objective Story", + "appreciation": "Requirement", + "narrative_function": "Past", + "illustration": "uncovering one's past", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's reassessment of his past actions and the circumstances leading to his incarceration becomes a source of both internal and external conflict. This reinterpretation challenges his own identity and the perceptions of those around him, as he uncovers truths that inspire hope and resilience among the inmates. The dynamic tension between the crushing institutional brutality and the transformative power of revisiting and reinterpreting the past propels the narrative, highlighting the enduring struggle for dignity and redemption.", + "perspectives": { + "perspective_id": "d08fb106-eb06-40b0-a95c-18c9ecdcad5b" + } + }, + { + "id": "acaef1d0-2d72-4b5f-ad81-0b942a8ba176", + "context": "Objective Story", + "appreciation": "Prerequisite", + "narrative_function": "Memory", + "illustration": "recalling horrors", + "summary": "", + "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's memories of a life outside the walls clash with the harsh reality of institutional dehumanization, creating a poignant internal struggle. These recollections, tinged with both regret and hope, fuel his resistance against the system's crushing force, while also highlighting the contrasting perspectives of fellow inmates who have either succumbed to or resisted the erasure of their pasts. This tension between memory and present reality underscores the narrative's exploration of hope and resilience in the face of systemic brutality.", + "perspectives": { + "perspective_id": "a13b8c40-1858-4884-b976-bd56d1e55640" + } + }, + { + "id": "709a19ad-b950-4fce-8b48-99cae45cb857", + "context": "Main Character", + "appreciation": "Domain", + "narrative_function": "Psychology", + "illustration": "coping with something", + "summary": "", + "storytelling": "Red's internal conflict stems from his deeply ingrained sense of loyalty and protectiveness towards his fellow inmates, which often clashes with his pragmatic need to ensure his own survival within the harsh realities of prison life. While he has learned to navigate the system with a realist's perspective, his quiet hope for redemption and a better future creates a tension within him, as he struggles to reconcile his actions with his unspoken aspirations.", + "perspectives": { + "perspective_id": "9489b351-9e2e-4314-9ffd-499fc1b3c8ed" + } + }, + { + "id": "d3cf7bef-2bda-43ef-bd92-60cc643b84d4", + "context": "Main Character", + "appreciation": "Concern", + "narrative_function": "Becoming", + "illustration": "going through a transformation", + "summary": "", + "storytelling": "Ellis \"Red\" Redding's journey of becoming is one of internal transformation, as he wrestles with the tension between his hardened pragmatism and the quiet, fragile hope for redemption he keeps buried. Decades in Shawshank have taught him to suppress hope, seeing it as dangerous and futile in a system designed to crush it. Yet, his growing bond with Andy Dufresne begins to challenge this worldview, forcing Red to confront the possibility that he can become more than just a \"man who can get things.\" This conflict manifests in his parole hearings, where his rehearsed, detached responses reflect a man resigned to his identity as a convict. However, as Andy's unyielding hope begins to seep into Red's guarded heart, he faces the terrifying prospect of becoming someone who dares to believe in freedom and a life beyond the prison walls. Red's transformation is not just about leaving Shawshank but about becoming a man who can finally forgive himself and embrace the possibility of a future.", + "perspectives": { + "perspective_id": "6f947ded-aa3f-4754-8624-478bdc98c85f" + } + }, + { + "id": "a902a183-89ae-4c09-9ade-47fea9df0c48", + "context": "Main Character", + "appreciation": "Issue", + "narrative_function": "Rationalization", + "illustration": "making excuses for someone's actions", + "summary": "", + "storytelling": "Ellis \"Red\" Redding has spent decades in Shawshank rationalizing his actions and his place in the world. He tells himself that his crime, though heinous, was the folly of a young man, and that his years of service in prison have paid his debt to society. Yet, when faced with the needs of others\u00e2\u20ac\u201dlike Andy Dufresne's relentless hope and plans for escape\u00e2\u20ac\u201dRed feels the pull of obligation, a duty to support and protect those who still believe in something greater. This tension between his rationalized acceptance of his fate and the moral obligation to help others forces Red to confront the quiet hope for redemption he has buried deep within. It is in this conflict that Red must decide whether to remain a passive realist or to act on the faint glimmer of hope that perhaps, just perhaps, there is a life waiting for him beyond the prison walls.", + "perspectives": { + "perspective_id": "44fe01d8-e85b-42e5-9388-f7cd3bce304b" + } + }, + { + "id": "b6b64aa1-ac37-4b03-934a-8f36480244b2", + "context": "Main Character", + "appreciation": "Symptom", + "narrative_function": "Reconsider", + "illustration": "having to reconsider one's opinion about someone", + "summary": "", + "storytelling": "Red's internal conflict arises as he begins to reconsider his long-held belief that hope is a dangerous thing within the confines of prison life. This drive to re-examine his conclusions about hope and redemption forces him to confront the possibility that his pragmatic realism might be a shield against vulnerability rather than a true reflection of his reality. As obstacles challenge his resolve, Red's reconsideration becomes a source of tension, pulling him between the safety of his established worldview and the risk of embracing a fragile, yet transformative, hope.", + "perspectives": { + "perspective_id": "03279f1f-fdae-4653-8bbe-120d6b3f8cdc" + } + }, + { + "id": "40440b6c-29d3-43e4-ac58-d0175ae0132c", + "context": "Main Character", + "appreciation": "Response", + "narrative_function": "Consider", + "illustration": "deliberating about someone", + "summary": "", + "storytelling": "Red's constant deliberation over his loyalty and protective instincts creates a profound internal conflict, as he struggles to reconcile his pragmatic realism with his quiet hope for redemption. This internal turmoil is mirrored in his interactions with other inmates, where his protective nature often clashes with the harsh realities of prison life, leading to moments of tension and self-doubt. His inability to let go of these considerations not only shapes his character but also drives the narrative forward, highlighting the complexities of survival and humanity within the prison system.", + "perspectives": { + "perspective_id": "880d1948-4c7d-41e9-a24f-a1d4bc7bb767" + } + }, + { + "id": "17bf1d33-e1a8-4ecc-946b-33faa7826618", + "context": "Main Character", + "appreciation": "Benchmark", + "narrative_function": "Conceptualizing", + "illustration": "unraveling someone's scheme", + "summary": "", + "storytelling": "Red's internal conflict is vividly illustrated through his struggle to conceptualize a future beyond the prison walls, a task that pits his pragmatic realism against his buried hope for redemption. This tension is further exacerbated by his protective instincts, which often lead him to prioritize others' well-being over his own, complicating his ability to envision a personal path to freedom. The evolving benchmarks of his journey, such as his interactions with fellow inmates and his own shifting self-perception, serve as a mirror to his deepening internal struggle and the challenges of reconciling his past with the possibility of a new beginning.", + "perspectives": { + "perspective_id": "97ca72df-1091-46c0-9a17-9fcdc01bcd63" + } + }, + { + "id": "a26a258c-2833-4c16-a83d-de9ea1101c13", + "context": "Main Character", + "appreciation": "Unique Ability", + "narrative_function": "Rationalization", + "illustration": "", + "summary": "", + "storytelling": "", + "perspectives": { + "perspective_id": "74270f91-9128-4076-a720-63d2b9636d8d" + } + }, + { + "id": "133fbf7e-fdf5-4bc6-9322-02a0fdabd4b0", + "context": "Influence Character", + "appreciation": "Symptom", + "narrative_function": "Avoid", + "illustration": "evading the police", + "summary": "", + "storytelling": "Andy Dufresne's reliance on avoidance as a method of conflict introduces a compelling tension in his narrative, as his calculated efforts to evade direct confrontation with the oppressive system highlight his strategic brilliance but also his vulnerability. By focusing on preventing exposure and maintaining his facade, Andy's actions underscore the precarious balance he must maintain to achieve his ultimate goal of freedom and justice. This avoidance not only propels the story forward but also deepens the audience's understanding of his character's resilience and ingenuity.", + "perspectives": { + "perspective_id": "b83d9ac7-f42a-468b-8f5b-2a024dda7fc5" + } + }, + { + "id": "53ae22cc-9aa4-4fca-958e-b6f99a67d186", + "context": "Influence Character", + "appreciation": "Response", + "narrative_function": "Pursuit", + "illustration": "seeking something", + "summary": "", + "storytelling": "Andy Dufresne's relentless pursuit of justice and autonomy, while admirable, introduces significant conflict as his calculated actions often place him at odds with the oppressive system he seeks to expose. His methodical approach, driven by a deep-seated determination, forces him to navigate a treacherous path where every step closer to his goal risks greater scrutiny and potential failure. This pursuit not only challenges Andy's resilience but also serves as a catalyst for his growth and the eventual unraveling of the injustices he faces.", + "perspectives": { + "perspective_id": "23a9235f-2006-470d-a991-138fa1c4924c" + } + }, + { + "id": "f9dd1174-5900-4f92-b5fa-f4b3a6b7d84e", + "context": "Influence Character", + "appreciation": "Benchmark", + "narrative_function": "Understanding", + "illustration": "having an understanding of someone's true character and feelings", + "summary": "", + "storytelling": "Andy Dufresne's journey is fraught with conflicts stemming from his attempts to understand and navigate the complex dynamics of the prison system and the individuals within it. His calculated demeanor and strategic manipulation of situations often clash with the misinterpretations and suspicions of those around him, creating a tension that underscores his struggle for justice and autonomy. This conflict of understanding not only propels the narrative but also highlights the profound challenges of reconciling personal goals with the opaque and often hostile environment he inhabits.", + "perspectives": { + "perspective_id": "3f345b33-7434-4abc-ae87-f61eb93af5db" + } + }, + { + "id": "54c7f89d-a00c-4a23-ac19-50f54d36c591", + "context": "Relationship Story", + "appreciation": "Resistance", + "narrative_function": "Avoid", + "illustration": "avoiding someone", + "summary": "", + "storytelling": "Red's initial reluctance to fully trust Andy, driven by his instinct to avoid emotional vulnerability in the harsh environment of prison, creates a subtle yet significant tension in their budding friendship. This avoidance, while a protective mechanism, hinders the deepening of their bond, as Andy's openness and hope challenge Red's guarded nature. The conflict between Red's resistance to vulnerability and Andy's persistent optimism becomes a pivotal dynamic, shaping their relationship's evolution and the narrative's emotional core.", + "perspectives": { + "perspective_id": "c353fda3-58df-412c-b0f2-497ff3cc7fab" + } + }, + { + "id": "f571b924-aebd-4d0c-a737-79d072bccf6f", + "context": "Relationship Story", + "appreciation": "Flow", + "narrative_function": "Pursuit", + "illustration": "pursuing happiness", + "summary": "", + "storytelling": "The pursuit of hope and freedom becomes a source of tension in Red and Andy's friendship, as their differing approaches to survival in prison clash. Andy's relentless drive to achieve his vision of freedom contrasts with Red's cautious pragmatism, creating moments of misunderstanding and conflict. However, this pursuit also serves as a catalyst for their relationship's growth, as they learn to navigate their differences and support each other's aspirations.", + "perspectives": { + "perspective_id": "5892b1af-b572-4e73-a162-886acda33761" + } + } + ], + "storybeats": [ + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Plot Dynamic", + "sequence": null, + "narrative_function": "Support", + "illustration": "not commending someone", + "summary": "Andy Dufresne is sentenced to two life sentences in Shawshank Prison, forcing him to fight for his life within its walls.", + "storytelling": "The Jury at Andy Dufresne's trial for murder unanimously decide that he is guilty after the D.A. provides ample evidence for why they should not support his icy cold demeanor. In addition, the Judge sentences Andy to serve two back-to-back life sentences in Shawshank Prison for the murder of his wife and her lover. As a consequence of this decision, Andy is forced into fighting for his life as he tries to survive within the walls of Shawshank Prison.", + "perspectives": { + "perspective_id": "8ae22e71-0368-42f7-8d7c-50fee3646ee5" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Past", + "illustration": "address someone having a troubled past", + "summary": "In the first Act of The Shawshank Redemption, Andy's innocence is his greatest strength, as Red helps him survive in the harsh prison environment while the Warden attempts to bring absolution and forgiveness to all inmates.", + "storytelling": "Shawshank Prison, a grim world defined by past crimes and guilt, is run by a corrupt warden and guards who abuse their power. Into this oppressive atmosphere steps Andy Dufresne, an innocent man with no past crimes to haunt him. His innocence, a stark contrast to the guilt-ridden inmates around him, makes him an outsider and a target for bullying. Recognizing the strength in Andy's innocence, long-time inmate Ellis \"Red\" Redding steps in to protect him, guiding him through the harsh realities of prison life. However, Red's support of Andy draws the ire of the prison guards, who see Andy's innocence as a threat to their authority. As Red navigates this new challenge, he begins to see the potential for change in Shawshank's rigid system, sparked by Andy's unwavering hope and determination.In the first Act of The Shawshank Redemption, Andy arrives at Shawshank and is the only one who doesn't have a past to be guilty of. As the other inmates continue to belittle and bully Andy, Ellis Redding steps in to protect him. He takes it upon himself to help Andy get acclimated to the prison life, teaching him the ropes and how to survive in such a harsh environment. Red soon realizes that Andy's innocence is his greatest strength, as it makes him immune to the corruption that exists in the prison. Red's support of Andy soon brings him trouble with the prison guards, as they see him as a threat to their authority.", + "perspectives": { + "perspective_id": "fe52d073-a226-4c93-8c95-97e445ba8b54" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Being", + "illustration": "pretending everything is OK", + "summary": "Red maintains a facade of reform while secretly trading contraband, but Andy's plea for help and defiance begin to erode his pretense of well-being.", + "storytelling": "Red's got this act down pat\u00e2\u20ac\u201dconvincing the board he's reformed, all while his side hustle in contraband thrives behind bars. He's the picture of ease, playing it cool and pretending all's well, even as Andy's request for help hints at the cracks in his facade. But when he basks in the glow of Andy's defiance, Red's charade of pretending to be okay starts to crumble, nudging him towards a path of more significant transformation.", + "perspectives": { + "perspective_id": "d5b02fa5-c645-48cf-acc5-07d7f260a5b3" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Doing", + "illustration": "fighting", + "summary": "Andy's defiance in Shawshank inspires Red to reconsider his passivity and contemplate fighting against their bleak imprisonment.", + "storytelling": "Red's always played it safe, but then Andy comes along, fighting the system with every breath. Watching Andy throw punches at their bleak life, it's like he's daring Red to step into the ring himself. And that's the rub\u00e2\u20ac\u201dRed's torn between the comfort of his routine and the scary thought of actually throwing a punch of his own.", + "perspectives": { + "perspective_id": "72032555-0e85-4381-8c7f-0704fea00b35" + } + }, + { + "id": "[[ internal id ]]", + "context": "Relationship Story", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Memory", + "illustration": "calling to mind", + "summary": "Red and Andy's friendship in prison deepens through shared memories, reflecting a mutual longing for past freedoms.", + "storytelling": "When Red and Andy first cross paths, there's an unspoken bond that forms as they trade stories about their former lives\u00e2\u20ac\u201dRed, the seasoned insider, and Andy, the infamous banker. Their chat about the rock-hammer isn't just shop talk; it's a dance of memories, each step revealing a bit more of the world they've left behind and the gritty reality they now share. It's in these moments, like when they're slathering tar on the prison roof, that their friendship deepens, rooted in a mutual yearning for the freedom of their pasts.", + "perspectives": { + "perspective_id": "e86903e9-44ae-499b-ad04-02e437c75b41" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Plot Dynamic", + "sequence": null, + "narrative_function": "Support", + "illustration": "giving unwanted support to someone", + "summary": "Captain Hadley's unexpected openness towards Andy leads to a shift in the dynamics of Shawshank, setting the stage for further developments in the story and illustrating the power of openness and support.", + "storytelling": "In the Second Story Driver of Shawshank Redemption, Captain Hadley, initially hostile and ready to throw Andy off the roof, experiences a moment of openness when Andy offers him valuable financial advice. This unexpected display of open-mindedness from Hadley serves as the catalyst for a significant shift in the story. Instead of punishing Andy, Hadley decides to support him, albeit reluctantly, by allowing him to live and even providing the inmates with cold beers as a reward for Andy's help. \u00f0\u0178\u008d\u00bbThis act of support, though initially unwanted by Hadley, leads to a change in the dynamics within the prison. Andy's financial expertise becomes known, and he starts to gain the respect and trust of both the inmates and the prison staff. This newfound support for Andy sets the stage for further developments in the story, as his influence within Shawshank grows and he begins to challenge the established power structures. The Second Story Driver, therefore, illustrates the power of openness and support in driving the narrative forward and shaping the characters' destinies. \u00f0\u0178\u201c\u0161\u00f0\u0178\u2019\u00a1\u00f0\u0178\u201d\u2014", + "perspectives": { + "perspective_id": "a66df2cf-79b5-48a5-9bb2-b2358177d82e" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Signpost", + "sequence": 2, + "narrative_function": "Becoming", + "illustration": "being transformed by prison life", + "summary": "Red's transformation in prison reveals a deep-seated dependency on institutional walls, challenging his sense of self and hinting at a potential awakening.", + "storytelling": "Prison life's got its hooks in Red, shaping him in ways he can't even admit. He brushes off Andy's rooftop defiance, yet it stirs something deep within, a glimpse of what lies beyond his institutionalized mindset. But it's Brooks' breakdown that lays it bare: Red's trapped in a cycle of dependency on the very walls he once despised, a transformation that's more like a slow fade of the soul.", + "perspectives": { + "perspective_id": "67734b55-d099-441f-b7a8-819fdc7403b1" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 2, + "narrative_function": "Future", + "illustration": "improving the future prospects for a group", + "summary": "Andy's manipulation of the guards, setting up of a library, and Brooks' violent outburst demonstrate the psychological dysfunction and manipulation at play in uncertain futures.", + "storytelling": "During the first half of Act Two in The Shawshank Redemption, three significant events unfold, highlighting the psychological dysfunction and manipulation at play within the story:1. Andy begins to manipulate the guards' future prospects by offering his expertise in tax matters. By doing so, he not only gains their favor but also subtly shifts the power dynamics within the prison. This act of manipulation showcases Andy's ability to navigate the complex psychological landscape of Shawshank and use it to his advantage. \u00f0\u0178\u00a7 \u00f0\u0178\u2019\u00bc2. Andy sets up a library to improve the educational prospects of the inmates, challenging the status quo and the prison's oppressive environment. This act of defiance against the system demonstrates Andy's determination to bring about change and hope within the prison walls. Through this endeavor, he manipulates the inmates' mindset, encouraging them to believe in a better future and their own potential for growth. \u00f0\u0178\u201c\u0161\u00f0\u0178\u0152\u00b13. Brooks, overwhelmed by the prospect of a future outside of Shawshank, takes a knife to Heywood's throat. This dramatic event highlights the deep-rooted psychological dysfunction that can result from long-term institutionalization. Brooks' fear of the unknown and inability to cope with change leads him to lash out violently, showcasing the damaging effects of the prison system on the inmates' mental health. \u00f0\u0178\u201d\u00aa\u00f0\u0178\u02dc\u00a8These three events emphasize the psychological dysfunction and manipulation present in The Shawshank Redemption, further enriching the story's exploration of hope, redemption, and the human spirit.", + "perspectives": { + "perspective_id": "ab95b6ab-a02e-4e70-9e0e-5cb635a51bd9" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Signpost", + "sequence": 2, + "narrative_function": "Obtaining", + "illustration": "gaining power", + "summary": "Andy's ascent to power inspires Red to reconsider his own passive existence and contemplate engaging in the high-stakes game of influence within prison walls.", + "storytelling": "Andy's working angles Red never even dreamed of, wheeling and dealing his way into the warden's good graces\u00e2\u20ac\u201dsuddenly, he's the man with the plan, the guy with the power. And there's Red, watching Andy's star rise, feeling that itch, wondering why he's just been sitting on his hands all this time. It's like Andy's showing him a game where the stakes are more than cigarettes and respect\u00e2\u20ac\u201dit's about making a mark, even behind these walls, and Red's not sure he's ready to play.", + "perspectives": { + "perspective_id": "a32e1a31-c9e6-42ba-a912-862ca5be2347" + } + }, + { + "id": "[[ internal id ]]", + "context": "Relationship Story", + "appreciation": "Signpost", + "sequence": 2, + "narrative_function": "Preconscious", + "illustration": "being agitated about something", + "summary": "Red's preconscious agitation towards Andy's whisper of 'hope' in Shawshank stirs a transformative bond between them.", + "storytelling": "As Andy and Red's camaraderie unfolds, it's the unguarded moments that spark change\u00e2\u20ac\u201dlike when Andy dares to whisper 'hope' amidst the clatter of the lunchroom. Red's fork freezes mid-air, his agitation clear as day; hope, he argues, is nothing but trouble. Yet, it's this very friction, this dance of instinct and challenge, that forges their bond in the fire of Shawshank, each man shaping the other's survival against the prison's unforgiving backdrop.", + "perspectives": { + "perspective_id": "e008fd26-9eb2-460f-91b3-46a990d1291a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Plot Dynamic", + "sequence": null, + "narrative_function": "Support", + "illustration": "endorsing someone", + "summary": "The Warden's initial support of Andy's library project sets the stage for a conflict between them when Andy defies the Warden's authority by playing the record, leading to Andy's imprisonment in solitary confinement.", + "storytelling": "The Warden's decision to support Andy's library project, which leads to an unspoken \"friendship\" between them, sets the stage for the midpoint of story. This support, however, comes with the expectation that Andy will remain compliant and not challenge the Warden's authority.When Andy decides to play the record for all the inmates, he breaks this unspoken agreement and openly defies the Warden. Andy's decision to play the record not only challenges the Warden's authority but also demonstrates his unwillingness to continue supporting the oppressive system within Shawshank.The Warden's initial support of Andy's library project can be seen as a strategic move to maintain control over Andy and the prison. However, Andy's decision to play the record reveals his true intentions of empowering the inmates and challenging the status quo. This act of defiance marks a turning point in the story, as it intensifies the conflict between Andy and the Warden and sets the stage for the dramatic events that follow.These cross-purposes lead to Andy thrown in solitary confinement.", + "perspectives": { + "perspective_id": "e0903f68-764c-4d2e-b816-2dbfda505e30" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 3, + "narrative_function": "Present", + "illustration": "being focused on one's immediate needs", + "summary": "Andy's hopeful attitude and Norton's opportunistic one clash with the Warden's controlling one, leading to a reevaluation of priorities and a greater integration of perspectives.", + "storytelling": "Andy endures solitary confinement, adopting a hopeful attitude to survive the present moment. Upon his release, he tries to convince a skeptical Red that embracing hope, even in their current situation, is what sustains him. Meanwhile, in 1963, Norton's opportunistic attitude leads him to exploit prison labor for public works, profiting from the community's immediate needs by undercutting skilled labor costs and accepting bribes. Andy, recognizing the prevailing attitudes, seizes the opportunity to launder the money using the alias 'Randall Stephens'. As Tommy Williams arrives and shares information that could lead to Andy's imminent release, the Warden's controlling attitude clashes with Andy's hope, forcing the Warden to take action to protect his own interests and maintain control over the present situation. This conflict of attitudes ultimately pushes the characters towards a greater integration of perspectives and a reevaluation of their priorities.", + "perspectives": { + "perspective_id": "d48fd933-496b-4dc5-b29d-8a0666f09a6a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Relationship Story", + "appreciation": "Signpost", + "sequence": 3, + "narrative_function": "Subconscious", + "illustration": "dreaming of something", + "summary": "Andy's dream of Zihuatanejo ignites a subconscious yearning for freedom in Red's once-dormant spirit.", + "storytelling": "In the quiet of the prison night, Andy's voice carries a dream of Zihuatanejo, a beacon of hope that Red tries to shrug off\u00e2\u20ac\u201dbut dreams have a way of taking root. As Andy's steadfast gaze pierces the gloom, his dream seeps into Red's subconscious, stirring a long-dormant hunger for freedom. Their friendship, now a vessel of shared longing, sails them both towards the faintest glimmer of life beyond the bars.", + "perspectives": { + "perspective_id": "8d3b08f2-9c0c-4f70-9e90-df690d573f73" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Signpost", + "sequence": 3, + "narrative_function": "Learning", + "illustration": "learning something", + "summary": "Andy's thirst for truth and beauty educates Red on the power of learning to transcend their prison confines.", + "storytelling": "When Andy blasts that opera over the loudspeakers, it's like he's schooling Red in a class he didn't know he signed up for\u00e2\u20ac\u201dturns out, beauty can punch through prison walls. Then this kid Tommy waltzes in with a secret that could turn Andy's life around, and Andy's all over it, hungry for the truth like it's his last meal. Red's watching all this, this hunger for knowledge, and it's got him questioning his own rule about not poking the bear\u00e2\u20ac\u201dmaybe some fights are worth baring your claws for.", + "perspectives": { + "perspective_id": "61a1c2c5-fa61-4d34-8934-642106c55b0a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Signpost", + "sequence": 3, + "narrative_function": "Conceiving", + "illustration": "getting the idea that something is worth it", + "summary": "Red's internal struggle with an inspiring aria suggests conceiving change could be worth the risk.", + "storytelling": "Red's always played it safe, keeping his thoughts close to the vest, especially when it comes to the unspoken beauty of an Italian aria that moves him. It's that very tune that plants a seed, an idea that maybe, just maybe, there's something more out there, something worth conceiving a life beyond the prison walls. And when the new kid arrives, full of hope, Red's warning against making a difference is really him wrestling with his own budding notion that change, however daunting, might just be possible.", + "perspectives": { + "perspective_id": "f70f3008-217a-40a4-9d5e-69bc39632790" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Plot Dynamic", + "sequence": null, + "narrative_function": "Support", + "illustration": "endorsing someone", + "summary": "Tommy's decision to support Andy's innocence is met with fatal consequences from the Warden, who is unwilling to accept the challenge to his authority.", + "storytelling": "Tommy, a young inmate, decides to support Andy by testifying in favor of his innocence. This decision is driven by his belief in Andy's side of the story and his desire to help him. However, the Warden, who is in denial about the possibility of Andy being innocent and fears the consequences of this truth coming to light, makes a decision to support the status quo and maintain his control over the prison. The Warden takes Tommy for a walk in the yard late at night. During this walk, the Warden confirms Tommy's unwavering support for Andy's case. Unable to accept this challenge to his authority and the potential exposure of his corrupt practices, the Warden steps aside so Hadley can fatally shoot Tommy.", + "perspectives": { + "perspective_id": "e52e811e-8bf6-4ee8-b5ee-2f4931ec8016" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Signpost", + "sequence": 4, + "narrative_function": "Understanding", + "illustration": "having an insight into a group", + "summary": "Red's epiphany that hope transcends prison walls ignites an understanding of the fragility of the warden's control.", + "storytelling": "Andy's vanishing act hits Red like a ton of bricks\u00e2\u20ac\u201dit's not just a man escaping, it's a whole philosophy breaking out, showing Red that hope ain't just a four-letter word. The warden's empire crumbles, and there's Red, realizing the joint's pecking order was just a house of cards waiting for a breeze. It's a wake-up call, and Red's got to admit, maybe understanding the lay of the land means seeing the walls for what they are\u00e2\u20ac\u201dtemporary.", + "perspectives": { + "perspective_id": "77036630-cc15-4556-bbe4-6fbccdddb708" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 4, + "narrative_function": "Progress", + "illustration": "moving in a positive direction", + "summary": "Andy's escape plan is successful, exposing the Warden's corruption and inspiring Red to find hope, as Andy leaves a note that reads, \"Salvation lies within.\"", + "storytelling": "After Tommy's murder, Andy's hope is severely tested. He becomes more withdrawn and starts planning his escape. Red, on the other hand, begins to see the value of hope and starts to change his perspective on life. The Warden's corruption and control over the prison become more apparent, and the inmates start to question the system they've been living under.As the story progresses, Andy's escape plan comes to fruition. He uses his knowledge of the Warden's illegal activities and the alias 'Randall Stephens' to expose the corruption within the prison. On the night of his escape, Andy switches out the Warden's ledger with his Bible, leaving a note that reads, \"Salvation lies within.\"", + "perspectives": { + "perspective_id": "d2bbb13b-50a7-4d79-867f-ec25818bd872" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Signpost", + "sequence": 4, + "narrative_function": "Conceptualizing", + "illustration": "imagining a new life", + "summary": "Red's parole ignites a defiant spark to reimagine his life, unchained and in control.", + "storytelling": "Red's always had a spark of defiance, a quiet kind of rebellion simmering beneath that prison-grey exterior. It's not until he's out, on parole, that this spark ignites into a full-blown blaze, pushing him to conceptualize a life unchained, a life where he's the one calling the shots. And there he is, heart pounding with the thrill of what's ahead, a free man embarking on a journey to a place he's only dared to imagine\u00e2\u20ac\u201da place where his story might just find its happy ending.", + "perspectives": { + "perspective_id": "9423aa09-1377-4456-951f-fccc30e5b516" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Plot Dynamic", + "sequence": null, + "narrative_function": "Oppose", + "illustration": "disagreeing with a group", + "summary": "Andy's decision to oppose the Warden's views and escape leads to his liberation, the Warden's suicide, and a hopeful future for characters like Red.", + "storytelling": "In \"The Shawshank Redemption,\" the final Story Driver centers on Andy Dufresne's decision not to kill himself, but to oppose the Warden's belief in salvation through submission. Andy's secret escape plan, a symbol of defiance, leads to his liberation and exposes the Warden's corruption. This opposition shatters the Warden's world, ultimately resulting in his suicide. Andy's choice to defy the Warden's views paves the way for a hopeful future for characters like Red, illustrating the power of the Solution of Oppose in resolving the story's central problem and delivering a satisfying conclusion.", + "perspectives": { + "perspective_id": "6acc0d72-725a-450f-8289-c1b98b066701" + } + }, + { + "id": "[[ internal id ]]", + "context": "Relationship Story", + "appreciation": "Signpost", + "sequence": 4, + "narrative_function": "Conscious", + "illustration": "thinking about the nature of someone's relationship", + "summary": "Once strangers, Andy and Red now consciously embrace their enduring friendship, a bond so profound it propels Red to fulfill a dream etched in shared hope, culminating in a heartfelt on a distant shore.", + "storytelling": "Under the sprawling arms of that lone oak tree, Red unfolds Andy's letter, each word a testament to the trust and transformation forged between them. It's there, with the sun warming his back, that Red's decision crystallizes: to honor their friendship by journeying to the dream they once dared to envision. And on Zihuatanejo's shores, as they reunite, their friendship transcends the past, standing as a living monument to the power of conscious choice and enduring hope.", + "perspectives": { + "perspective_id": "3605d277-8770-4cfb-a282-435fa2677a7a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": null, + "narrative_function": "Knowledge", + "illustration": "knowing the truth about someone", + "summary": "Red knows he is not a changed man and tells the parole board that he's all fixed. They know he is lying.", + "storytelling": "Knowing that this is what they want to hear, knowing that he is supposed to say this and knowing that they will say no. The parole board wanting to know how he is doing. He knows ahead of time how this is going to go, which sets him up for failure.", + "perspectives": { + "perspective_id": "e8b312e1-5092-40b8-b0e5-c92c2acc1b14" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 2, + "narrative_function": "Ability", + "illustration": "practicing one's abilities", + "summary": "Untitled", + "storytelling": "Red demonstrates his ability to continue his illegal operations while pretending to be a reformed man. He is skilled at smuggling contraband and is able to maintain his criminal activities without getting caught.", + "perspectives": { + "perspective_id": "dc907189-aaba-4b1b-b62a-2545d869a570" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 3, + "narrative_function": "Desire", + "illustration": "desiring a better life", + "summary": "Untitled", + "storytelling": "Red watches Andy, seeing the hope and determination that he himself lacks. He begins to desire a better life, one that isn't defined by the walls of Shawshank. However, his fear of the unknown, the risks involved in pursuing such a life, and his own institutionalization hold him back. He's torn between his growing desire for change and his fear of stepping out of his comfort zone. This internal conflict could manifest in various ways, such as hesitation in supporting Andy's plans or expressing cynicism despite a hidden longing for hope.", + "perspectives": { + "perspective_id": "94efd65b-d7f4-41f9-9857-b002fea2d192" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 4, + "narrative_function": "Thought", + "illustration": "being cunning about someone", + "summary": "Untitled", + "storytelling": "Red's thoughts revolve around his own self-interest and survival. He carefully calculates his actions and words to manipulate others into believing his false reformation, while also ensuring that he is not implicated in any wrongdoing when Andy asks for help.", + "perspectives": { + "perspective_id": "b58b09db-884b-4212-b6d4-42d4b11375b0" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 1, + "narrative_function": "Fate", + "illustration": "being trapped by inevitable circumstances", + "summary": "Untitled", + "storytelling": "Andy's arrival at Shawshank is seemingly fated, as he is the only inmate without a criminal past. This sets him apart from the other prisoners and makes him a target for their belittlement and bullying. However, fate also brings Ellis Redding into Andy's life, as he steps in to protect him and becomes his mentor in navigating the harsh prison environment.", + "perspectives": { + "perspective_id": "d81b1667-4161-4b7c-bd37-30108b4fd3a9" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 2, + "narrative_function": "Prediction", + "illustration": "predicting someone will do something", + "summary": "Untitled", + "storytelling": "As Red takes Andy under his wing, he predicts that Andy's innocence will be his greatest asset. He believes that Andy's lack of guilt and corruption will allow him to maintain his integrity and resist the temptations of the prison. This prediction sets up a conflict with the prison guards, who see Andy as a threat to their authority and try to undermine Red's support of him.", + "perspectives": { + "perspective_id": "856b200e-2fc0-4e8e-aa97-9148c54a8615" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 3, + "narrative_function": "Interdiction", + "illustration": "hindering the inevitable", + "summary": "Untitled", + "storytelling": "Red's support of Andy becomes an interdiction for the prison guards, who see him as a troublemaker. They try to intimidate Red into stopping his mentorship of Andy, warning him of the consequences if he continues to support someone they perceive as a threat. This interdiction creates tension between Red and the guards, as he must decide whether to comply or defy their orders.", + "perspectives": { + "perspective_id": "b4879fae-75cc-4185-93b4-66d1ebd9f6e5" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 4, + "narrative_function": "Destiny", + "illustration": "having a destiny", + "summary": "Untitled", + "storytelling": "The Warden's belief in redemption and his strict moral code shape the destiny of the inmates in Shawshank. He enforces hard work, discipline, and adherence to his rules as the path to absolution. This clashes with Andy's innocence and refusal to conform to the corrupt practices within the prison, setting up a conflict between Andy and the Warden's vision of destiny.", + "perspectives": { + "perspective_id": "d4b195ef-ee3e-44c0-92af-433f9d251101" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 1, + "narrative_function": "Truth", + "illustration": "being honest about something", + "summary": "Untitled", + "storytelling": "Andy approaches Red and asks him for a rock hammer, claiming that he wants to pursue his hobby of rock collecting. Red is suspicious of Andy's true intentions and questions him about why he really wants the hammer. Andy assures Red that he only wants it for harmless reasons, but Red remains skeptical and uncertain.", + "perspectives": { + "perspective_id": "db98086e-6bf0-4fdf-80b0-3028d892cf0f" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 2, + "narrative_function": "Evidence", + "illustration": "collecting evidence about something", + "summary": "Untitled", + "storytelling": "Andy convinces the prison librarian to give him some books on geology, which he uses as evidence to support his claim that he genuinely wants the rock hammer for his hobby. Red observes Andy's dedication to learning and sees the evidence of his genuine interest in rocks. However, Red still questions whether Andy might be hiding ulterior motives.", + "perspectives": { + "perspective_id": "a051e714-f5a4-401c-bcb0-8c0a14dacbeb" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 3, + "narrative_function": "Suspicion", + "illustration": "suspecting someone's guilt", + "summary": "Untitled", + "storytelling": "As Andy continues to display resilience and determination in the face of the prison system's attempts to break him, Red becomes increasingly suspicious of Andy's true intentions. Red starts to suspect that Andy might have a plan to escape or manipulate the system. The growing suspicion creates tension between the two characters and leads to conflicts in their interactions.", + "perspectives": { + "perspective_id": "da0bc998-5d95-4ead-a98e-6c7017f7a900" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 4, + "narrative_function": "Falsehood", + "illustration": "telling a lie about a friend", + "summary": "Untitled", + "storytelling": "Red confronts Andy about his suspicions, accusing him of hiding his true intentions. Andy denies any wrongdoing and insists that he genuinely wants the rock hammer for his hobby. However, Red remains doubtful and feels betrayed by Andy's denial. The falsehoods and lack of trust between the two characters deepen the conflict and strain their budding friendship.", + "perspectives": { + "perspective_id": "f781428a-ce74-4a45-873b-cac66b9f9d79" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 1, + "narrative_function": "Proven", + "illustration": "being proven guilty", + "summary": "Untitled", + "storytelling": "In the context of your scene, Red starts with something Proven: he's a convicted murderer, and he's been denied parole before. This is a fact, a reality he can't escape. He's being called in to prove how he is done, and to Red its already proven to him that this process is broken.", + "perspectives": { + "perspective_id": "ea83d4d3-e1b6-4c46-bc26-e6e4a575ab81" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 2, + "narrative_function": "Result", + "illustration": "having repercussions on someone", + "summary": "Untitled", + "storytelling": "The Result beat could be the parole board's initial reaction to Red's presentation. Perhaps they seem unimpressed or skeptical, focusing on the result of his past actions (his crime) rather than his transformation. This could increase Red's frustration and cynicism, as he feels like he's being judged solely on his past, not on who he is now.", + "perspectives": { + "perspective_id": "d1d3e438-563a-4564-ab7b-f9a2a0879842" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 3, + "narrative_function": "Process", + "illustration": "focusing on the journey", + "summary": "Untitled", + "storytelling": "The Process beat could then involve Red trying to navigate this difficult situation. He might attempt different strategies to convince the board of his change, such as sharing specific examples of his good behavior in prison, expressing remorse for his crime, or outlining his plans for a law-abiding life after parole. This is the process of Red trying to transform the board's perception of him.validating their process, \"Oh, I'm a changed man, yessir...\"", + "perspectives": { + "perspective_id": "89966a4e-3339-4388-83c8-ec6d9f26f468" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 4, + "narrative_function": "Presumption", + "illustration": "being suspect of something", + "summary": "Untitled", + "storytelling": "By the end of the scene, Red could be left with the Presumption that no matter what he does or says, he'll always be seen as a criminal and will remain in prison forever. This presumption isn't based on any new evidence or facts presented in the meeting, but rather on Red's interpretation of the board's reactions and his own cynical outlook.The board is suspect that Red is telling the truth, and deny his parole. ", + "perspectives": { + "perspective_id": "e066ec75-2702-4cda-96d1-4bac1db60370" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 1, + "narrative_function": "Effect", + "illustration": "having repercussions on something", + "summary": "Untitled", + "storytelling": "Red's ability to continue his illegal operations while pretending to be reformed has a significant effect on the other characters and the overall plot. As Red successfully smuggles contraband, the criminal underworld becomes more active and influential, leading to an increase in crime rates and corruption in the city. This effect creates tension and conflict among law enforcement, as they struggle to uncover the source of the illegal activities and bring Red to justice.", + "perspectives": { + "perspective_id": "743794c1-bd1d-444a-9dc9-048ed3842b03" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 2, + "narrative_function": "Accurate", + "illustration": "doing accurate work", + "summary": "Untitled", + "storytelling": "Red's skills in smuggling contraband are accurate and well-honed. He meticulously plans each operation, ensuring that he remains undetected by authorities. Red's accuracy in executing his illegal activities adds an element of suspense and danger to the story, as law enforcement grows increasingly frustrated and determined to catch him. This accuracy also puts Red at odds with rival criminals who may see him as a threat to their own operations, leading to intense rivalries and conflicts within the criminal underworld.", + "perspectives": { + "perspective_id": "5f612913-d768-4756-9038-644293213dbe" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 3, + "narrative_function": "Deviation", + "illustration": "deviating", + "summary": "Untitled", + "storytelling": "Despite his outward appearance of a reformed man, Red's continued criminal activities create a significant deviation from the expected narrative. This deviation not only surprises the other characters in the story but also challenges their own beliefs and perceptions. Red's ability to deceive those around him and maintain his double life creates conflict within his relationships, particularly with those who have come to trust and rely on him. This deviation also sparks internal conflict within Red himself, as he grapples with the moral implications of his actions.", + "perspectives": { + "perspective_id": "331ae052-0409-4d6c-93e6-ec7f37f30077" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 4, + "narrative_function": "Cause", + "illustration": "causing someone to do something", + "summary": "Untitled", + "storytelling": "Red's ability to continue his illegal operations is caused by a combination of factors. His knowledge and experience in smuggling contraband, as well as his careful planning and execution, allow him to operate successfully without getting caught. Additionally, Red's charismatic personality and ability to maintain a facade of reformation enable him to deceive those around him, including law enforcement and his criminal rivals. This cause-effect relationship creates tension and conflict throughout the story, as the other characters become increasingly suspicious of Red's true intentions and work to unravel the secrets behind his criminal activities.", + "perspectives": { + "perspective_id": "4aceee07-2379-48e9-a77a-86f37fbe73af" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 9, + "narrative_function": "Closure", + "illustration": "resolving a mystery", + "summary": "Untitled", + "storytelling": "Andy's pursuit of knowledge and truth leads him to uncover evidence that could prove his innocence. He meticulously gathers documents, testimonies, and other pieces of information to build his case. However, as he gets closer to finding closure, he faces resistance from the warden, who tries to suppress the evidence and keep Andy's innocence hidden. This conflict between Andy's search for closure and the warden's attempts to deny it creates tension and raises the stakes for Andy's quest for justice.", + "perspectives": { + "perspective_id": "d6eaa11e-ff67-4f98-92ee-abaddcf598da" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 10, + "narrative_function": "Hope", + "illustration": "being hopeful", + "summary": "Untitled", + "storytelling": "Tommy's arrival with information that could potentially exonerate Andy sparks a glimmer of hope in Andy and the other inmates. They start to believe that there might be a chance for Andy to prove his innocence and regain his freedom. Despite the challenges and setbacks he faces, Andy's unwavering hope drives him to continue his pursuit of the truth. The conflict between hope and the obstacles that stand in its way creates a sense of anticipation and keeps the readers engaged in the story.", + "perspectives": { + "perspective_id": "1d459bd1-d43b-40be-afcd-154825ad03fc" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 11, + "narrative_function": "Dream", + "illustration": "pursuing the american dream", + "summary": "Untitled", + "storytelling": "Tommy is dreaming if he thinks he can make a difference and convince the warden otherwise when it comes to Andy.Throughout this part of the story, Andy's dream of freedom and vindication becomes more pronounced. His pursuit of knowledge and truth is not just about proving his innocence but also about fulfilling his dream of escaping Shawshank. As Andy shares his knowledge and empowers others with information, his dream becomes contagious, inspiring Red and other inmates to dream of a better life outside the prison walls. The conflict arises when the harsh reality of their circumstances clashes with their dreams, leading to moments of doubt and questioning.", + "perspectives": { + "perspective_id": "b3fff533-e775-41c5-b871-aa1a5406839a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 12, + "narrative_function": "Denial", + "illustration": "being denied", + "summary": "Untitled", + "storytelling": "Tommy doesn't deny Andy and what he knows about him, even when facing certain death (at least from Red's perspective).The warden, fueled by his desire for control and maintaining the status quo, denies Andy's pursuit of knowledge and truth. He tries to suppress the evidence and silence Andy, fearing that the truth will disrupt the order he has established within Shawshank. The conflict between Andy's relentless pursuit of truth and the warden's denial of it creates a power struggle that intensifies as the story progresses. The warden's denial becomes a source of conflict, fueling Andy's determination to expose the truth and seek justice.", + "perspectives": { + "perspective_id": "292a58f1-5041-4009-bb5d-d672ad388f9a" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 13, + "narrative_function": "Investigation", + "illustration": "investigating a murder", + "summary": "Untitled", + "storytelling": "Red begins to investigate Andy's secret plan, trying to uncover the truth behind his escape. He searches Andy's cell, questioning other inmates, and even confronts Andy himself. This investigation creates conflict as Red struggles to understand Andy's motives and whether he can trust him.", + "perspectives": { + "perspective_id": "e9158540-b74c-4916-8a5d-9b9d351b9e3b" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 14, + "narrative_function": "Appraisal", + "illustration": "being appraised by something", + "summary": "Untitled", + "storytelling": "As Red gathers more information about Andy's plan, he starts to reassess his own beliefs and perspective on hope and change. He reflects on his own experiences in prison and the impact Andy has had on him. This appraisal creates conflict within Red as he grapples with the idea of hope and whether it is worth pursuing.", + "perspectives": { + "perspective_id": "e772cb23-0ca5-412d-8022-f031398e9d3e" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 15, + "narrative_function": "Reappraisal", + "illustration": "re-evaluating a conclusion", + "summary": "Untitled", + "storytelling": "The letter under the rock near the tree.After discovering the truth about Andy's plan and witnessing the exposure of the warden's corruption, Red undergoes a significant reappraisal of his understanding of hope. He realizes that Andy's actions have led to a potential opportunity for redemption and a chance at a different life. This reappraisal creates conflict as Red must decide whether to embrace hope and take a leap of faith or remain in his familiar and comfortable but stagnant prison life.", + "perspectives": { + "perspective_id": "3ff5a993-bf82-401e-bf31-b8ae4d68f444" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 16, + "narrative_function": "Doubt", + "illustration": "doubting oneself", + "summary": "Untitled", + "storytelling": "In the midst of his reappraisal, doubt creeps into Red's mind. He questions whether he is capable of change and if he deserves a second chance. This doubt creates internal conflict for Red as he grapples with his own self-worth and the fear of failure. It also serves as a source of external conflict as Red faces skepticism and resistance from other inmates who try to discourage him from pursuing a life outside of Shawshank.", + "perspectives": { + "perspective_id": "e026bc78-2eda-4d13-8c68-d3c089bf1468" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 13, + "narrative_function": "State of Being", + "illustration": "showing something's true colors", + "summary": "Untitled", + "storytelling": "Red starts off as a prisoner, confined within the walls of Shawshank. He is oppressed and trapped, longing for freedom and a sense of purpose in his life.", + "perspectives": { + "perspective_id": "8834d55f-7f3b-45ab-bdf4-60afcb550fa3" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 14, + "narrative_function": "Circumstances", + "illustration": "being in a catch-22", + "summary": "Untitled", + "storytelling": "Red's circumstances change when he meets Andy, a fellow inmate who becomes his friend. Andy's escape plan gives Red hope and the desire for something more in life. However, Red is conflicted about whether to join Andy or stay within the confines of the prison.", + "perspectives": { + "perspective_id": "456dfbbe-5d20-42a9-aa97-8d2a25893bad" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 15, + "narrative_function": "Situation", + "illustration": "being in a predicament", + "summary": "Untitled", + "storytelling": "As Red contemplates his decision, he faces the conflict of staying in a familiar but oppressive situation or taking the risk of breaking parole and escaping. The prison authorities become suspicious of Red's growing friendship with Andy, adding tension to the situation.", + "perspectives": { + "perspective_id": "d0fdc650-2753-46eb-8dc8-09a3052e37e7" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 16, + "narrative_function": "Sense of Self", + "illustration": "taking stock of who one is", + "summary": "Untitled", + "storytelling": "Ultimately, Red makes the decision to break parole and escape with Andy. This choice challenges his sense of self as a law-abiding citizen and forces him to confront his rebellious tendencies. Red's excitement at the prospect of starting anew is tempered by the uncertainty of the journey ahead, but he embraces the opportunity for personal growth and self-discovery.", + "perspectives": { + "perspective_id": "8a7efcbe-b977-42e0-8ac9-4c37d5bc05da" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Past", + "illustration": "making up for past mistakes", + "summary": "The Warden is determined to help the inmates of Shawshank find redemption through hard work, discipline, and adherence to his strict moral code.", + "storytelling": "Meanwhile, the Warden, a deeply religious man, is determined to make sure everyone in Shawshank receives absolution and forgiveness for their sins. He believes that through hard work, discipline, and adherence to his strict moral code, the inmates can find redemption.1. Fate: Warden Norton, a deeply religious man, is appointed to Shawshank State Penitentiary. He sees it as his divine fate to bring moral order and redemption to the prison.2. Prediction: The Warden predicts that his strict moral code, enforced through hard work and discipline, will reform the inmates. He believes that everyone in Shawshank can find absolution and forgiveness for their sins.3. Interdiction: The Warden intervenes in the lives of the inmates by implementing a rigorous work program. He believes that through labor, the inmates can make up for their past mistakes. He also starts a Bible study group, further enforcing his moral code.4. Destiny: The Warden's actions start to shape the destiny of Shawshank. The prison becomes known for its disciplined inmates and moral teachings. However, beneath this facade, the Warden is exploiting the inmates for his own gain, using their labor for public works projects and pocketing the profits.", + "perspectives": { + "perspective_id": "273df6dc-c977-43b4-a6ba-0f78b1ca571d" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 9, + "narrative_function": "Choice", + "illustration": "being reluctant to make a choice", + "summary": "Untitled", + "storytelling": "Andy, upon his release from solitary confinement, chooses to share his hopeful attitude with Red, despite knowing that Red is skeptical. This choice creates conflict as Red is resistant to embracing hope, believing it to be futile in their current situation. However, Andy persists in trying to convince Red, leading to a clash of choices and perspectives.", + "perspectives": { + "perspective_id": "27e56e44-9317-463e-b58b-fe3a6d975488" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 10, + "narrative_function": "Preconception", + "illustration": "being predisposed against someone", + "summary": "Untitled", + "storytelling": "Norton's opportunistic attitude and willingness to exploit prison labor for personal gain is driven by his preconception that he can manipulate the system to his advantage. This preconception creates conflict as it goes against the moral principles of the other characters, particularly Andy, who sees the exploitation as unjust. The clash of preconceptions leads to tension and a questioning of values.", + "perspectives": { + "perspective_id": "ab7b4b7f-6018-4c26-ad2e-ed438dcdf1f3" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 11, + "narrative_function": "Openness", + "illustration": "having a policy of openness", + "summary": "Untitled", + "storytelling": "Andy's openness to seizing the opportunity to launder money using an alias demonstrates his resourcefulness and adaptability. This openness creates conflict as it goes against the rigid rules and regulations of the prison system, particularly the Warden's controlling attitude. The clash of openness and control leads to a power struggle between Andy and the Warden, with Andy risking his own safety to maintain his sense of agency.", + "perspectives": { + "perspective_id": "3f33b124-481f-42a2-a3a9-9e30aea0d743" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 12, + "narrative_function": "Delay", + "illustration": "being delayed", + "summary": "Untitled", + "storytelling": "The delay in Andy's release, caused by the Warden's desire to maintain control and protect his own interests, creates conflict as it prolongs Andy's imprisonment and prevents him from fully realizing his hope for freedom. This delay also frustrates the other characters, particularly Tommy Williams, who holds information that could expedite Andy's release. The clash of delay and urgency heightens the tension and pushes the characters to reevaluate their priorities and take action.", + "perspectives": { + "perspective_id": "e9f0976e-5bcc-42fd-8c2d-9879286039ee" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Being", + "illustration": "refusing to pretend everything is okay", + "summary": "Untitled", + "storytelling": "When we first meet Red, we find him sneaking in contraband for inmates while telling the review board he's a changed man. \"I can honestly say I'm a changed man. I'm no longer a danger to society. That's the God's honest truth. No doubt about it.\" Clearly, he's not, and clearly he's putting up a ton of resistance towards any kind of personal growth. He feigns reconciliation while continuing to play the role of a minor criminal. Returning to circulation, he continues his illegal operations while looking the other way when Andy asks for help.", + "perspectives": { + "perspective_id": "1639455d-9765-4224-8175-d10da07f326f" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": null, + "narrative_function": "Knowledge", + "illustration": "knowing something's business", + "summary": "Red's extensive knowledge of the prison's rules and regulations leads him to smuggle contraband, but when he miscalculates and gets caught, he is thrown into solitary confinement and forced to question if his knowledge is really helping him", + "storytelling": "Red, with his extensive knowledge of the prison's rules and regulations, is well aware that smuggling contraband is against the rules. However, he continues to do it, using his knowledge to evade the guards and keep his operation hidden. One day, he miscalculates and a new guard, who is not part of the usual patterns Red has memorized, catches him in the act. This leads to Red being thrown into solitary confinement, a harsh punishment that makes him question if his knowledge and the way he's been using it is truly serving him or leading him into more trouble. ", + "perspectives": { + "perspective_id": "5e05a63e-2898-488d-b052-194eb50f4aa4" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 2, + "narrative_function": "Ability", + "illustration": "being able to do something", + "summary": "Untitled", + "storytelling": "Red has the ability to smuggle contraband into the prison without getting caught. He uses his connections and experience to successfully bring in items for the inmates. However, this ability also becomes a source of conflict as it puts him at odds with the prison authorities and jeopardizes his own freedom.", + "perspectives": { + "perspective_id": "f7605810-3803-4114-94f0-41dcd21abccb" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 3, + "narrative_function": "Desire", + "illustration": "wanting to be someone better", + "summary": "Untitled", + "storytelling": "Red's desire to maintain his reputation as a criminal and his resistance towards personal growth create conflict within himself. He wants to be seen as a changed man by the review board, but his actions contradict his words. His desire to continue his illegal operations clashes with his desire to convince others that he has changed.", + "perspectives": { + "perspective_id": "ff51fabd-e880-4ca2-9042-499385157185" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 4, + "narrative_function": "Thought", + "illustration": "thinking", + "summary": "Untitled", + "storytelling": "Throughout this part of the story, Red's thoughts are conflicted. He knows that he should stop smuggling contraband and focus on his own personal growth, but he continues to engage in illegal activities. His thoughts are a constant battle between his desire for change and his reluctance to let go of his criminal identity.", + "perspectives": { + "perspective_id": "18e4641e-f115-4fe8-a47e-aaac79821870" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 1, + "narrative_function": "Proven", + "illustration": "being proven innocent", + "summary": "Red has earned respect, fear, and untouchability within the prison walls through his extensive knowledge of the prison's rules and regulations, resourcefulness, and ability to smuggle contraband without getting caught.", + "storytelling": "Red, with his extensive knowledge of the prison's rules and regulations, has proven himself to be the unspoken king of Shawshank. His ability to smuggle contraband without getting caught has not only given him a sense of power and control but also an elevated status among the inmates. His reputation is built on the fact that he has consistently proven his cunning and resourcefulness, successfully navigating the treacherous waters of the prison system time and time again. This has earned him respect, fear, and a certain level of untouchability within the prison walls. His proven track record has made him an indispensable part of the prison ecosystem, a man who can get things done when no one else can.", + "perspectives": { + "perspective_id": "5aa2572f-8052-4600-846e-3a822f41130e" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 2, + "narrative_function": "Result", + "illustration": "lacking results from someone", + "summary": "Red's attempt to take control of the situation leads to his arrest and solitary confinement after being caught smuggling contraband.", + "storytelling": "Frustrated by the lack of results from his team, Red decides to experiment with a new approach. He's always been the one to follow the rules, but the inertia of the system and the inaction of his team have pushed him to his limits. Late at night, he sneaks into the laundry room, skillfully navigating the maze of machines and piles of uniforms. He's never done anything like this before, but he's desperate for change.He finds the hidden stash of contraband - cigarettes and girlie magazines - and starts to smuggle them out. This act of rebellion is his way of resisting the system that's been holding him back. Just as he's about to leave, a beam of light cuts through the darkness. A new guard, vigilant and uncorrupted, has been doing rounds. Caught in the act, Red freezes, the contraband falling from his hands.The guard's stern voice echoes in the room, \"You're under arrest, Red.\" The sense of power and control Red once had shatters in that moment. His attempt at resistance and experimentation has led to his arrest and subsequent placement in solitary confinement. His rejection of the status quo has come at a high cost, but it's also given him a new perspective on his situation.", + "perspectives": { + "perspective_id": "240f453c-004f-48d2-bef1-61f29f56b801" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 3, + "narrative_function": "Process", + "illustration": "someone having an overly complicated process", + "summary": "Despite being caught smuggling contraband, Red remains confident and attempts to charm the new guard into joining his operation, but is unsuccessful.", + "storytelling": "Early in the story, Red is caught in the act of smuggling contraband. Unfazed, he approaches the new guard, attempting to charm him into becoming a part of his operation. He subtly hints at his role in Shawshank, saying, \"I'm the kind of guy that gets you things.\" However, the guard remains unmoved, stating firmly that he's just doing his job. Despite this setback, Red remains confident and dismisses the incident as a minor hiccup, convinced that he can continue his operations as usual.", + "perspectives": { + "perspective_id": "c701eae2-862f-48e8-a361-35cb5cd414e0" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Event", + "sequence": 4, + "narrative_function": "Presumption", + "illustration": "showing that something is yet to be verified", + "summary": "Red, an optimist and strategist, is excited to face a new challenge when he's put in solitary confinement, and he's determined to prove he can manipulate the new guard.", + "storytelling": "Red, known for his extensive knowledge of the prison's rules and his ability to manipulate the guards, finds himself in a predicament when he's caught by the new guard and put in solitary confinement. The other prisoners laugh at him, telling him he's finally screwed up. But Red, ever the optimist and strategist, just laughs back. He sees this not as a failure, but as a new challenge. His presumption that he can manipulate this new guard is yet to be verified, and he's excited about the prospect of starting over. As he's led to solitary, he shouts back at the other prisoners, \"I've only just begun...\"", + "perspectives": { + "perspective_id": "9840c9e4-94d3-46b5-92bb-9db29faf05d6" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 5, + "narrative_function": "Permission", + "illustration": "allowing a group to go free", + "summary": "Untitled", + "storytelling": "Apologies, but I had trouble illustrating Permission for this Storybeat.", + "perspectives": { + "perspective_id": "5b2d779c-2763-444e-a59e-c9852f18a473" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 6, + "narrative_function": "Need", + "illustration": "needing a wife", + "summary": "Untitled", + "storytelling": "Apologies, but I had trouble illustrating Need for this Storybeat.", + "perspectives": { + "perspective_id": "710c9830-dda4-4cc8-9f67-09c19a30f852" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 7, + "narrative_function": "Expediency", + "illustration": "doing something inadvisable", + "summary": "Untitled", + "storytelling": "Apologies, but I had trouble illustrating Expediency for this Storybeat.", + "perspectives": { + "perspective_id": "a2d09805-8514-4024-9883-952cd48e24b9" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 8, + "narrative_function": "Deficiency", + "illustration": "being afraid of lacking agency", + "summary": "Untitled", + "storytelling": "Apologies, but I had trouble illustrating Deficiency for this Storybeat.", + "perspectives": { + "perspective_id": "83348769-4dd5-42c3-b4f6-8f7c8236760f" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 9, + "narrative_function": "Rationalization", + "illustration": "rationalizing something", + "summary": "Untitled", + "storytelling": "Red initially rationalizes that he has no idea what the Italian ladies were singing about, believing that some things are best left unsaid. However, as he reflects on the beauty of their singing, he begins to evolve and expresses the idea that they were singing about something so beautiful it can't be expressed in words. This internal conflict between his initial rationalization and his evolving perspective creates tension within Red's character.", + "perspectives": { + "perspective_id": "856cc043-1897-4ce8-a323-3503dbec045b" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 10, + "narrative_function": "Commitment", + "illustration": "being committed", + "summary": "Untitled", + "storytelling": "Red's commitment to his friendship with Andy is tested when a new arrival seeks his help. Red, understanding the impact of institutionalized thinking, advises the boy against getting the wrong idea that he can make a difference in Shawshank. This commitment to protecting Andy and guiding the new arrival creates conflict as Red must balance his loyalty to his friend with the potential consequences of helping others.", + "perspectives": { + "perspective_id": "41a1d586-346a-4a6a-93de-bb352d7acffc" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 11, + "narrative_function": "Responsibility", + "illustration": "having responsibility for someone", + "summary": "Untitled", + "storytelling": "Red takes on the responsibility of guiding the new arrival and protecting Andy from the dangers of Shawshank. He understands the weight of his actions and the potential consequences they may have. This responsibility creates conflict as Red must navigate the complexities of prison life while fulfilling his duty to his friends.", + "perspectives": { + "perspective_id": "c6ff9cdf-fc6f-47ed-9581-ab018e45f15b" + } + }, + { + "id": "[[ internal id ]]", + "context": "Main Character", + "appreciation": "Progression", + "sequence": 12, + "narrative_function": "Obligation", + "illustration": "feeling obligated", + "summary": "Untitled", + "storytelling": "Red feels an obligation to use his experience and wisdom to help others in Shawshank. He recognizes the power he holds due to his long-term incarceration and uses it to guide the new arrival and advise him against unrealistic expectations. This obligation creates conflict as Red must balance his desire to help others with the limitations imposed by the prison system.", + "perspectives": { + "perspective_id": "b47475c4-5063-483f-a7c1-31a317d436c3" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 5, + "narrative_function": "Value", + "illustration": "being valuable", + "summary": "Untitled", + "storytelling": "In this part of the story, Andy's focus on obtaining goals and achievements highlights the value he places on making a difference within the prison. He successfully secures funding for the prison library, showing his belief in the importance of education and access to knowledge. This value conflicts with Red's initial belief that life in prison is devoid of purpose, as Andy's actions demonstrate that there is value in striving for positive change even in such a restrictive environment.", + "perspectives": { + "perspective_id": "4316733d-fa42-446f-9639-655675e98679" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 6, + "narrative_function": "Confidence", + "illustration": "being confident one will succeed", + "summary": "Untitled", + "storytelling": "Andy's accomplishments in improving the living conditions for his fellow inmates and gaining favor with the guards and the warden also showcase his confidence in his abilities. He takes on the challenge of making the prison a better place, displaying a belief in his own skills and resourcefulness. This confidence clashes with Red's initial skepticism and lack of belief in the possibility of effecting change, as Andy's actions prove that confidence can lead to tangible results even in a seemingly hopeless situation.", + "perspectives": { + "perspective_id": "351a86aa-9059-43e8-8d82-5b49ec234b1c" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 7, + "narrative_function": "Worry", + "illustration": "having apprehensions about someone", + "summary": "Untitled", + "storytelling": "This is all about Brooks' reaction to everythingWhile Andy's focus on obtaining goals and achievements is admirable, it also brings about worry for Red. Red becomes concerned that Andy's determination to make a difference may lead to disappointment or even danger. Red worries that Andy's actions may attract unwanted attention from the prison authorities or other inmates, putting both of them at risk. This worry creates conflict between Red's desire to protect himself and Andy's unwavering pursuit of his goals.", + "perspectives": { + "perspective_id": "6209f050-3f47-4299-b238-fde267c64df0" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 8, + "narrative_function": "Worth", + "illustration": "being worthwhile", + "summary": "Untitled", + "storytelling": "Playing the music because even though he knows what's going to happen to him, it's worth it to share with everyone in the prison.Andy's success in obtaining goals and achievements within the prison challenges Red's perception of self-worth. As Andy's actions bring about positive changes and gain him favor with the guards and the warden, Red begins to question his own worth and purpose within the prison. He wonders if he too can find a sense of worth and make a difference, leading to a conflict within himself as he grapples with his own self-doubt and the possibility of finding his own path to worthiness.", + "perspectives": { + "perspective_id": "293b2d24-ab56-4e8b-b636-9b6d527ecdfa" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Signpost", + "sequence": 1, + "narrative_function": "Past", + "illustration": "relating the past lives of others", + "summary": "Heywood's stories from the past serve as a source of hope and determination for Andy in his quest for freedom, while also providing a supportive environment in the harsh reality of Shawshank prison.", + "storytelling": "Heywood's unwavering belief in Andy's innocence creates a division among the inmates. Some side with Heywood, believing in Andy's innocence and supporting his quest for freedom. Others see Andy as a threat to their own survival within the prison system and oppose him.", + "perspectives": { + "perspective_id": "7f2bfd40-235a-4594-a196-3c9c9482b8eb" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 5, + "narrative_function": "Fact", + "illustration": "focusing on the facts", + "summary": "Untitled", + "storytelling": "Andy begins to manipulate the guards' future prospects by offering his expertise in tax matters. By doing so, he not only gains their favor but also subtly shifts the power dynamics within the prison. This act of manipulation showcases Andy's ability to navigate the complex psychological landscape of Shawshank and use it to his advantage.", + "perspectives": { + "perspective_id": "11da3df4-c0af-40e8-9769-2057225de0ba" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 6, + "narrative_function": "Security", + "illustration": "working in a maximum security prison", + "summary": "Untitled", + "storytelling": "Andy sets up a library to improve the educational prospects of the inmates, challenging the status quo and the prison's oppressive environment. This act of defiance against the system demonstrates Andy's determination to bring about change and hope within the prison walls. Through this endeavor, he manipulates the inmates' mindset, encouraging them to believe in a better future and their own potential for growth.", + "perspectives": { + "perspective_id": "c475d68a-2443-4bc8-a61b-33a0fcc7e739" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 7, + "narrative_function": "Threat", + "illustration": "being threatened by a group", + "summary": "Untitled", + "storytelling": "Brooks, overwhelmed by the prospect of a future outside of Shawshank, takes a knife to Heywood's throat. This dramatic event highlights the deep-rooted psychological dysfunction that can result from long-term institutionalization. Brooks' fear of the unknown and inability to cope with change leads him to lash out violently, showcasing the damaging effects of the prison system on the inmates' mental health.", + "perspectives": { + "perspective_id": "f06852cb-bd61-4aa0-bf56-eb97300b8945" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 8, + "narrative_function": "Fantasy", + "illustration": "living in a fantasy world", + "summary": "Untitled", + "storytelling": "Andy, through his manipulation of the guards and his efforts to improve the inmates' educational prospects, creates a fantasy of a better life within the confines of Shawshank. This fantasy serves as a source of hope and escape for the prisoners, allowing them to momentarily forget the harsh reality of their situation. However, this fantasy is also a source of conflict as it clashes with the harsh truth of life in prison and the constant threat of violence.", + "perspectives": { + "perspective_id": "205c40f9-b6cc-463a-ae11-e8cf3b0168a4" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 13, + "narrative_function": "Work", + "illustration": "making the necessary effort to get out of the situation", + "summary": "Untitled", + "storytelling": "Andy, feeling hopeless after Tommy's murder, becomes more withdrawn and starts planning his escape. He uses his knowledge of the Warden's illegal activities to gather evidence and expose the corruption within the prison. This becomes his main focus and he works tirelessly to gather the necessary information, often risking his own safety in the process. The conflict arises as Andy must navigate the prison's strict routines and surveillance to carry out his plan without raising suspicion.", + "perspectives": { + "perspective_id": "50cdffa8-ce0e-4a1f-b8ce-db027726abae" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 14, + "narrative_function": "Attraction", + "illustration": "being attracted to danger", + "summary": "Untitled", + "storytelling": "Red, initially skeptical of hope, starts to see its value after witnessing Andy's determination. He becomes intrigued by Andy's plan and is drawn to his unwavering belief in a better future. Red's perspective on life begins to change as he starts to question the system they've been living under. The conflict arises as Red grapples with his own doubts and fears, torn between his loyalty to the prison and his growing admiration for Andy's resilience.", + "perspectives": { + "perspective_id": "32ce266b-6387-46fc-aa00-c26ac5f5f6f4" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 15, + "narrative_function": "Repulsion", + "illustration": "finding something revolting", + "summary": "Untitled", + "storytelling": "The Warden's corruption and control over the prison become more apparent as Andy uncovers evidence of his illegal activities. The inmates, including Red, start to question the system they've been living under and feel repulsed by the Warden's abuse of power. The conflict intensifies as the Warden becomes aware of Andy's activities and tries to maintain his control over the prison, resorting to intimidation and threats to keep the inmates in line.", + "perspectives": { + "perspective_id": "db4ddfda-1cda-46a1-babc-16db2065cb74" + } + }, + { + "id": "[[ internal id ]]", + "context": "Objective Story", + "appreciation": "Progression", + "sequence": 16, + "narrative_function": "Attempt", + "illustration": "trying to escape", + "summary": "Untitled", + "storytelling": "As Andy's escape plan comes to fruition, he meticulously executes each step, using his knowledge of the prison's routines and the Warden's illegal activities to his advantage. The conflict reaches its peak as Andy must navigate the heightened security measures in place due to his growing suspicions. On the night of his escape, Andy successfully switches out the Warden's ledger with his Bible, leaving a note that exposes the corruption within the prison. The conflict is resolved as Andy escapes, leaving the inmates and the Warden in shock and uncertainty about the future.", + "perspectives": { + "perspective_id": "7b9bf2ae-2cfb-4828-bc57-16bfca8ab46f" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Signpost", + "sequence": 3, + "narrative_function": "Learning", + "illustration": "", + "summary": "Andy's escape plan challenges Red's resignation.", + "storytelling": "In the dimly lit prison library, Andy Dufresne meticulously explains his escape plan to Red, revealing the true extent of his resourcefulness and hope. Red, initially skeptical, finds himself questioning his own long-held beliefs about the futility of hope and the inevitability of their fate. As Andy's determination becomes undeniable, Red feels the stirrings of a new perspective, realizing that perhaps he too has underestimated his own capacity for change.", + "perspectives": { + "perspective_id": "70785f5e-828d-4d67-8d56-05be1f0e93fb" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 9, + "narrative_function": "Closure", + "illustration": "learning one's true capacity", + "summary": "Andy's termination inspires Red to reassess life.", + "storytelling": "As Andy is thrown into solitary confinement, his spirit remains unbroken, and he continues to work on his escape plan. This act of defiance and hope in the face of termination deeply impacts Red, who begins to question his own acceptance of his fate. Red's internal struggle intensifies as he realizes that Andy's unwavering determination forces him to confront his own beliefs and the possibility of change.", + "perspectives": { + "perspective_id": "19255a01-0304-4111-9963-0129f2d3f3e6" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 10, + "narrative_function": "Hope", + "illustration": "learning one's true capacity", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "5eeb8f40-99f4-429d-bc42-bc17bcfc296f" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 11, + "narrative_function": "Dream", + "illustration": "learning one's true capacity", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "c83af3ca-0f29-4a43-9185-f418d288e2d7" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Progression", + "sequence": 12, + "narrative_function": "Denial", + "illustration": "learning one's true capacity", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "34c795a0-b91d-4a62-8753-cf9412792ad2" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Event", + "sequence": 33, + "narrative_function": "Knowledge", + "illustration": "being terminated by someone", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "a91f5d8b-92e2-40f2-939b-ff26af32c651" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Event", + "sequence": 34, + "narrative_function": "Order", + "illustration": "being terminated by someone", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "3a0e7de5-985d-4019-b521-c12b3af4c833" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Event", + "sequence": 35, + "narrative_function": "Chaos", + "illustration": "being terminated by someone", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "20c9bf57-1053-4ff0-85ee-fe45383ce4ed" + } + }, + { + "id": "[[ internal id ]]", + "context": "Influence Character", + "appreciation": "Event", + "sequence": 36, + "narrative_function": "Thought", + "illustration": "being terminated by someone", + "summary": "Untitled", + "storytelling": "", + "perspectives": { + "perspective_id": "31c0384f-62eb-432c-898b-2644cc703fed" + } + } + ] + }, + "storytelling": { + "overviews": [], + "moments": [] + } + } + ] +} \ No newline at end of file diff --git a/examples/the-shawshank-redemption.json b/examples/the-shawshank-redemption.json index ec56ed2..69346d7 100644 --- a/examples/the-shawshank-redemption.json +++ b/examples/the-shawshank-redemption.json @@ -1,2068 +1,183 @@ { + "schema_version": "1.2.0", "story": { - "id": "dd488e87-41b5-4927-b5ac-d89561510932", + "id": "story_shawshank_2026", "title": "The Shawshank Redemption", - "genre": "the genre", - "logline": "the logline", - "created_at": "2023-05-29T21:52:25.000000Z" - }, - "narratives": [ - { - "id": "78adcfde-3a64-443b-b297-3294ff4ed00d", - "title": "The Shawshank Redemption", - "subtext": { - "perspectives": { - "i": [ + "genre": "Drama", + "logline": "A wrongly convicted banker sustains hope while enduring institutional brutality and corruption.", + "created_at": "2023-05-29T21:52:25Z", + "narratives": [ + { + "id": "narrative_shawshank_central", + "title": "Central Narrative", + "subtext": { + "perspectives": [ { - "id": "2b6380b0-4423-442a-bdbf-4eba7cb4a598", + "id": "perspective_shawshank_mc", "author_structural_pov": "i", - "summary": "Ellis \u00e2\u20ac\u0153Red\u00e2\u20ac\u009d Redding", - "storytelling": "Red, a seasoned inmate, carries a profound sense of loyalty and a protective instinct that often puts him at odds with his own survival instincts. His years in the system have made him a pragmatic realist, yet he harbors a quiet hope for redemption that he rarely admits, even to himself." + "summary": "Red", + "storytelling": "Red tracks the tension between resignation and hope from inside prison life." + }, + { + "id": "perspective_shawshank_ic", + "author_structural_pov": "you", + "summary": "Andy", + "storytelling": "Andy pressures everyone around him to reconsider what freedom requires." + }, + { + "id": "perspective_shawshank_os", + "author_structural_pov": "they", + "summary": "Shawshank institution", + "storytelling": "The prison system enforces control through fear, corruption, and routine violence." + }, + { + "id": "perspective_shawshank_rs", + "author_structural_pov": "we", + "summary": "Red and Andy", + "storytelling": "Their friendship transforms from transactional trust into shared conviction." } ], - "we": [ + "players": [ { - "id": "26b4d894-d122-4e84-9d1d-dc4eb15803af", - "author_structural_pov": "we", - "summary": "friendship", - "storytelling": "The friendship between Red and Andy begins as a cautious connection, shaped by the harsh realities of prison life and their contrasting outlooks on hope. As they share stories, advice, and moments of vulnerability, their bond deepens into a mutual reliance that challenges their individual beliefs and fosters a profound sense of trust and understanding." + "id": "player_shawshank_red", + "name": "Ellis Boyd 'Red' Redding", + "role": "Main Character", + "visual": "Longtime inmate with composed, observant bearing.", + "audio": "Measured narration and dry humor.", + "summary": "A pragmatic survivor who slowly reopens to hope.", + "storytelling": "Red interprets Andy's choices against his own institutionalized habits.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_mc" + } + ] + }, + { + "id": "player_shawshank_andy", + "name": "Andy Dufresne", + "role": "Influence Character", + "visual": "Quiet, deliberate, and emotionally guarded.", + "audio": "Calm speech under pressure.", + "summary": "A principled outsider who refuses to surrender internal freedom.", + "storytelling": "Andy steadily applies intelligence and persistence to impossible odds.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_ic" + } + ] } ], - "you": [ + "dynamics": [ { - "id": "2cc7ab49-abd3-4e77-ad52-8555a653d00d", - "author_structural_pov": "you", - "summary": "Tommy Williams", - "storytelling": "Tommy Williams exudes a brash confidence and a hunger for validation, often embellishing his past exploits to gain respect among the inmates. His impulsive nature and need to prove himself frequently lead him into risky situations, making him both a wildcard and a potential liability in the delicate balance of prison dynamics." + "id": "dynamic_shawshank_outcome", + "dynamic": "story_outcome", + "vector": "success", + "summary": "The objective effort against corruption succeeds.", + "storytelling": "Institutional control is publicly exposed and broken." }, { - "id": "7ce35b24-bef6-4375-ba46-1a6f4abdf658", - "author_structural_pov": "you", - "summary": "Andy Dufresne", - "storytelling": "Andy Dufresne's meticulous and calculated demeanor masks a deep-seated determination to reclaim his autonomy and expose the injustices of the system that wronged him. His quiet, methodical approach to problem-solving often leads him to manipulate situations and people subtly, always keeping his ultimate goal in sight while maintaining an air of unassuming composure." + "id": "dynamic_shawshank_judgment", + "dynamic": "story_judgment", + "vector": "good", + "summary": "The personal ending affirms hope over despair.", + "storytelling": "Red chooses life beyond institutional fear." } ], - "they": [ + "storypoints": [ { - "id": "38830cab-af1c-4184-aa54-eb8d027e5621", - "author_structural_pov": "they", - "summary": "Sowing Hope in Shawshank's Brutality", - "storytelling": "Within the oppressive environment of a high-security prison, a misjudged former banker navigates the brutality of institutional life. The system's corruption relies on exploitation and dehumanization, yet small acts of intelligence and camaraderie begin to inspire a resilience among inmates. In this bleak context, the struggle is centered on persisting hope and resisting the crushing force of the institution." + "id": "storypoint_shawshank_goal", + "appreciation": "Story Goal", + "narrative_function": "Future", + "illustration": "holding a concrete vision beyond prison walls", + "summary": "The narrative objective is to realize a life outside the prison system's grip.", + "storytelling": "Andy sustains a future-oriented goal despite systemic opposition.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_os" + } + ] + }, + { + "id": "storypoint_shawshank_mc_problem", + "appreciation": "Main Character Problem", + "narrative_function": "Avoid", + "illustration": "avoiding vulnerability to prevent disappointment", + "summary": "Red's self-protection keeps him emotionally constrained.", + "storytelling": "He resists hope because hope risks collapse.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_mc" + } + ] + } + ], + "storybeats": [ + { + "id": "beat_shawshank_signpost_1", + "scope": "signpost", + "sequence": 1, + "signpost": 1, + "throughline": "Objective Story", + "narrative_function": "Past", + "summary": "Past convictions and institutional history define present constraints.", + "storytelling": "Arrival at Shawshank establishes the prison's entrenched power structure.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_os" + } + ] + }, + { + "id": "beat_shawshank_progression_6", + "scope": "progression", + "sequence": 6, + "signpost": 2, + "throughline": "Relationship Story", + "narrative_function": "Trust", + "summary": "Red and Andy move from caution toward mutual commitment.", + "storytelling": "Shared risk and private disclosures deepen relational stakes.", + "perspectives": [ + { + "perspective_id": "perspective_shawshank_rs" + } + ] } ] }, - "players": [ - { - "id": "d5a5261e-e949-44ec-810b-0e0bae3a43ad", - "name": "Ellis \"Red\" Redding", - "role": "the guy who can get you anything", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Ellis \"Red\" Redding is a crucial player in the story as he is the one who can get anything for anyone in Shawshank. His motivations to support and help those in need make him an important ally for Andy, who needs his help to obtain certain items that will aid in his escape plan. Red's conscience, however, makes him hesitant to take risks that could jeopardize his own safety. Despite this, Red ultimately decides to help Andy in his quest for freedom, which is essential to the story goal of overcoming the injustice of Andy's wrongful imprisonment.", - "elements": [ - { - "element": "Support", - "storytelling": "Ellis \"Red\" Redding is an opportunity supporter." - }, - { - "element": "Help", - "storytelling": "Ellis \"Red\" Redding helps those in Shawshank get what they're looking for." - }, - { - "element": "Conscience", - "storytelling": "Ellis \"Red\" Redding would rather not do something if it means he'll stay safe." - } - ], - "perspectives": { - "perspective_id": "1b58e70f-ad6b-4b13-8423-07f2558d7deb" - } - }, - { - "id": "a0b0262a-127c-4e1a-a5e2-198fbe82931c", - "name": "Andy Dufresne", - "role": "the banker who killed his wife", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "The banker who killed his wife functions as the protagonist of the story, driving the plot forward towards the Story Goal of overcoming the injustice of his wrongful imprisonment. His pursuit of happiness and his ability to get others to think about a different way of being are key to his success in achieving this goal. Despite the many obstacles he faces, the banker's unwavering vision of a brighter future outside of prison gives him the strength to persevere and ultimately achieve his freedom.", - "elements": [ - { - "element": "Oppose", - "storytelling": "Andy Dufresne foments opposition." - }, - { - "element": "Pursuit", - "storytelling": "Andy Dufresne pursues his own happiness." - }, - { - "element": "Consider", - "storytelling": "Andy Dufresne gets others to think about a different way of being." - } - ], - "perspectives": { - "perspective_id": "4525cdca-b0f4-4ddf-aa0c-23a0599d59a1" - } - }, - { - "id": "c8a2691b-5dd6-4535-8a13-2578992f0c1f", - "name": "Warden Samuel Norton", - "role": "the warden of Shawshank Prison", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Warden Samuel Norton functions as the primary antagonist in the story, as he is the one responsible for maintaining the corrupt and oppressive system within Shawshank prison. His motivations to avoid anyone leaving or undermining his work directly conflict with Andy's story goal of overcoming the injustice of his wrongful imprisonment. Norton's actions, such as denying Andy's requests for books and preventing him from receiving a fair trial, serve as obstacles that Andy must overcome in order to achieve his goal of freedom.", - "elements": [ - { - "element": "Avoid", - "storytelling": "Warden Samuel Norton prevents anyone from leaving Shawshank or undermining his work there." - }, - { - "element": "Reconsider", - "storytelling": "Warden Samuel Norton reconsiders a group's behavior, gets others to reconsider, and is always ready to renegotiate to get what he wants." - } - ], - "perspectives": { - "perspective_id": "76258106-f0d3-49fc-8fea-3894f196011b" - } - }, - { - "id": "a8cf74cb-b78a-44ac-aeec-3d5e88b3ca92", - "name": "Heywood", - "role": "a member of Red's gang of long-serving convicts", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Heywood functions in the story as a loyal member of Red's gang who believes in the innocence of Andy. Heywood's faith in Red and the gang, as well as his rationalization of being in prison, provide Andy with a support system that helps him hold on to his vision for a brighter future outside of prison. Heywood's unwavering loyalty to Red and his belief in Andy's innocence ultimately contribute to the eventual realization of Andy's freedom.", - "elements": [ - { - "element": "Faith", - "storytelling": "Heywood believes in Red and the rest of the gang." - }, - { - "element": "Logic", - "storytelling": "Heywood rationalizes being in prison (\"The lawyer screwed me!\")" - } - ], - "perspectives": { - "perspective_id": "0e15fd28-49e4-4b3a-a286-2bc0f9344eb7" - } - }, - { - "id": "38527f5d-cfc2-4b42-988e-1a19acb87db4", - "name": "Byron Hadley", - "role": "the brutal captain of the prison guards", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Byron Hadley functions as a major obstacle to Andy's goal of overcoming the injustice of his wrongful imprisonment. As the brutal captain of the prison guards, Hadley is responsible for enforcing the corrupt and oppressive system that keeps Andy and the other inmates trapped in Shawshank. Hadley's motivations to hinder and embrace immediate benefits make him a formidable opponent for Andy, as he is willing to use violence and intimidation to maintain his power and control over the inmates. Andy must find a way to navigate around Hadley's influence and find allies who can help him achieve his goal of freedom and justice.", - "elements": [ - { - "element": "Hinder", - "storytelling": "Byron Hadley deters everyone in Shawshank." - }, - { - "element": "Temptation", - "storytelling": "Byron Hadley embraces immediate benefits despite possible future negatives." - } - ], - "perspectives": { - "perspective_id": "4e5c1b29-edac-4384-b8af-6ab8821f6313" - } - }, - { - "id": "6f6249b5-32bb-4499-a6c8-af9a0c7519f9", - "name": "Tommy Williams", - "role": "a young convict imprisoned for burglary", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Tommy Williams functions in the story as a catalyst for Andy's eventual freedom. His disbelief in Andy's conviction leads him to reveal crucial information that ultimately proves Andy's innocence. Without Tommy's actions, Andy may have never been able to hold on to his vision for the future and overcome the injustice of his false imprisonment.The problem is an innocent man has been sent to prison.", - "elements": [ - { - "element": "Disbelief", - "storytelling": "Tommy Williams finds Andy's conviction false." - } - ], - "perspectives": { - "perspective_id": "a3c9d949-3202-42f4-b064-50fe150c5376" - } - }, - { - "id": "9c829dac-38c7-4956-8724-21be7c6a7e6d", - "name": "Brooks Hatlen", - "role": "the elderly prison librarian", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Brooks Hatlen functions in the story as a symbol of the fear and hopelessness that can come with a life sentence in prison. As the elderly prison librarian, he has spent most of his life behind bars and has become institutionalized to the point where he is scared of life on the outside. His motivations are driven by this fear, and he does not want to be free. His character serves as a contrast to Andy's unwavering hope for a better future, highlighting the difficulty of maintaining such a vision in the face of overwhelming adversity.", - "elements": [ - { - "element": "Feeling", - "storytelling": "Brooks Hatlen is scared of life on the outside." - }, - { - "element": "Uncontrolled", - "storytelling": "Brooks Hatlen does not want to be free." - } - ], - "perspectives": { - "perspective_id": "421ce6d6-8699-449e-90aa-34819d3b1c80" - } - }, - { - "id": "6517477f-df47-4f39-bbf9-f04a0d432b9c", - "name": "Bogs Diamond", - "role": "the head of \"the Sisters\" gang and a prison rapist", - "visual": "", - "audio": "", - "bio": "", - "storytelling": "Bogs Diamond functions as a major obstacle to Andy's story goal of overcoming the injustice of his wrongful imprisonment. As the head of \"the Sisters\" gang and a prison rapist, Bogs exerts control over Andy and others in his gang, making it difficult for Andy to maintain hope and hold on to his vision of a brighter future outside of prison. Bogs' actions and influence create a constant threat to Andy's safety and well-being, making it even more challenging for him to achieve his ultimate goal of freedom.", - "elements": [ - { - "element": "Control", - "storytelling": "Bogs Diamond controls Andy and others in his gang." - } - ], - "perspectives": { - "perspective_id": "62b408be-b2d1-4c4e-8981-22b679b4f8fb" - } - } - ], - "storypoints": [ - { - "id": "7e4bdd2d-028b-42c5-a149-73174d88448a", - "context": "Objective Story", - "appreciation": "Story Goal", - "narrative_function": "Future", - "illustration": "seeking a group's future", - "summary": "Andy must hold onto a vision of a brighter future to overcome the injustice of being wrongfully imprisoned and eventually be free.", - "storytelling": "When Andy is declared guilty, an injustice has been served and an innocent man is sentenced to serve the rest of his life in Shawshank prison. In order to overcome this injustice, Andy must hold on to this vision that a brighter future exists for him outside of the walls of prison--no matter how impossible or desperate such a future seems. If he can hold on to this vision for the future, then he'll eventually be free to live the rest of his life the way he wants to live it.", - "perspectives": { - "perspective_id": "1be74e7a-2523-488c-bbd5-9af5a1df6c95" - } - }, - { - "id": "88662708-fdd8-4570-971d-a76ff1f8278c", - "context": "Objective Story", - "appreciation": "Story Consequence", - "narrative_function": "Subconscious", - "illustration": "living in fear", - "summary": "The Warden's alignment with the Story Consequence of Subconscious highlights the importance of achieving the Story Goal of Future, as without it, the inmates would remain trapped in a state of fear and oppression.", - "storytelling": "In The Shawshank Redemption, the Story Consequence of Subconscious (living in fear) can be seen in the way the Warden perpetuates a system of fear and control within the prison. The Warden, as a representative of this consequence, thrives on the inmates' fear and uses it to maintain his power and authority. He manipulates the prisoners' subconscious fears, such as the fear of punishment, isolation, and hopelessness, to keep them in line and prevent any attempts at challenging the status quo.If the Story Goal of achieving a brighter future is not met, the consequence of living in fear would continue to dominate the lives of the inmates at Shawshank. The Warden would maintain his iron grip on the prison, and the inmates would remain trapped in a cycle of fear and despair, unable to break free from the oppressive environment. This consequence would not only affect Andy but also the other inmates, as they would continue to be subjected to the Warden's cruel and unjust methods of control.The Warden's alignment with the Story Consequence of Subconscious highlights the importance of achieving the Story Goal of Future. Without the hope and vision for a better future, the inmates would remain trapped in a state of fear, unable to escape the Warden's control and the oppressive environment of Shawshank prison. \u00f0\u0178\u008f\u00a2\u00f0\u0178\u201d\u2019", - "perspectives": { - "perspective_id": "d433fdd4-f3f7-4558-8baa-0e8b08d6bb71" - } - }, - { - "id": "6016e469-079a-4e7f-a1d7-642eca1fafc8", - "context": "Main Character", - "appreciation": "Problem", - "narrative_function": "Support", - "illustration": "giving something an endorsement", - "summary": "Red's inability to recognize his true self and his tendency to simply agree with authority keeps him imprisoned in Shawshank despite his attempts to manipulate the parole board.", - "storytelling": "Ellis \"Red\" Redding is an inmate and prison-contraband smuggler serving a life sentence in Shawshank for murdering someone. His motivation to support the rehabilitation he receives at Shawshank only keeps him imprisoned for longer. Attempting to manipulate the parole board by telling them what he thinks they want to hear shows that he truly has not been rehabilitated: Red still can't see his true self. Red's unconscious drive to simply be a \"yes\" man to any problem he runs into keeps him locked up in Shawshank prison.", - "perspectives": { - "perspective_id": "00a5407f-d7d9-47ca-a89c-ef22b504bcc7" - } - }, - { - "id": "a943006d-65c1-4e79-8432-7158b499bfa3", - "context": "Main Character", - "appreciation": "Solution", - "narrative_function": "Oppose", - "illustration": "speaking out against something", - "summary": "Red speaks out against the prison system, showing the parole board he is rehabilitated and is granted parole.", - "storytelling": "In the end, Red abandons his silent endorsement of the prison system and instead, speaks his mind and speaks out against the whole process. \"Rehabilitated? That's a bullshit word, so you just go on ahead and stamp that form there, sonny, and stop wasting my damn time. Truth is, I don't give a shit.\" By expressing his true feelings and thoughts on the matter he shows the parole board that he is truly rehabilitated and that he is no longer just saying what he thinks they want to hear. As a consequence, the board approves his parole and they escort Red out of Shawshank prison.", - "perspectives": { - "perspective_id": "82ef466e-d899-415e-b487-0148b8fb271a" - } - }, - { - "id": "44c7c87a-7576-4fc1-8224-d1479aae89b0", - "context": "Influence Character", - "appreciation": "Problem", - "narrative_function": "Control", - "illustration": "being locked up", - "summary": "Andy's refusal to be controlled inspires Red to question why he isn't doing the same for himself.", - "storytelling": "If there's one thing you don't do, it's try to lock Andy Dusfresne up. Whether it's in Shawshank Prison or at the mercy of \"The Sisters\", Andy refuses to back down. Any attempts to control him are met with equal parts resistance, and it is precisely this drive to fight against control that challenges Red to ask himself why he isn't doing the same for himself.", - "perspectives": { - "perspective_id": "1848b4ba-7cdd-4cc4-bd12-a8d9f55a1399" - } - }, - { - "id": "fce30a1b-856e-4f2f-9680-540d1f972d97", - "context": "Influence Character", - "appreciation": "Evolution", - "narrative_function": "Control", - "illustration": "taking control", - "summary": "Andy regains his agency and inspires Red to do the same, despite the Warden's attempts to take it away.", - "storytelling": "In the end, Andy maintains his resolve and continues to dictate the terms upon which he lives his life. Motivated by the Warden's undying cruelty and attempt to seize every last bit of agency, Andy breaks free of prison and sets a path for a new life. This realignment back towards his initial motivation challenges Red to do the same.", - "perspectives": { - "perspective_id": "28c9fb92-cd9c-4b5b-accb-51d5789a133b" - } - }, - { - "id": "84c3fb8a-2243-43aa-931d-3e3f3c2b42a3", - "context": "Influence Character", - "appreciation": "Pivotal Element", - "narrative_function": "Oppose", - "illustration": "speaking out against someone", - "summary": "Andy Dufresne argues that speaking out against injustice is essential for change, inspiring others to stand up and create a ripple effect of positive transformation.", - "storytelling": "Andy Dufresne's argument is that speaking out against something is necessary in order to bring about change. He shows that by standing up for what is right, even in the face of adversity, it is possible to make a difference. He also shows that by speaking out, it is possible to inspire others to do the same, and to create a ripple effect of positive change.", - "perspectives": { - "perspective_id": "85ce5acf-7e53-44ad-af21-866373b76998" - } - }, - { - "id": "78e47555-6d5b-459b-b5b9-1c6e6625661e", - "context": "Premise", - "appreciation": "Subjective Premise", - "narrative_function": "Support", - "illustration": "endorsing something", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "2e9fd7da-712c-45e6-812c-dee7f5dd67f7" - } - }, - { - "id": "2bc395c8-9c62-4223-9314-d753660ec76a", - "context": "Premise", - "appreciation": "Objective Premise", - "narrative_function": "Future", - "illustration": "securing a better future", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "c0ee2c32-ff7b-4505-868d-8323d47af02d" - } - }, - { - "id": "b0a46825-d91c-4c74-860e-d6266f4bae69", - "context": "Objective Story", - "appreciation": "Issue", - "narrative_function": "Delay", - "illustration": "playing a waiting game", - "summary": "The Shawshank Redemption explores the tension between Delay and Choice, as characters endure hardships and take control of their destinies.", - "storytelling": "In The Shawshank Redemption, the Objective Story Issue of Delay creates conflict by subjecting characters to prolonged periods of waiting and hopelessness, such as lengthy prison sentences, repeated parole denials, and resistance to Andy's efforts to prove his innocence. In contrast, the Counterpoint of Choice highlights moments when characters make decisions that challenge the status quo and break free from the constraints of Delay, such as Andy's secret tunnel, Red's honest parole hearing, and the warden's corrupt choices. Together, these thematic elements of Delay and Choice contribute to a rich and engaging narrative that explores the tension between enduring hardships and taking control of one's destiny.", - "perspectives": { - "perspective_id": "db39ba4d-1343-452b-b2f6-a34b7d48f005" - } - }, - { - "id": "e31290ea-0d8e-42dd-b717-d72d9251de78", - "context": "Objective Story", - "appreciation": "Problem", - "narrative_function": "Support", - "illustration": "showing approval for something", - "summary": "In The Shawshank Redemption, the consequences of supporting a corrupt system create conflict and drive the story's central conflicts.", - "storytelling": "In The Shawshank Redemption, the core Problem element of Support in the OS Throughline creates conflict and motivates problems in the story in several ways:1. The prison system: The inmates and staff at Shawshank Prison are all part of a system that supports and perpetuates injustice and corruption. The Warden and the guards maintain their power by supporting each other and keeping the inmates in line, often through brutal means. This support for the corrupt system creates conflict and suffering for the inmates.2. Andy's wrongful conviction: Andy Dufresne is an innocent man who has been convicted of a crime he didn't commit. The legal system that supported his conviction is flawed, and this support for a wrongful verdict creates the central conflict of the story, as Andy struggles to prove his innocence and regain his freedom.3. Red's institutionalization: Red, the main character, has become institutionalized over his many years in prison. He supports the system by going along with it and saying what he thinks the parole board wants to hear during his hearings. This support for the system keeps him stuck in his situation and unable to truly change.4. Tommy's fate: When Tommy, a young inmate, learns information that could potentially exonerate Andy, he tries to help by sharing this information with the Warden. However, the Warden's support for the corrupt system leads him to silence Tommy, ultimately resulting in Tommy's death. This tragic outcome further emphasizes the destructive nature of supporting a corrupt system.5. Andy's defiance: Throughout the story, Andy challenges the system by finding ways to undermine its authority and expose its corruption. His acts of defiance, such as playing Mozart over the prison loudspeakers and secretly digging a tunnel to escape, are motivated by his refusal to support the unjust system that has imprisoned him.In summary, the core Problem element of Support in The Shawshank Redemption's OS Throughline creates conflict and motivates problems in the story by highlighting the destructive consequences of supporting a corrupt and unjust system. This support leads to suffering and injustice for the characters, and ultimately drives the story's central conflicts.", - "perspectives": { - "perspective_id": "e66a1172-2808-4e38-82bc-fac92409fafe" - } - }, - { - "id": "5f27bae3-a864-416e-bd3a-a3c5e4ceda81", - "context": "Objective Story", - "appreciation": "Solution", - "narrative_function": "Oppose", - "illustration": "opposing authority", - "summary": "In The Shawshank Redemption, the OS Solution of Oppose demonstrates the power of standing up against a corrupt and unjust system, allowing the characters to break free and find redemption.", - "storytelling": "In The Shawshank Redemption, the OS Solution of Oppose (opposing authority) resolves the inequity of conflict for everyone by demonstrating the power of standing up against a corrupt and unjust system. This is evident in several key moments throughout the story:1. Andy's acts of defiance, such as playing Mozart over the prison loudspeakers and secretly digging a tunnel to escape, show that opposing the system can lead to moments of freedom and ultimately, his successful escape. These acts inspire other inmates and challenge the authority of the prison staff.2. The exposure of the Warden's corruption and the subsequent arrest of the corrupt prison staff members demonstrate the power of opposing authority in dismantling a harmful system. This resolution brings justice to those who have suffered under the corrupt regime and paves the way for potential improvements in the prison system.3. Finally, Red's decision to break his parole and follow Andy to Zihuatanejo, Mexico, symbolizes his complete rejection of the system that has held him captive for so long. By choosing to oppose authority and pursue a life of freedom with his friend, Red finds a sense of redemption and a new beginning.In conclusion, the OS Solution of Oppose in The Shawshank Redemption effectively resolves the inequity of conflict for everyone by demonstrating the power of standing up against a corrupt and unjust system. Through acts of defiance, exposure of corruption, and personal growth, the characters are able to break free from the oppressive system and find redemption.", - "perspectives": { - "perspective_id": "601599f4-da26-487c-8e96-32788bc432d7" - } - }, - { - "id": "233b43b5-bc1c-48b9-a821-f4b1371e96f9", - "context": "Objective Story", - "appreciation": "Domain", - "narrative_function": "Universe", - "illustration": "being unjustly imprisoned", - "summary": "In The Shawshank Redemption, the OS Domain of Universe creates a shared source of conflict for all the characters as they struggle to survive and maintain their dignity in a corrupt and oppressive prison system.", - "storytelling": "In The Shawshank Redemption, the OS Domain of Universe (being unjustly imprisoned) defines the source of conflict for everyone in the story as they all experience the effects of this unjust system and the harsh realities of prison life. Here are some examples of how this conflict affects various characters in the story:1. Andy Dufresne (Tim Robbins): As the protagonist, Andy is unjustly imprisoned for a crime he didn't commit. His conflict arises from trying to survive and maintain his dignity in a corrupt and brutal environment, while also seeking a way to prove his innocence.2. Ellis \"Red\" Redding (Morgan Freeman): Red is a long-time inmate and Andy's close friend. His conflict comes from his struggle to adapt to life inside the prison and his eventual realization that he has become institutionalized, making it difficult for him to imagine life outside the prison walls.3. Warden Samuel Norton (Bob Gunton): The warden represents the corrupt and oppressive system that governs the prison. His conflict arises from his desire to maintain control over the inmates and exploit them for his own gain, which ultimately leads to his downfall.4. Captain Byron Hadley (Clancy Brown): Hadley is the cruel and sadistic chief of the prison guards. His conflict comes from his need to assert his authority over the inmates through violence and intimidation, which ultimately backfires when Andy exposes the corruption within the prison.5. Tommy Williams (Gil Bellows): Tommy is a young inmate who befriends Andy and Red. His conflict arises from his desire to turn his life around and help Andy prove his innocence, but he faces the harsh reality of the prison system when he is killed to prevent him from revealing the truth.These examples illustrate how the OS Domain of Universe creates a shared source of conflict for all the characters in The Shawshank Redemption. Each character's individual struggles and experiences are connected to the larger theme of injustice and the impact of the prison system on their lives.", - "perspectives": { - "perspective_id": "caaa9bb4-67d0-4473-884e-c131a8d912f6" - } - }, - { - "id": "d0ce3af2-e550-4f70-8a07-d0de99709709", - "context": "Objective Story", - "appreciation": "Concern", - "narrative_function": "Future", - "illustration": "having no future", - "summary": "In \"The Shawshank Redemption,\" the Objective Story Concern of \"Future\" creates a cohesive narrative that explores the impact of having no future on the characters and their actions, ultimately leading to the resolution of the story's central proble", - "storytelling": "In \"The Shawshank Redemption,\" the Objective Story Concern of \"Future\" (having no future) identifies sources of conflict in the plot for everyone by focusing on the uncertainty and limitations that the characters face due to their imprisonment and the corrupt system they are a part of.For the inmates, like Andy and Red, the concern of having no future is a constant source of conflict as they struggle with the reality of their long sentences and the lack of hope for a better life outside the prison walls. This concern is also evident in their interactions with other inmates, who share similar feelings of despair and hopelessness.For the prison staff, such as Warden Norton and Captain Hadley, the concern of having no future manifests in their desire to maintain control and power over the inmates. They exploit the prisoners for their own gain, fearing that any change in the status quo could threaten their positions and the corrupt system they benefit from.The Objective Story Concern of \"Future\" ties all these individual storylines together, creating a cohesive narrative that explores the impact of having no future on the characters and their actions. As the story progresses, we see how this concern drives the characters to make choices that ultimately lead to the resolution of the story's central problem: Andy's escape and the exposure of the corruption within the prison.", - "perspectives": { - "perspective_id": "7c5284f4-0a0c-440a-bb9a-97d9659b8206" - } - }, - { - "id": "2f0dac7b-0204-4413-98d6-936204ad624e", - "context": "Main Character", - "appreciation": "Domain", - "narrative_function": "Psychology", - "illustration": "being institutionalized", - "summary": "Red, in _The Shawshank Redemption_, is a character deeply affected by the psychological aspect of institutionalization. He's been in prison for so long that it has become his norm, his comfort zone. ", - "storytelling": "Though he tries to act like it doesn't bother him, the truth is that being institutionalized has taken a toll on Red. He's been in prison for so long that he's forgotten what it's like to be outside, to be free. He's become accustomed to the routine and the people inside, and the thought of leaving is both terrifying and exhilarating.", - "perspectives": { - "perspective_id": "260614e8-1ea0-4790-b714-b128c9c55ec0" - } - }, - { - "id": "ebde34be-8fb5-4379-b0b2-2f0589fae7a1", - "context": "Main Character", - "appreciation": "Concern", - "narrative_function": "Becoming", - "illustration": "becoming a changed man", - "summary": "Red is haunted by his past and struggles to take responsibility for his own rehabilitation in order to escape it.", - "storytelling": "Ellis \"Red\" Redding is an inmate who is serving a life sentence for murder. At his parole board hearings, he professes to be a changed man from his experiences is prison, but the truth is\u00e2\u20ac\u201dhe hasn't changed a bit. He's still haunted by the memories of his crime. And these memories make it difficult for him to have any measure of hope, as he is constantly reminded of the person he used to be and the life he took. He is afraid that he will never be able to truly change and that he will always be defined by his past. The only way out for Red is for him to truly change, and to take responsibility for his own rehabilitation.", - "perspectives": { - "perspective_id": "b657b866-8894-4b88-87e2-320d8e303be0" - } - }, - { - "id": "27f0790e-3fd5-4dce-b0f7-7aa93c9dd495", - "context": "Main Character", - "appreciation": "Issue", - "narrative_function": "Rationalization", - "illustration": "covering up something", - "summary": "Ellis 'Red' Redding rationalizes his life sentence for killing a man in a fit of rage by telling himself he is doing his time for the man he killed, but this only serves to keep him in Shawshank longer.", - "storytelling": "Ellis 'Red' Redding knows that he is guilty of the crime he was sentenced for. He killed a man in a fit of rage and he knows that he deserves to be in prison for it. But he also knows that the life sentence he was given is far too harsh. He didn't mean to kill the man and he has been remorseful for it ever since. So he rationalizes his actions by telling himself that he is doing his time for the man he killed. He knows that he can never make up for what he has done, but he can try to make the best of his situation and help others in the process. This rationalization, while beneficial in the short term, only serves to keep him in Shawshank longer. ", - "perspectives": { - "perspective_id": "a701a890-226d-476e-816d-afe704f9bc84" - } - }, - { - "id": "89352861-db4d-42db-8aea-2abac24609d5", - "context": "Influence Character", - "appreciation": "Domain", - "narrative_function": "Physics", - "illustration": "fighting against someone", - "summary": "Andy's fight against the system and his playing of music to taunt the warden challenge Red's beliefs, forcing him to confront his own powerlessness and despair and to accept and embrace the idea that joy can be found even in the darkest of", - "storytelling": "Andy Dufresne's fighting against the system challenges Ellis \"Red\" Redding's belief that it is possible to fight the system and win. Red must grapple with the idea that sometimes the system is too big and too powerful to fight. This conflict forces Red to confront his own sense of powerlessness and to accept the fact that sometimes the only way to survive is to go along with the system. Additionally, Andy's playing music over the loudspeakers to taunt the warden challenges Red's belief that it is possible to find a measure of peace and happiness even in the most difficult of circumstances. Red must grapple with the idea that sometimes the only way to endure the pain and the suffering is to find a way to enjoy it. This conflict forces Red to confront his own sense of despair and to embrace the idea that even in the darkest of times there can be moments of joy.", - "perspectives": { - "perspective_id": "df334693-e7a1-41b7-b397-b14cec0c438b" - } - }, - { - "id": "d257c97d-eff0-46cc-9932-d0fe796291a6", - "context": "Influence Character", - "appreciation": "Concern", - "narrative_function": "Obtaining", - "illustration": "finishing something", - "summary": "Andy's Obstacle Character Concern of Obtaining, demonstrated through his pursuit of a better prison library, self-respect, freedom, and justice, challenges Red's beliefs and ultimately inspires him to pursue a life outside of Shawshank.", - "storytelling": "In The Shawshank Redemption, the Obstacle Character Concern of Obtaining is illustrated through Andy Dufresne's (Tim Robbins) character. As the Obstacle Character, Andy's focus on obtaining certain goals and achievements within the prison environment influences Red's (Morgan Freeman) perspective and challenges his way of thinking.Andy's concern with obtaining is evident in several aspects of the story:1. Andy's pursuit of a better prison library: He is determined to obtain funding and resources to improve the library, which he eventually achieves through his persistent letter-writing campaign. This demonstrates his belief in the power of education and rehabilitation, contrasting with Red's more cynical outlook.2. Andy's efforts to maintain his dignity and self-respect: Despite the harsh conditions of prison, Andy strives to obtain a sense of personal integrity and humanity. This is evident in his refusal to let the prison system break his spirit and his insistence on treating others with respect.3. Andy's secret plan to escape Shawshank: Throughout the story, Andy is focused on obtaining his freedom by patiently and methodically digging a tunnel to escape the prison. This long-term goal drives his actions and decisions, even when it seems impossible to achieve.4. Andy's desire to clear his name: Although he knows it's a long shot, Andy is determined to obtain justice for himself by proving his innocence. This is exemplified by his efforts to gather evidence and his interactions with Tommy, who has information that could potentially exonerate him.Throughout the story, Andy's concern with obtaining various goals and achievements challenges Red's beliefs and ultimately inspires him to change his own approach. This is evident when Red finally decides to be honest with the parole board and later follows Andy's advice to pursue a life outside of the prison walls. Andy's concern of Obtaining as the Obstacle Character plays a significant role in Red's character development and the overall thematic exploration of the story.", - "perspectives": { - "perspective_id": "9f79bf9a-d4d3-4326-ac6e-95a62da10dce" - } - }, - { - "id": "c9bad257-a461-4e32-b734-9bd4a27e3298", - "context": "Influence Character", - "appreciation": "Issue", - "narrative_function": "Approach", - "illustration": "taunting", - "summary": "In The Shawshank Redemption, Andy Dufresne's (Tim Robbins) approach to life in prison challenges Red's (Morgan Freeman) more cynical attitude, inspiring him to change his own approach and attitude.", - "storytelling": "In The Shawshank Redemption, the Obstacle Character Issue of Approach is illustrated through Andy Dufresne's (Tim Robbins) character, while the Counterpoint of Attitude is also present, creating a contrast between the two. As the Obstacle Character, Andy's unique approach to life and problem-solving within the prison environment challenges Red's (Morgan Freeman) way of thinking and influences him to reconsider his own approach.Andy's approach is characterized by his determination, resourcefulness, and hope. He maintains his dignity and self-respect despite the harsh conditions of prison. Some examples of Andy's approach include:1. His persistence in writing letters to the state senate to secure funding for the prison library. This demonstrates his belief in the power of education and rehabilitation, which contrasts with Red's more cynical outlook.2. His ability to leverage his financial expertise to gain favor with the prison guards and the warden. Andy uses his skills to help them with their taxes and financial matters, which in turn provides him with some protection and privileges within the prison.3. His friendship with Red, which is built on trust and mutual respect. Andy's approach to friendship is genuine and sincere, which challenges Red's more guarded and skeptical attitude towards others.4. His secret plan to escape from Shawshank. Andy's approach to dealing with his wrongful imprisonment is to patiently and methodically work towards his freedom, rather than accepting his fate as Red initially does.In contrast, the Counterpoint of Attitude is evident in the way other characters, including Red, initially approach their situation in Shawshank. Their attitudes are often marked by cynicism, resignation, and a lack of hope for a better future. This is exemplified by Red's initial belief that hope is a dangerous thing in prison and his reluctance to entertain the possibility of change.Throughout the story, Andy's approach to life within Shawshank challenges Red's beliefs and ultimately inspires him to change his own approach and attitude. This is evident when Red finally decides to be honest with the parole board and later follows Andy's advice to pursue a life outside of the prison walls. Andy's approach as the Obstacle Character Issue, along with the contrasting Counterpoint of Attitude, plays a significant role in Red's character development and the overall thematic exploration of the story.", - "perspectives": { - "perspective_id": "9d19846e-2ca8-4a17-9bd8-2f1db08f7833" - } - }, - { - "id": "e827fbf6-81df-4f65-b9ea-b839a24e88a2", - "context": "Influence Character", - "appreciation": "Solution", - "narrative_function": "Uncontrolled", - "illustration": "being unpredictable", - "summary": "", - "storytelling": "The moment Andy starts behaving unpredictably or unregulated is the moment his influence on Red begins to weaken. Not knowing what Andy is doing in his jail cell at night gives Red a moment to pause and possibly reconsider abandoning the way he has always done things in Shawshank.", - "perspectives": { - "perspective_id": "0044cea8-5157-47d7-9476-fe76637993e3" - } - }, - { - "id": "bf983999-c08a-44c7-8c7f-09dff8261cca", - "context": "Relationship Story", - "appreciation": "Domain", - "narrative_function": "Mind", - "illustration": "taking a position on something", - "summary": "Initially brought together by circumstance, their friendship is strengthened by their differing values, leading to trust, intimacy, and mutual recognition of the value of their friendship.", - "storytelling": "While being victims of circumstance initially brings them together, the taking of a position on incompatible values draws them into a long-lasting and meaningful friendship. In the beginning, the differential in their values pushes them apart--while simultaneously intriguing the two into productive debate. The clash of wills is a means of growth for the relationship as it creates a sense of trust and intimacy. It also allows them to have a discussion about why they feel they way they do, which can lead to much-needed recognition and validation. And when people feel they can rely on each other for support, they are more likely to feel close to one another and be willing to work through difficult issues. In the end, it is a mutual recognition that what is most important is taking a position on the value of their friendship that ultimately brings them together.", - "perspectives": { - "perspective_id": "fe0be769-c4b3-452d-8138-cd8a4761d670" - } - }, - { - "id": "cc3100ed-a8e8-416e-96ea-197a5f26054d", - "context": "Relationship Story", - "appreciation": "Concern", - "narrative_function": "Subconscious", - "illustration": "being fond of someone", - "summary": "In The Shawshank Redemption, the Relationship Story Concern being Subconscious means that the growth of Andy and Red's friendship is based on trust, emotional support, and shared experiences, all of which are rooted in their subconscious desires.", - "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Concern being Subconscious means that the growth of Andy and Red's friendship is centered around their basic drives and desires, often at a level they may not be fully aware of.One such quality is the sense of trust and loyalty that develops between Andy and Red. Trust is a fundamental aspect of their relationship, and it's something that grows over time as they share their experiences, thoughts, and feelings. This trust is built on a subconscious level, as they both have to rely on their instincts to determine if the other person is genuine and trustworthy.Another aspect of their relationship that can be classified under Subconscious is the emotional support they provide each other. In the harsh environment of the prison, both Andy and Red face emotional challenges and struggles. Their friendship offers a safe space for them to express their emotions and find comfort in each other's company. This emotional connection is rooted in their subconscious desires for companionship and understanding.Lastly, their shared experiences in prison also contribute to the growth of their friendship on a subconscious level. They both endure the hardships of prison life, and these shared experiences create a bond between them that goes beyond the surface level. This bond is rooted in their subconscious understanding of each other's struggles and the empathy they develop for one another.", - "perspectives": { - "perspective_id": "208c8f31-baba-456b-9047-ee8cbd1ea8e1" - } - }, - { - "id": "3181b8bf-c058-4809-a21f-6f50c311e681", - "context": "Relationship Story", - "appreciation": "Issue", - "narrative_function": "Hope", - "illustration": "being hopeful about something", - "summary": "", - "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Issue of Hope and the RS Counterpoint of Dream intertwine to create a complex and meaningful exploration of the growth of Andy and Red's friendship, centered around their beliefs and attitudes towards hope and dreams.At the beginning of their friendship, Red and Andy have different perspectives on hope. Red sees hope as a dangerous thing, while Andy believes in the power of hope and dreams. This difference in their views on hope creates a conflict in their relationship, as they struggle to understand each other's point of view.As their friendship develops, they begin to influence each other's beliefs about hope and dreams. Andy's unwavering hope and determination, along with his dream of escaping Shawshank and living a free life in Zihuatanejo, slowly start to affect Red, who begins to reconsider his cynical outlook on life. This growth in their relationship is evident when Red starts to entertain the idea of Zihuatanejo, a place that symbolizes hope, freedom, and dreams for both of them.The growth in their friendship is also seen in the way they support each other through difficult times in prison. Andy helps Red by providing him with a sense of purpose and a renewed belief in the possibility of a better future. In turn, Red supports Andy by smuggling in items that help him maintain his sense of self, hope, and dreams.The RS Counterpoint of Dream adds depth to the growth of Andy and Red's friendship by contrasting their aspirations with the reality of their situation. It also serves to emphasize the transformative power of hope and dreams in their relationship, ultimately leading to a change in their perspectives on life.In conclusion, the RS Issue of Hope and the RS Counterpoint of Dream in The Shawshank Redemption illustrate the growth of Andy and Red's friendship as they influence each other's beliefs about hope and dreams, ultimately leading to a transformation in their perspectives on hope, dreams, and life. \u00f0\u0178\u02dc\u0160", - "perspectives": { - "perspective_id": "48a53b01-b826-4cfa-8035-61e519484235" - } - }, - { - "id": "9acf1918-d0d8-42b1-a3fc-4417bc36f4b1", - "context": "Relationship Story", - "appreciation": "Problem", - "narrative_function": "Consider", - "illustration": "deliberating about something", - "summary": "The RS Condition of Consider in The Shawshank Redemption serves as a motivating force that drives the growth of Andy and Red's friendship by encouraging them to continuously evaluate and appreciate each other's perspectives.", - "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Condition being Consider means that the growth of Andy and Red's friendship is influenced by their continuous evaluation and weighing of each other's perspectives, particularly on hope and their outlook on life.At the beginning of their friendship, Red and Andy have different views on hope. Red sees hope as a dangerous thing, while Andy believes in the power of hope and dreams. The condition of Consider in their relationship pushes them to continuously evaluate and ponder each other's perspectives, which in turn, helps their friendship grow.As their friendship develops, they both engage in moments of Consider, where they listen to each other's stories, experiences, and beliefs. This process of considering each other's viewpoints allows them to understand and appreciate the other's perspective, even if they don't initially agree.For example, when Andy shares his dream of going to Zihuatanejo, Red initially dismisses it as unrealistic. However, as their friendship grows, Red starts to consider Andy's perspective on hope and the possibility of a better life outside the prison. This change in Red's thinking is a result of the motivating force of Consider in their relationship.Similarly, Andy learns from Red's experiences and wisdom, considering Red's perspective on surviving in the harsh environment of the prison. This mutual consideration helps them both navigate their lives in Shawshank and strengthens their bond.In conclusion, the RS Condition of Consider in The Shawshank Redemption serves as a motivating force that drives the growth of Andy and Red's friendship by encouraging them to continuously evaluate and appreciate each other's perspectives on hope and life.", - "perspectives": { - "perspective_id": "3c8b0efe-992c-4584-84dc-a8f7470013ec" - } - }, - { - "id": "e57e1ebb-5864-4d02-a6c0-cf41c2b0b263", - "context": "Relationship Story", - "appreciation": "Solution", - "narrative_function": "Reconsider", - "illustration": "reconsidering someone's options", - "summary": "The RS Revision of Reconsider in The Shawshank Redemption serves as a motivating force that drives the growth of the friendship between Andy and Red, ultimately strengthening their bond.", - "storytelling": "In The Shawshank Redemption, the Relationship Story (RS) Revision being Reconsider means that the growth of the friendship between Andy and Red is influenced by the shared drive to reevaluate and renegotiate their initial beliefs and perspectives, ultimately strengthening their bond.As the friendship progresses, the shared drive towards Reconsider becomes a key factor in the growth of their bond. The relationship itself evolves as both parties within the friendship become more open to reevaluating their initial beliefs and attitudes, allowing for a deeper understanding and connection between them.For instance, the friendship experiences a significant growth when the shared drive to Reconsider leads to a mutual openness towards the idea of hope and the possibility of a better life outside the prison. This shift in perspective within the relationship brings them closer together, as they find common ground in their newfound beliefs.Moreover, the shared drive towards Reconsider also helps the friendship navigate the challenges and hardships they face within the prison environment. By continuously reevaluating and renegotiating their perspectives, the relationship becomes more resilient and adaptable, further strengthening their bond.In conclusion, the RS Revision of Reconsider in The Shawshank Redemption serves as a motivating force that drives the growth of the friendship between Andy and Red by encouraging a shared drive to reevaluate and renegotiate their initial beliefs and perspectives, ultimately strengthening their bond.", - "perspectives": { - "perspective_id": "88e4d56a-ed60-418a-825b-f465d1c722ab" - } - }, - { - "id": "71ca10a2-f1d9-4ef8-aa61-36e5a1937ac7", - "context": "Main Character", - "appreciation": "Pivotal Element", - "narrative_function": "Support", - "illustration": "being supportive of a group", - "summary": "Ellis \"Red\" Redding argues that in the isolating environment of prison, forming supportive bonds is essential for survival, providing purpose, hope, and resilience despite the risks of vulnerability.", - "storytelling": "Ellis \"Red\" Redding makes a compelling argument for the importance of being supportive of a group, particularly in the harsh and isolating environment of prison. Red believes that survival in such a dehumanizing system is only possible through the bonds formed with others, even if those bonds come at a personal cost. He demonstrates that loyalty and solidarity can provide a sense of purpose and humanity, even in the bleakest circumstances. Red's protective instincts often lead him to mentor and shield others, like Andy Dufresne, showing that supporting the group can foster hope and resilience. While his pragmatism warns him of the risks of attachment, his actions argue that the strength of a group can outweigh the dangers of vulnerability, offering a path to redemption and a semblance of freedom, even behind bars.", - "perspectives": { - "perspective_id": "edaf6099-6584-47ce-b03c-e0de338ed76f" - } - }, - { - "id": "7c194b5e-d709-4653-b70f-34ae436ff762", - "context": "Influence Character", - "appreciation": "Pivotal Element", - "narrative_function": "Oppose", - "illustration": "opposing someone", - "summary": "Tommy Williams views opposition in prison as essential for self-preservation and identity, using defiance to assert individuality, gain respect, and maintain dignity in a dehumanizing environment.", - "storytelling": "Tommy Williams would argue that opposing someone, especially in a rigid and oppressive environment like prison, is a necessary act of self-preservation and identity. He would justify his brash confidence and impulsive defiance as a way to assert his individuality in a system designed to strip it away. Tommy might embellish his past exploits to gain respect, framing opposition as a way to earn a place in the social hierarchy and avoid being seen as weak or disposable. His hunger for validation would fuel his belief that standing against authority or rivals, even at great personal risk, is the only way to maintain dignity and prove his worth. In his eyes, opposition is not just rebellion\u00e2\u20ac\u201dit's survival.", - "perspectives": { - "perspective_id": "939a158c-8f44-4c63-b064-985e6c732b18" - } - }, - { - "id": "d8911b91-97db-4980-908f-34fefbc8b368", - "context": "Objective Story", - "appreciation": "Symptom", - "narrative_function": "Avoid", - "illustration": "escaping someone", - "summary": "", - "storytelling": "In the oppressive environment of Shawshank prison, the act of avoiding direct confrontation with the institution's corruption becomes a source of conflict. The inmates, led by the misjudged former banker, focus on small acts of resistance and camaraderie, which, while inspiring hope, also distract from addressing the systemic issues head-on. This avoidance of the core problem perpetuates the institution's dehumanizing grip, creating a tension between the inmates' immediate survival strategies and the need for a deeper, more transformative change.", - "perspectives": { - "perspective_id": "cead572e-7d22-4201-9fb5-af835b0436de" - } - }, - { - "id": "9a3705ef-4c82-435c-bd3b-a11a243e5257", - "context": "Objective Story", - "appreciation": "Response", - "narrative_function": "Pursuit", - "illustration": "attempting to achieving something", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's relentless pursuit of hope and justice becomes a double-edged sword, inspiring fellow inmates while simultaneously drawing the ire of the corrupt system. This pursuit, while noble, exacerbates the tension between the inmates' growing resilience and the institution's efforts to maintain control, highlighting the complex interplay between individual determination and systemic oppression. The narrative explores how this unyielding drive for change can both empower and endanger those who dare to challenge the status quo.", - "perspectives": { - "perspective_id": "de1ee2dc-8a4f-4d57-98a4-aea8e7df102d" - } - }, - { - "id": "a70766bd-768b-4eb8-9114-c10aed141729", - "context": "Objective Story", - "appreciation": "Benchmark", - "narrative_function": "Past", - "illustration": "", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the reinterpretation of past events becomes a source of both conflict and hope. As the misjudged former banker uncovers and shares stories of systemic corruption and personal injustices, these revelations challenge the inmates' acceptance of their fates and the institution's authority. This reassessment of history not only disrupts the established order but also ignites a collective resilience, illustrating how revisiting the past can inspire a transformative hope amidst despair.", - "perspectives": { - "perspective_id": "28b7c03b-16a7-4902-ab8c-0220d4fdbc7e" - } - }, - { - "id": "671a192a-78d1-4356-8bc9-98ef510f42ca", - "context": "Objective Story", - "appreciation": "Catalyst", - "narrative_function": "Openness", - "illustration": "opening up oneself to new ideas", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's willingness to entertain alternative perspectives and ideas becomes a source of both inspiration and conflict. This openness, while fostering hope and camaraderie among the inmates, also clashes with the rigid and corrupt institutional framework that thrives on conformity and despair. The resulting tension not only propels the narrative forward but also underscores the transformative power of resilience and adaptability in the face of systemic oppression.", - "perspectives": { - "perspective_id": "13650d17-2e58-4b78-9b33-2f216d1c6618" - } - }, - { - "id": "e393398b-f5ab-4281-9344-2ec1f7686fac", - "context": "Objective Story", - "appreciation": "Inhibitor", - "narrative_function": "Denial", - "illustration": "being in denial", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the denial of the system's unyielding corruption and the cyclical nature of its exploitation creates a profound conflict. The protagonist's refusal to accept the futility of resistance against such an entrenched institution becomes both a source of hope and a barrier to progress, as his actions inspire others but also risk perpetuating a cycle of punishment and despair. This denial, while fostering resilience, underscores the tension between hope and the crushing weight of institutional brutality.", - "perspectives": { - "perspective_id": "8598b488-8faf-4c19-a1f8-df3cbfe74dc3" - } - }, - { - "id": "ae22e726-1967-458b-b02f-069e90e46c37", - "context": "Objective Story", - "appreciation": "Requirement", - "narrative_function": "Past", - "illustration": "uncovering one's past", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's reassessment of his past actions and the circumstances leading to his incarceration becomes a source of both internal and external conflict. This reinterpretation challenges his own identity and the perceptions of those around him, as he uncovers truths that inspire hope and resilience among the inmates. The dynamic tension between the crushing institutional brutality and the transformative power of revisiting and reinterpreting the past propels the narrative, highlighting the enduring struggle for dignity and redemption.", - "perspectives": { - "perspective_id": "d08fb106-eb06-40b0-a95c-18c9ecdcad5b" - } - }, - { - "id": "acaef1d0-2d72-4b5f-ad81-0b942a8ba176", - "context": "Objective Story", - "appreciation": "Prerequisite", - "narrative_function": "Memory", - "illustration": "recalling horrors", - "summary": "", - "storytelling": "In the oppressive confines of Shawshank prison, the protagonist's memories of a life outside the walls clash with the harsh reality of institutional dehumanization, creating a poignant internal struggle. These recollections, tinged with both regret and hope, fuel his resistance against the system's crushing force, while also highlighting the contrasting perspectives of fellow inmates who have either succumbed to or resisted the erasure of their pasts. This tension between memory and present reality underscores the narrative's exploration of hope and resilience in the face of systemic brutality.", - "perspectives": { - "perspective_id": "a13b8c40-1858-4884-b976-bd56d1e55640" - } - }, - { - "id": "709a19ad-b950-4fce-8b48-99cae45cb857", - "context": "Main Character", - "appreciation": "Domain", - "narrative_function": "Psychology", - "illustration": "coping with something", - "summary": "", - "storytelling": "Red's internal conflict stems from his deeply ingrained sense of loyalty and protectiveness towards his fellow inmates, which often clashes with his pragmatic need to ensure his own survival within the harsh realities of prison life. While he has learned to navigate the system with a realist's perspective, his quiet hope for redemption and a better future creates a tension within him, as he struggles to reconcile his actions with his unspoken aspirations.", - "perspectives": { - "perspective_id": "9489b351-9e2e-4314-9ffd-499fc1b3c8ed" - } - }, - { - "id": "d3cf7bef-2bda-43ef-bd92-60cc643b84d4", - "context": "Main Character", - "appreciation": "Concern", - "narrative_function": "Becoming", - "illustration": "going through a transformation", - "summary": "", - "storytelling": "Ellis \"Red\" Redding's journey of becoming is one of internal transformation, as he wrestles with the tension between his hardened pragmatism and the quiet, fragile hope for redemption he keeps buried. Decades in Shawshank have taught him to suppress hope, seeing it as dangerous and futile in a system designed to crush it. Yet, his growing bond with Andy Dufresne begins to challenge this worldview, forcing Red to confront the possibility that he can become more than just a \"man who can get things.\" This conflict manifests in his parole hearings, where his rehearsed, detached responses reflect a man resigned to his identity as a convict. However, as Andy's unyielding hope begins to seep into Red's guarded heart, he faces the terrifying prospect of becoming someone who dares to believe in freedom and a life beyond the prison walls. Red's transformation is not just about leaving Shawshank but about becoming a man who can finally forgive himself and embrace the possibility of a future.", - "perspectives": { - "perspective_id": "6f947ded-aa3f-4754-8624-478bdc98c85f" - } - }, - { - "id": "a902a183-89ae-4c09-9ade-47fea9df0c48", - "context": "Main Character", - "appreciation": "Issue", - "narrative_function": "Rationalization", - "illustration": "making excuses for someone's actions", - "summary": "", - "storytelling": "Ellis \"Red\" Redding has spent decades in Shawshank rationalizing his actions and his place in the world. He tells himself that his crime, though heinous, was the folly of a young man, and that his years of service in prison have paid his debt to society. Yet, when faced with the needs of others\u00e2\u20ac\u201dlike Andy Dufresne's relentless hope and plans for escape\u00e2\u20ac\u201dRed feels the pull of obligation, a duty to support and protect those who still believe in something greater. This tension between his rationalized acceptance of his fate and the moral obligation to help others forces Red to confront the quiet hope for redemption he has buried deep within. It is in this conflict that Red must decide whether to remain a passive realist or to act on the faint glimmer of hope that perhaps, just perhaps, there is a life waiting for him beyond the prison walls.", - "perspectives": { - "perspective_id": "44fe01d8-e85b-42e5-9388-f7cd3bce304b" - } - }, - { - "id": "b6b64aa1-ac37-4b03-934a-8f36480244b2", - "context": "Main Character", - "appreciation": "Symptom", - "narrative_function": "Reconsider", - "illustration": "having to reconsider one's opinion about someone", - "summary": "", - "storytelling": "Red's internal conflict arises as he begins to reconsider his long-held belief that hope is a dangerous thing within the confines of prison life. This drive to re-examine his conclusions about hope and redemption forces him to confront the possibility that his pragmatic realism might be a shield against vulnerability rather than a true reflection of his reality. As obstacles challenge his resolve, Red's reconsideration becomes a source of tension, pulling him between the safety of his established worldview and the risk of embracing a fragile, yet transformative, hope.", - "perspectives": { - "perspective_id": "03279f1f-fdae-4653-8bbe-120d6b3f8cdc" - } - }, - { - "id": "40440b6c-29d3-43e4-ac58-d0175ae0132c", - "context": "Main Character", - "appreciation": "Response", - "narrative_function": "Consider", - "illustration": "deliberating about someone", - "summary": "", - "storytelling": "Red's constant deliberation over his loyalty and protective instincts creates a profound internal conflict, as he struggles to reconcile his pragmatic realism with his quiet hope for redemption. This internal turmoil is mirrored in his interactions with other inmates, where his protective nature often clashes with the harsh realities of prison life, leading to moments of tension and self-doubt. His inability to let go of these considerations not only shapes his character but also drives the narrative forward, highlighting the complexities of survival and humanity within the prison system.", - "perspectives": { - "perspective_id": "880d1948-4c7d-41e9-a24f-a1d4bc7bb767" - } - }, - { - "id": "17bf1d33-e1a8-4ecc-946b-33faa7826618", - "context": "Main Character", - "appreciation": "Benchmark", - "narrative_function": "Conceptualizing", - "illustration": "unraveling someone's scheme", - "summary": "", - "storytelling": "Red's internal conflict is vividly illustrated through his struggle to conceptualize a future beyond the prison walls, a task that pits his pragmatic realism against his buried hope for redemption. This tension is further exacerbated by his protective instincts, which often lead him to prioritize others' well-being over his own, complicating his ability to envision a personal path to freedom. The evolving benchmarks of his journey, such as his interactions with fellow inmates and his own shifting self-perception, serve as a mirror to his deepening internal struggle and the challenges of reconciling his past with the possibility of a new beginning.", - "perspectives": { - "perspective_id": "97ca72df-1091-46c0-9a17-9fcdc01bcd63" - } - }, - { - "id": "a26a258c-2833-4c16-a83d-de9ea1101c13", - "context": "Main Character", - "appreciation": "Unique Ability", - "narrative_function": "Rationalization", - "illustration": "", - "summary": "", - "storytelling": "", - "perspectives": { - "perspective_id": "74270f91-9128-4076-a720-63d2b9636d8d" - } - }, - { - "id": "133fbf7e-fdf5-4bc6-9322-02a0fdabd4b0", - "context": "Influence Character", - "appreciation": "Symptom", - "narrative_function": "Avoid", - "illustration": "evading the police", - "summary": "", - "storytelling": "Andy Dufresne's reliance on avoidance as a method of conflict introduces a compelling tension in his narrative, as his calculated efforts to evade direct confrontation with the oppressive system highlight his strategic brilliance but also his vulnerability. By focusing on preventing exposure and maintaining his facade, Andy's actions underscore the precarious balance he must maintain to achieve his ultimate goal of freedom and justice. This avoidance not only propels the story forward but also deepens the audience's understanding of his character's resilience and ingenuity.", - "perspectives": { - "perspective_id": "b83d9ac7-f42a-468b-8f5b-2a024dda7fc5" - } - }, - { - "id": "53ae22cc-9aa4-4fca-958e-b6f99a67d186", - "context": "Influence Character", - "appreciation": "Response", - "narrative_function": "Pursuit", - "illustration": "seeking something", - "summary": "", - "storytelling": "Andy Dufresne's relentless pursuit of justice and autonomy, while admirable, introduces significant conflict as his calculated actions often place him at odds with the oppressive system he seeks to expose. His methodical approach, driven by a deep-seated determination, forces him to navigate a treacherous path where every step closer to his goal risks greater scrutiny and potential failure. This pursuit not only challenges Andy's resilience but also serves as a catalyst for his growth and the eventual unraveling of the injustices he faces.", - "perspectives": { - "perspective_id": "23a9235f-2006-470d-a991-138fa1c4924c" - } - }, - { - "id": "f9dd1174-5900-4f92-b5fa-f4b3a6b7d84e", - "context": "Influence Character", - "appreciation": "Benchmark", - "narrative_function": "Understanding", - "illustration": "having an understanding of someone's true character and feelings", - "summary": "", - "storytelling": "Andy Dufresne's journey is fraught with conflicts stemming from his attempts to understand and navigate the complex dynamics of the prison system and the individuals within it. His calculated demeanor and strategic manipulation of situations often clash with the misinterpretations and suspicions of those around him, creating a tension that underscores his struggle for justice and autonomy. This conflict of understanding not only propels the narrative but also highlights the profound challenges of reconciling personal goals with the opaque and often hostile environment he inhabits.", - "perspectives": { - "perspective_id": "3f345b33-7434-4abc-ae87-f61eb93af5db" - } - }, - { - "id": "54c7f89d-a00c-4a23-ac19-50f54d36c591", - "context": "Relationship Story", - "appreciation": "Resistance", - "narrative_function": "Avoid", - "illustration": "avoiding someone", - "summary": "", - "storytelling": "Red's initial reluctance to fully trust Andy, driven by his instinct to avoid emotional vulnerability in the harsh environment of prison, creates a subtle yet significant tension in their budding friendship. This avoidance, while a protective mechanism, hinders the deepening of their bond, as Andy's openness and hope challenge Red's guarded nature. The conflict between Red's resistance to vulnerability and Andy's persistent optimism becomes a pivotal dynamic, shaping their relationship's evolution and the narrative's emotional core.", - "perspectives": { - "perspective_id": "c353fda3-58df-412c-b0f2-497ff3cc7fab" - } - }, - { - "id": "f571b924-aebd-4d0c-a737-79d072bccf6f", - "context": "Relationship Story", - "appreciation": "Flow", - "narrative_function": "Pursuit", - "illustration": "pursuing happiness", - "summary": "", - "storytelling": "The pursuit of hope and freedom becomes a source of tension in Red and Andy's friendship, as their differing approaches to survival in prison clash. Andy's relentless drive to achieve his vision of freedom contrasts with Red's cautious pragmatism, creating moments of misunderstanding and conflict. However, this pursuit also serves as a catalyst for their relationship's growth, as they learn to navigate their differences and support each other's aspirations.", - "perspectives": { - "perspective_id": "5892b1af-b572-4e73-a162-886acda33761" - } - } - ], - "storybeats": [ - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Plot Dynamic", - "sequence": null, - "narrative_function": "Support", - "illustration": "not commending someone", - "summary": "Andy Dufresne is sentenced to two life sentences in Shawshank Prison, forcing him to fight for his life within its walls.", - "storytelling": "The Jury at Andy Dufresne's trial for murder unanimously decide that he is guilty after the D.A. provides ample evidence for why they should not support his icy cold demeanor. In addition, the Judge sentences Andy to serve two back-to-back life sentences in Shawshank Prison for the murder of his wife and her lover. As a consequence of this decision, Andy is forced into fighting for his life as he tries to survive within the walls of Shawshank Prison.", - "perspectives": { - "perspective_id": "8ae22e71-0368-42f7-8d7c-50fee3646ee5" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Past", - "illustration": "address someone having a troubled past", - "summary": "In the first Act of The Shawshank Redemption, Andy's innocence is his greatest strength, as Red helps him survive in the harsh prison environment while the Warden attempts to bring absolution and forgiveness to all inmates.", - "storytelling": "Shawshank Prison, a grim world defined by past crimes and guilt, is run by a corrupt warden and guards who abuse their power. Into this oppressive atmosphere steps Andy Dufresne, an innocent man with no past crimes to haunt him. His innocence, a stark contrast to the guilt-ridden inmates around him, makes him an outsider and a target for bullying. Recognizing the strength in Andy's innocence, long-time inmate Ellis \"Red\" Redding steps in to protect him, guiding him through the harsh realities of prison life. However, Red's support of Andy draws the ire of the prison guards, who see Andy's innocence as a threat to their authority. As Red navigates this new challenge, he begins to see the potential for change in Shawshank's rigid system, sparked by Andy's unwavering hope and determination.In the first Act of The Shawshank Redemption, Andy arrives at Shawshank and is the only one who doesn't have a past to be guilty of. As the other inmates continue to belittle and bully Andy, Ellis Redding steps in to protect him. He takes it upon himself to help Andy get acclimated to the prison life, teaching him the ropes and how to survive in such a harsh environment. Red soon realizes that Andy's innocence is his greatest strength, as it makes him immune to the corruption that exists in the prison. Red's support of Andy soon brings him trouble with the prison guards, as they see him as a threat to their authority.", - "perspectives": { - "perspective_id": "fe52d073-a226-4c93-8c95-97e445ba8b54" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Being", - "illustration": "pretending everything is OK", - "summary": "Red maintains a facade of reform while secretly trading contraband, but Andy's plea for help and defiance begin to erode his pretense of well-being.", - "storytelling": "Red's got this act down pat\u00e2\u20ac\u201dconvincing the board he's reformed, all while his side hustle in contraband thrives behind bars. He's the picture of ease, playing it cool and pretending all's well, even as Andy's request for help hints at the cracks in his facade. But when he basks in the glow of Andy's defiance, Red's charade of pretending to be okay starts to crumble, nudging him towards a path of more significant transformation.", - "perspectives": { - "perspective_id": "d5b02fa5-c645-48cf-acc5-07d7f260a5b3" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Doing", - "illustration": "fighting", - "summary": "Andy's defiance in Shawshank inspires Red to reconsider his passivity and contemplate fighting against their bleak imprisonment.", - "storytelling": "Red's always played it safe, but then Andy comes along, fighting the system with every breath. Watching Andy throw punches at their bleak life, it's like he's daring Red to step into the ring himself. And that's the rub\u00e2\u20ac\u201dRed's torn between the comfort of his routine and the scary thought of actually throwing a punch of his own.", - "perspectives": { - "perspective_id": "72032555-0e85-4381-8c7f-0704fea00b35" - } - }, - { - "id": "[[ internal id ]]", - "context": "Relationship Story", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Memory", - "illustration": "calling to mind", - "summary": "Red and Andy's friendship in prison deepens through shared memories, reflecting a mutual longing for past freedoms.", - "storytelling": "When Red and Andy first cross paths, there's an unspoken bond that forms as they trade stories about their former lives\u00e2\u20ac\u201dRed, the seasoned insider, and Andy, the infamous banker. Their chat about the rock-hammer isn't just shop talk; it's a dance of memories, each step revealing a bit more of the world they've left behind and the gritty reality they now share. It's in these moments, like when they're slathering tar on the prison roof, that their friendship deepens, rooted in a mutual yearning for the freedom of their pasts.", - "perspectives": { - "perspective_id": "e86903e9-44ae-499b-ad04-02e437c75b41" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Plot Dynamic", - "sequence": null, - "narrative_function": "Support", - "illustration": "giving unwanted support to someone", - "summary": "Captain Hadley's unexpected openness towards Andy leads to a shift in the dynamics of Shawshank, setting the stage for further developments in the story and illustrating the power of openness and support.", - "storytelling": "In the Second Story Driver of Shawshank Redemption, Captain Hadley, initially hostile and ready to throw Andy off the roof, experiences a moment of openness when Andy offers him valuable financial advice. This unexpected display of open-mindedness from Hadley serves as the catalyst for a significant shift in the story. Instead of punishing Andy, Hadley decides to support him, albeit reluctantly, by allowing him to live and even providing the inmates with cold beers as a reward for Andy's help. \u00f0\u0178\u008d\u00bbThis act of support, though initially unwanted by Hadley, leads to a change in the dynamics within the prison. Andy's financial expertise becomes known, and he starts to gain the respect and trust of both the inmates and the prison staff. This newfound support for Andy sets the stage for further developments in the story, as his influence within Shawshank grows and he begins to challenge the established power structures. The Second Story Driver, therefore, illustrates the power of openness and support in driving the narrative forward and shaping the characters' destinies. \u00f0\u0178\u201c\u0161\u00f0\u0178\u2019\u00a1\u00f0\u0178\u201d\u2014", - "perspectives": { - "perspective_id": "a66df2cf-79b5-48a5-9bb2-b2358177d82e" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Signpost", - "sequence": 2, - "narrative_function": "Becoming", - "illustration": "being transformed by prison life", - "summary": "Red's transformation in prison reveals a deep-seated dependency on institutional walls, challenging his sense of self and hinting at a potential awakening.", - "storytelling": "Prison life's got its hooks in Red, shaping him in ways he can't even admit. He brushes off Andy's rooftop defiance, yet it stirs something deep within, a glimpse of what lies beyond his institutionalized mindset. But it's Brooks' breakdown that lays it bare: Red's trapped in a cycle of dependency on the very walls he once despised, a transformation that's more like a slow fade of the soul.", - "perspectives": { - "perspective_id": "67734b55-d099-441f-b7a8-819fdc7403b1" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 2, - "narrative_function": "Future", - "illustration": "improving the future prospects for a group", - "summary": "Andy's manipulation of the guards, setting up of a library, and Brooks' violent outburst demonstrate the psychological dysfunction and manipulation at play in uncertain futures.", - "storytelling": "During the first half of Act Two in The Shawshank Redemption, three significant events unfold, highlighting the psychological dysfunction and manipulation at play within the story:1. Andy begins to manipulate the guards' future prospects by offering his expertise in tax matters. By doing so, he not only gains their favor but also subtly shifts the power dynamics within the prison. This act of manipulation showcases Andy's ability to navigate the complex psychological landscape of Shawshank and use it to his advantage. \u00f0\u0178\u00a7 \u00f0\u0178\u2019\u00bc2. Andy sets up a library to improve the educational prospects of the inmates, challenging the status quo and the prison's oppressive environment. This act of defiance against the system demonstrates Andy's determination to bring about change and hope within the prison walls. Through this endeavor, he manipulates the inmates' mindset, encouraging them to believe in a better future and their own potential for growth. \u00f0\u0178\u201c\u0161\u00f0\u0178\u0152\u00b13. Brooks, overwhelmed by the prospect of a future outside of Shawshank, takes a knife to Heywood's throat. This dramatic event highlights the deep-rooted psychological dysfunction that can result from long-term institutionalization. Brooks' fear of the unknown and inability to cope with change leads him to lash out violently, showcasing the damaging effects of the prison system on the inmates' mental health. \u00f0\u0178\u201d\u00aa\u00f0\u0178\u02dc\u00a8These three events emphasize the psychological dysfunction and manipulation present in The Shawshank Redemption, further enriching the story's exploration of hope, redemption, and the human spirit.", - "perspectives": { - "perspective_id": "ab95b6ab-a02e-4e70-9e0e-5cb635a51bd9" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Signpost", - "sequence": 2, - "narrative_function": "Obtaining", - "illustration": "gaining power", - "summary": "Andy's ascent to power inspires Red to reconsider his own passive existence and contemplate engaging in the high-stakes game of influence within prison walls.", - "storytelling": "Andy's working angles Red never even dreamed of, wheeling and dealing his way into the warden's good graces\u00e2\u20ac\u201dsuddenly, he's the man with the plan, the guy with the power. And there's Red, watching Andy's star rise, feeling that itch, wondering why he's just been sitting on his hands all this time. It's like Andy's showing him a game where the stakes are more than cigarettes and respect\u00e2\u20ac\u201dit's about making a mark, even behind these walls, and Red's not sure he's ready to play.", - "perspectives": { - "perspective_id": "a32e1a31-c9e6-42ba-a912-862ca5be2347" - } - }, - { - "id": "[[ internal id ]]", - "context": "Relationship Story", - "appreciation": "Signpost", - "sequence": 2, - "narrative_function": "Preconscious", - "illustration": "being agitated about something", - "summary": "Red's preconscious agitation towards Andy's whisper of 'hope' in Shawshank stirs a transformative bond between them.", - "storytelling": "As Andy and Red's camaraderie unfolds, it's the unguarded moments that spark change\u00e2\u20ac\u201dlike when Andy dares to whisper 'hope' amidst the clatter of the lunchroom. Red's fork freezes mid-air, his agitation clear as day; hope, he argues, is nothing but trouble. Yet, it's this very friction, this dance of instinct and challenge, that forges their bond in the fire of Shawshank, each man shaping the other's survival against the prison's unforgiving backdrop.", - "perspectives": { - "perspective_id": "e008fd26-9eb2-460f-91b3-46a990d1291a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Plot Dynamic", - "sequence": null, - "narrative_function": "Support", - "illustration": "endorsing someone", - "summary": "The Warden's initial support of Andy's library project sets the stage for a conflict between them when Andy defies the Warden's authority by playing the record, leading to Andy's imprisonment in solitary confinement.", - "storytelling": "The Warden's decision to support Andy's library project, which leads to an unspoken \"friendship\" between them, sets the stage for the midpoint of story. This support, however, comes with the expectation that Andy will remain compliant and not challenge the Warden's authority.When Andy decides to play the record for all the inmates, he breaks this unspoken agreement and openly defies the Warden. Andy's decision to play the record not only challenges the Warden's authority but also demonstrates his unwillingness to continue supporting the oppressive system within Shawshank.The Warden's initial support of Andy's library project can be seen as a strategic move to maintain control over Andy and the prison. However, Andy's decision to play the record reveals his true intentions of empowering the inmates and challenging the status quo. This act of defiance marks a turning point in the story, as it intensifies the conflict between Andy and the Warden and sets the stage for the dramatic events that follow.These cross-purposes lead to Andy thrown in solitary confinement.", - "perspectives": { - "perspective_id": "e0903f68-764c-4d2e-b816-2dbfda505e30" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 3, - "narrative_function": "Present", - "illustration": "being focused on one's immediate needs", - "summary": "Andy's hopeful attitude and Norton's opportunistic one clash with the Warden's controlling one, leading to a reevaluation of priorities and a greater integration of perspectives.", - "storytelling": "Andy endures solitary confinement, adopting a hopeful attitude to survive the present moment. Upon his release, he tries to convince a skeptical Red that embracing hope, even in their current situation, is what sustains him. Meanwhile, in 1963, Norton's opportunistic attitude leads him to exploit prison labor for public works, profiting from the community's immediate needs by undercutting skilled labor costs and accepting bribes. Andy, recognizing the prevailing attitudes, seizes the opportunity to launder the money using the alias 'Randall Stephens'. As Tommy Williams arrives and shares information that could lead to Andy's imminent release, the Warden's controlling attitude clashes with Andy's hope, forcing the Warden to take action to protect his own interests and maintain control over the present situation. This conflict of attitudes ultimately pushes the characters towards a greater integration of perspectives and a reevaluation of their priorities.", - "perspectives": { - "perspective_id": "d48fd933-496b-4dc5-b29d-8a0666f09a6a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Relationship Story", - "appreciation": "Signpost", - "sequence": 3, - "narrative_function": "Subconscious", - "illustration": "dreaming of something", - "summary": "Andy's dream of Zihuatanejo ignites a subconscious yearning for freedom in Red's once-dormant spirit.", - "storytelling": "In the quiet of the prison night, Andy's voice carries a dream of Zihuatanejo, a beacon of hope that Red tries to shrug off\u00e2\u20ac\u201dbut dreams have a way of taking root. As Andy's steadfast gaze pierces the gloom, his dream seeps into Red's subconscious, stirring a long-dormant hunger for freedom. Their friendship, now a vessel of shared longing, sails them both towards the faintest glimmer of life beyond the bars.", - "perspectives": { - "perspective_id": "8d3b08f2-9c0c-4f70-9e90-df690d573f73" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Signpost", - "sequence": 3, - "narrative_function": "Learning", - "illustration": "learning something", - "summary": "Andy's thirst for truth and beauty educates Red on the power of learning to transcend their prison confines.", - "storytelling": "When Andy blasts that opera over the loudspeakers, it's like he's schooling Red in a class he didn't know he signed up for\u00e2\u20ac\u201dturns out, beauty can punch through prison walls. Then this kid Tommy waltzes in with a secret that could turn Andy's life around, and Andy's all over it, hungry for the truth like it's his last meal. Red's watching all this, this hunger for knowledge, and it's got him questioning his own rule about not poking the bear\u00e2\u20ac\u201dmaybe some fights are worth baring your claws for.", - "perspectives": { - "perspective_id": "61a1c2c5-fa61-4d34-8934-642106c55b0a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Signpost", - "sequence": 3, - "narrative_function": "Conceiving", - "illustration": "getting the idea that something is worth it", - "summary": "Red's internal struggle with an inspiring aria suggests conceiving change could be worth the risk.", - "storytelling": "Red's always played it safe, keeping his thoughts close to the vest, especially when it comes to the unspoken beauty of an Italian aria that moves him. It's that very tune that plants a seed, an idea that maybe, just maybe, there's something more out there, something worth conceiving a life beyond the prison walls. And when the new kid arrives, full of hope, Red's warning against making a difference is really him wrestling with his own budding notion that change, however daunting, might just be possible.", - "perspectives": { - "perspective_id": "f70f3008-217a-40a4-9d5e-69bc39632790" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Plot Dynamic", - "sequence": null, - "narrative_function": "Support", - "illustration": "endorsing someone", - "summary": "Tommy's decision to support Andy's innocence is met with fatal consequences from the Warden, who is unwilling to accept the challenge to his authority.", - "storytelling": "Tommy, a young inmate, decides to support Andy by testifying in favor of his innocence. This decision is driven by his belief in Andy's side of the story and his desire to help him. However, the Warden, who is in denial about the possibility of Andy being innocent and fears the consequences of this truth coming to light, makes a decision to support the status quo and maintain his control over the prison. The Warden takes Tommy for a walk in the yard late at night. During this walk, the Warden confirms Tommy's unwavering support for Andy's case. Unable to accept this challenge to his authority and the potential exposure of his corrupt practices, the Warden steps aside so Hadley can fatally shoot Tommy.", - "perspectives": { - "perspective_id": "e52e811e-8bf6-4ee8-b5ee-2f4931ec8016" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Signpost", - "sequence": 4, - "narrative_function": "Understanding", - "illustration": "having an insight into a group", - "summary": "Red's epiphany that hope transcends prison walls ignites an understanding of the fragility of the warden's control.", - "storytelling": "Andy's vanishing act hits Red like a ton of bricks\u00e2\u20ac\u201dit's not just a man escaping, it's a whole philosophy breaking out, showing Red that hope ain't just a four-letter word. The warden's empire crumbles, and there's Red, realizing the joint's pecking order was just a house of cards waiting for a breeze. It's a wake-up call, and Red's got to admit, maybe understanding the lay of the land means seeing the walls for what they are\u00e2\u20ac\u201dtemporary.", - "perspectives": { - "perspective_id": "77036630-cc15-4556-bbe4-6fbccdddb708" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 4, - "narrative_function": "Progress", - "illustration": "moving in a positive direction", - "summary": "Andy's escape plan is successful, exposing the Warden's corruption and inspiring Red to find hope, as Andy leaves a note that reads, \"Salvation lies within.\"", - "storytelling": "After Tommy's murder, Andy's hope is severely tested. He becomes more withdrawn and starts planning his escape. Red, on the other hand, begins to see the value of hope and starts to change his perspective on life. The Warden's corruption and control over the prison become more apparent, and the inmates start to question the system they've been living under.As the story progresses, Andy's escape plan comes to fruition. He uses his knowledge of the Warden's illegal activities and the alias 'Randall Stephens' to expose the corruption within the prison. On the night of his escape, Andy switches out the Warden's ledger with his Bible, leaving a note that reads, \"Salvation lies within.\"", - "perspectives": { - "perspective_id": "d2bbb13b-50a7-4d79-867f-ec25818bd872" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Signpost", - "sequence": 4, - "narrative_function": "Conceptualizing", - "illustration": "imagining a new life", - "summary": "Red's parole ignites a defiant spark to reimagine his life, unchained and in control.", - "storytelling": "Red's always had a spark of defiance, a quiet kind of rebellion simmering beneath that prison-grey exterior. It's not until he's out, on parole, that this spark ignites into a full-blown blaze, pushing him to conceptualize a life unchained, a life where he's the one calling the shots. And there he is, heart pounding with the thrill of what's ahead, a free man embarking on a journey to a place he's only dared to imagine\u00e2\u20ac\u201da place where his story might just find its happy ending.", - "perspectives": { - "perspective_id": "9423aa09-1377-4456-951f-fccc30e5b516" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Plot Dynamic", - "sequence": null, - "narrative_function": "Oppose", - "illustration": "disagreeing with a group", - "summary": "Andy's decision to oppose the Warden's views and escape leads to his liberation, the Warden's suicide, and a hopeful future for characters like Red.", - "storytelling": "In \"The Shawshank Redemption,\" the final Story Driver centers on Andy Dufresne's decision not to kill himself, but to oppose the Warden's belief in salvation through submission. Andy's secret escape plan, a symbol of defiance, leads to his liberation and exposes the Warden's corruption. This opposition shatters the Warden's world, ultimately resulting in his suicide. Andy's choice to defy the Warden's views paves the way for a hopeful future for characters like Red, illustrating the power of the Solution of Oppose in resolving the story's central problem and delivering a satisfying conclusion.", - "perspectives": { - "perspective_id": "6acc0d72-725a-450f-8289-c1b98b066701" - } - }, - { - "id": "[[ internal id ]]", - "context": "Relationship Story", - "appreciation": "Signpost", - "sequence": 4, - "narrative_function": "Conscious", - "illustration": "thinking about the nature of someone's relationship", - "summary": "Once strangers, Andy and Red now consciously embrace their enduring friendship, a bond so profound it propels Red to fulfill a dream etched in shared hope, culminating in a heartfelt on a distant shore.", - "storytelling": "Under the sprawling arms of that lone oak tree, Red unfolds Andy's letter, each word a testament to the trust and transformation forged between them. It's there, with the sun warming his back, that Red's decision crystallizes: to honor their friendship by journeying to the dream they once dared to envision. And on Zihuatanejo's shores, as they reunite, their friendship transcends the past, standing as a living monument to the power of conscious choice and enduring hope.", - "perspectives": { - "perspective_id": "3605d277-8770-4cfb-a282-435fa2677a7a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": null, - "narrative_function": "Knowledge", - "illustration": "knowing the truth about someone", - "summary": "Red knows he is not a changed man and tells the parole board that he's all fixed. They know he is lying.", - "storytelling": "Knowing that this is what they want to hear, knowing that he is supposed to say this and knowing that they will say no. The parole board wanting to know how he is doing. He knows ahead of time how this is going to go, which sets him up for failure.", - "perspectives": { - "perspective_id": "e8b312e1-5092-40b8-b0e5-c92c2acc1b14" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 2, - "narrative_function": "Ability", - "illustration": "practicing one's abilities", - "summary": "Untitled", - "storytelling": "Red demonstrates his ability to continue his illegal operations while pretending to be a reformed man. He is skilled at smuggling contraband and is able to maintain his criminal activities without getting caught.", - "perspectives": { - "perspective_id": "dc907189-aaba-4b1b-b62a-2545d869a570" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 3, - "narrative_function": "Desire", - "illustration": "desiring a better life", - "summary": "Untitled", - "storytelling": "Red watches Andy, seeing the hope and determination that he himself lacks. He begins to desire a better life, one that isn't defined by the walls of Shawshank. However, his fear of the unknown, the risks involved in pursuing such a life, and his own institutionalization hold him back. He's torn between his growing desire for change and his fear of stepping out of his comfort zone. This internal conflict could manifest in various ways, such as hesitation in supporting Andy's plans or expressing cynicism despite a hidden longing for hope.", - "perspectives": { - "perspective_id": "94efd65b-d7f4-41f9-9857-b002fea2d192" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 4, - "narrative_function": "Thought", - "illustration": "being cunning about someone", - "summary": "Untitled", - "storytelling": "Red's thoughts revolve around his own self-interest and survival. He carefully calculates his actions and words to manipulate others into believing his false reformation, while also ensuring that he is not implicated in any wrongdoing when Andy asks for help.", - "perspectives": { - "perspective_id": "b58b09db-884b-4212-b6d4-42d4b11375b0" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 1, - "narrative_function": "Fate", - "illustration": "being trapped by inevitable circumstances", - "summary": "Untitled", - "storytelling": "Andy's arrival at Shawshank is seemingly fated, as he is the only inmate without a criminal past. This sets him apart from the other prisoners and makes him a target for their belittlement and bullying. However, fate also brings Ellis Redding into Andy's life, as he steps in to protect him and becomes his mentor in navigating the harsh prison environment.", - "perspectives": { - "perspective_id": "d81b1667-4161-4b7c-bd37-30108b4fd3a9" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 2, - "narrative_function": "Prediction", - "illustration": "predicting someone will do something", - "summary": "Untitled", - "storytelling": "As Red takes Andy under his wing, he predicts that Andy's innocence will be his greatest asset. He believes that Andy's lack of guilt and corruption will allow him to maintain his integrity and resist the temptations of the prison. This prediction sets up a conflict with the prison guards, who see Andy as a threat to their authority and try to undermine Red's support of him.", - "perspectives": { - "perspective_id": "856b200e-2fc0-4e8e-aa97-9148c54a8615" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 3, - "narrative_function": "Interdiction", - "illustration": "hindering the inevitable", - "summary": "Untitled", - "storytelling": "Red's support of Andy becomes an interdiction for the prison guards, who see him as a troublemaker. They try to intimidate Red into stopping his mentorship of Andy, warning him of the consequences if he continues to support someone they perceive as a threat. This interdiction creates tension between Red and the guards, as he must decide whether to comply or defy their orders.", - "perspectives": { - "perspective_id": "b4879fae-75cc-4185-93b4-66d1ebd9f6e5" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 4, - "narrative_function": "Destiny", - "illustration": "having a destiny", - "summary": "Untitled", - "storytelling": "The Warden's belief in redemption and his strict moral code shape the destiny of the inmates in Shawshank. He enforces hard work, discipline, and adherence to his rules as the path to absolution. This clashes with Andy's innocence and refusal to conform to the corrupt practices within the prison, setting up a conflict between Andy and the Warden's vision of destiny.", - "perspectives": { - "perspective_id": "d4b195ef-ee3e-44c0-92af-433f9d251101" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 1, - "narrative_function": "Truth", - "illustration": "being honest about something", - "summary": "Untitled", - "storytelling": "Andy approaches Red and asks him for a rock hammer, claiming that he wants to pursue his hobby of rock collecting. Red is suspicious of Andy's true intentions and questions him about why he really wants the hammer. Andy assures Red that he only wants it for harmless reasons, but Red remains skeptical and uncertain.", - "perspectives": { - "perspective_id": "db98086e-6bf0-4fdf-80b0-3028d892cf0f" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 2, - "narrative_function": "Evidence", - "illustration": "collecting evidence about something", - "summary": "Untitled", - "storytelling": "Andy convinces the prison librarian to give him some books on geology, which he uses as evidence to support his claim that he genuinely wants the rock hammer for his hobby. Red observes Andy's dedication to learning and sees the evidence of his genuine interest in rocks. However, Red still questions whether Andy might be hiding ulterior motives.", - "perspectives": { - "perspective_id": "a051e714-f5a4-401c-bcb0-8c0a14dacbeb" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 3, - "narrative_function": "Suspicion", - "illustration": "suspecting someone's guilt", - "summary": "Untitled", - "storytelling": "As Andy continues to display resilience and determination in the face of the prison system's attempts to break him, Red becomes increasingly suspicious of Andy's true intentions. Red starts to suspect that Andy might have a plan to escape or manipulate the system. The growing suspicion creates tension between the two characters and leads to conflicts in their interactions.", - "perspectives": { - "perspective_id": "da0bc998-5d95-4ead-a98e-6c7017f7a900" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 4, - "narrative_function": "Falsehood", - "illustration": "telling a lie about a friend", - "summary": "Untitled", - "storytelling": "Red confronts Andy about his suspicions, accusing him of hiding his true intentions. Andy denies any wrongdoing and insists that he genuinely wants the rock hammer for his hobby. However, Red remains doubtful and feels betrayed by Andy's denial. The falsehoods and lack of trust between the two characters deepen the conflict and strain their budding friendship.", - "perspectives": { - "perspective_id": "f781428a-ce74-4a45-873b-cac66b9f9d79" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 1, - "narrative_function": "Proven", - "illustration": "being proven guilty", - "summary": "Untitled", - "storytelling": "In the context of your scene, Red starts with something Proven: he's a convicted murderer, and he's been denied parole before. This is a fact, a reality he can't escape. He's being called in to prove how he is done, and to Red its already proven to him that this process is broken.", - "perspectives": { - "perspective_id": "ea83d4d3-e1b6-4c46-bc26-e6e4a575ab81" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 2, - "narrative_function": "Result", - "illustration": "having repercussions on someone", - "summary": "Untitled", - "storytelling": "The Result beat could be the parole board's initial reaction to Red's presentation. Perhaps they seem unimpressed or skeptical, focusing on the result of his past actions (his crime) rather than his transformation. This could increase Red's frustration and cynicism, as he feels like he's being judged solely on his past, not on who he is now.", - "perspectives": { - "perspective_id": "d1d3e438-563a-4564-ab7b-f9a2a0879842" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 3, - "narrative_function": "Process", - "illustration": "focusing on the journey", - "summary": "Untitled", - "storytelling": "The Process beat could then involve Red trying to navigate this difficult situation. He might attempt different strategies to convince the board of his change, such as sharing specific examples of his good behavior in prison, expressing remorse for his crime, or outlining his plans for a law-abiding life after parole. This is the process of Red trying to transform the board's perception of him.validating their process, \"Oh, I'm a changed man, yessir...\"", - "perspectives": { - "perspective_id": "89966a4e-3339-4388-83c8-ec6d9f26f468" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 4, - "narrative_function": "Presumption", - "illustration": "being suspect of something", - "summary": "Untitled", - "storytelling": "By the end of the scene, Red could be left with the Presumption that no matter what he does or says, he'll always be seen as a criminal and will remain in prison forever. This presumption isn't based on any new evidence or facts presented in the meeting, but rather on Red's interpretation of the board's reactions and his own cynical outlook.The board is suspect that Red is telling the truth, and deny his parole. ", - "perspectives": { - "perspective_id": "e066ec75-2702-4cda-96d1-4bac1db60370" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 1, - "narrative_function": "Effect", - "illustration": "having repercussions on something", - "summary": "Untitled", - "storytelling": "Red's ability to continue his illegal operations while pretending to be reformed has a significant effect on the other characters and the overall plot. As Red successfully smuggles contraband, the criminal underworld becomes more active and influential, leading to an increase in crime rates and corruption in the city. This effect creates tension and conflict among law enforcement, as they struggle to uncover the source of the illegal activities and bring Red to justice.", - "perspectives": { - "perspective_id": "743794c1-bd1d-444a-9dc9-048ed3842b03" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 2, - "narrative_function": "Accurate", - "illustration": "doing accurate work", - "summary": "Untitled", - "storytelling": "Red's skills in smuggling contraband are accurate and well-honed. He meticulously plans each operation, ensuring that he remains undetected by authorities. Red's accuracy in executing his illegal activities adds an element of suspense and danger to the story, as law enforcement grows increasingly frustrated and determined to catch him. This accuracy also puts Red at odds with rival criminals who may see him as a threat to their own operations, leading to intense rivalries and conflicts within the criminal underworld.", - "perspectives": { - "perspective_id": "5f612913-d768-4756-9038-644293213dbe" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 3, - "narrative_function": "Deviation", - "illustration": "deviating", - "summary": "Untitled", - "storytelling": "Despite his outward appearance of a reformed man, Red's continued criminal activities create a significant deviation from the expected narrative. This deviation not only surprises the other characters in the story but also challenges their own beliefs and perceptions. Red's ability to deceive those around him and maintain his double life creates conflict within his relationships, particularly with those who have come to trust and rely on him. This deviation also sparks internal conflict within Red himself, as he grapples with the moral implications of his actions.", - "perspectives": { - "perspective_id": "331ae052-0409-4d6c-93e6-ec7f37f30077" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 4, - "narrative_function": "Cause", - "illustration": "causing someone to do something", - "summary": "Untitled", - "storytelling": "Red's ability to continue his illegal operations is caused by a combination of factors. His knowledge and experience in smuggling contraband, as well as his careful planning and execution, allow him to operate successfully without getting caught. Additionally, Red's charismatic personality and ability to maintain a facade of reformation enable him to deceive those around him, including law enforcement and his criminal rivals. This cause-effect relationship creates tension and conflict throughout the story, as the other characters become increasingly suspicious of Red's true intentions and work to unravel the secrets behind his criminal activities.", - "perspectives": { - "perspective_id": "4aceee07-2379-48e9-a77a-86f37fbe73af" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 9, - "narrative_function": "Closure", - "illustration": "resolving a mystery", - "summary": "Untitled", - "storytelling": "Andy's pursuit of knowledge and truth leads him to uncover evidence that could prove his innocence. He meticulously gathers documents, testimonies, and other pieces of information to build his case. However, as he gets closer to finding closure, he faces resistance from the warden, who tries to suppress the evidence and keep Andy's innocence hidden. This conflict between Andy's search for closure and the warden's attempts to deny it creates tension and raises the stakes for Andy's quest for justice.", - "perspectives": { - "perspective_id": "d6eaa11e-ff67-4f98-92ee-abaddcf598da" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 10, - "narrative_function": "Hope", - "illustration": "being hopeful", - "summary": "Untitled", - "storytelling": "Tommy's arrival with information that could potentially exonerate Andy sparks a glimmer of hope in Andy and the other inmates. They start to believe that there might be a chance for Andy to prove his innocence and regain his freedom. Despite the challenges and setbacks he faces, Andy's unwavering hope drives him to continue his pursuit of the truth. The conflict between hope and the obstacles that stand in its way creates a sense of anticipation and keeps the readers engaged in the story.", - "perspectives": { - "perspective_id": "1d459bd1-d43b-40be-afcd-154825ad03fc" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 11, - "narrative_function": "Dream", - "illustration": "pursuing the american dream", - "summary": "Untitled", - "storytelling": "Tommy is dreaming if he thinks he can make a difference and convince the warden otherwise when it comes to Andy.Throughout this part of the story, Andy's dream of freedom and vindication becomes more pronounced. His pursuit of knowledge and truth is not just about proving his innocence but also about fulfilling his dream of escaping Shawshank. As Andy shares his knowledge and empowers others with information, his dream becomes contagious, inspiring Red and other inmates to dream of a better life outside the prison walls. The conflict arises when the harsh reality of their circumstances clashes with their dreams, leading to moments of doubt and questioning.", - "perspectives": { - "perspective_id": "b3fff533-e775-41c5-b871-aa1a5406839a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 12, - "narrative_function": "Denial", - "illustration": "being denied", - "summary": "Untitled", - "storytelling": "Tommy doesn't deny Andy and what he knows about him, even when facing certain death (at least from Red's perspective).The warden, fueled by his desire for control and maintaining the status quo, denies Andy's pursuit of knowledge and truth. He tries to suppress the evidence and silence Andy, fearing that the truth will disrupt the order he has established within Shawshank. The conflict between Andy's relentless pursuit of truth and the warden's denial of it creates a power struggle that intensifies as the story progresses. The warden's denial becomes a source of conflict, fueling Andy's determination to expose the truth and seek justice.", - "perspectives": { - "perspective_id": "292a58f1-5041-4009-bb5d-d672ad388f9a" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 13, - "narrative_function": "Investigation", - "illustration": "investigating a murder", - "summary": "Untitled", - "storytelling": "Red begins to investigate Andy's secret plan, trying to uncover the truth behind his escape. He searches Andy's cell, questioning other inmates, and even confronts Andy himself. This investigation creates conflict as Red struggles to understand Andy's motives and whether he can trust him.", - "perspectives": { - "perspective_id": "e9158540-b74c-4916-8a5d-9b9d351b9e3b" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 14, - "narrative_function": "Appraisal", - "illustration": "being appraised by something", - "summary": "Untitled", - "storytelling": "As Red gathers more information about Andy's plan, he starts to reassess his own beliefs and perspective on hope and change. He reflects on his own experiences in prison and the impact Andy has had on him. This appraisal creates conflict within Red as he grapples with the idea of hope and whether it is worth pursuing.", - "perspectives": { - "perspective_id": "e772cb23-0ca5-412d-8022-f031398e9d3e" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 15, - "narrative_function": "Reappraisal", - "illustration": "re-evaluating a conclusion", - "summary": "Untitled", - "storytelling": "The letter under the rock near the tree.After discovering the truth about Andy's plan and witnessing the exposure of the warden's corruption, Red undergoes a significant reappraisal of his understanding of hope. He realizes that Andy's actions have led to a potential opportunity for redemption and a chance at a different life. This reappraisal creates conflict as Red must decide whether to embrace hope and take a leap of faith or remain in his familiar and comfortable but stagnant prison life.", - "perspectives": { - "perspective_id": "3ff5a993-bf82-401e-bf31-b8ae4d68f444" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 16, - "narrative_function": "Doubt", - "illustration": "doubting oneself", - "summary": "Untitled", - "storytelling": "In the midst of his reappraisal, doubt creeps into Red's mind. He questions whether he is capable of change and if he deserves a second chance. This doubt creates internal conflict for Red as he grapples with his own self-worth and the fear of failure. It also serves as a source of external conflict as Red faces skepticism and resistance from other inmates who try to discourage him from pursuing a life outside of Shawshank.", - "perspectives": { - "perspective_id": "e026bc78-2eda-4d13-8c68-d3c089bf1468" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 13, - "narrative_function": "State of Being", - "illustration": "showing something's true colors", - "summary": "Untitled", - "storytelling": "Red starts off as a prisoner, confined within the walls of Shawshank. He is oppressed and trapped, longing for freedom and a sense of purpose in his life.", - "perspectives": { - "perspective_id": "8834d55f-7f3b-45ab-bdf4-60afcb550fa3" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 14, - "narrative_function": "Circumstances", - "illustration": "being in a catch-22", - "summary": "Untitled", - "storytelling": "Red's circumstances change when he meets Andy, a fellow inmate who becomes his friend. Andy's escape plan gives Red hope and the desire for something more in life. However, Red is conflicted about whether to join Andy or stay within the confines of the prison.", - "perspectives": { - "perspective_id": "456dfbbe-5d20-42a9-aa97-8d2a25893bad" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 15, - "narrative_function": "Situation", - "illustration": "being in a predicament", - "summary": "Untitled", - "storytelling": "As Red contemplates his decision, he faces the conflict of staying in a familiar but oppressive situation or taking the risk of breaking parole and escaping. The prison authorities become suspicious of Red's growing friendship with Andy, adding tension to the situation.", - "perspectives": { - "perspective_id": "d0fdc650-2753-46eb-8dc8-09a3052e37e7" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 16, - "narrative_function": "Sense of Self", - "illustration": "taking stock of who one is", - "summary": "Untitled", - "storytelling": "Ultimately, Red makes the decision to break parole and escape with Andy. This choice challenges his sense of self as a law-abiding citizen and forces him to confront his rebellious tendencies. Red's excitement at the prospect of starting anew is tempered by the uncertainty of the journey ahead, but he embraces the opportunity for personal growth and self-discovery.", - "perspectives": { - "perspective_id": "8a7efcbe-b977-42e0-8ac9-4c37d5bc05da" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Past", - "illustration": "making up for past mistakes", - "summary": "The Warden is determined to help the inmates of Shawshank find redemption through hard work, discipline, and adherence to his strict moral code.", - "storytelling": "Meanwhile, the Warden, a deeply religious man, is determined to make sure everyone in Shawshank receives absolution and forgiveness for their sins. He believes that through hard work, discipline, and adherence to his strict moral code, the inmates can find redemption.1. Fate: Warden Norton, a deeply religious man, is appointed to Shawshank State Penitentiary. He sees it as his divine fate to bring moral order and redemption to the prison.2. Prediction: The Warden predicts that his strict moral code, enforced through hard work and discipline, will reform the inmates. He believes that everyone in Shawshank can find absolution and forgiveness for their sins.3. Interdiction: The Warden intervenes in the lives of the inmates by implementing a rigorous work program. He believes that through labor, the inmates can make up for their past mistakes. He also starts a Bible study group, further enforcing his moral code.4. Destiny: The Warden's actions start to shape the destiny of Shawshank. The prison becomes known for its disciplined inmates and moral teachings. However, beneath this facade, the Warden is exploiting the inmates for his own gain, using their labor for public works projects and pocketing the profits.", - "perspectives": { - "perspective_id": "273df6dc-c977-43b4-a6ba-0f78b1ca571d" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 9, - "narrative_function": "Choice", - "illustration": "being reluctant to make a choice", - "summary": "Untitled", - "storytelling": "Andy, upon his release from solitary confinement, chooses to share his hopeful attitude with Red, despite knowing that Red is skeptical. This choice creates conflict as Red is resistant to embracing hope, believing it to be futile in their current situation. However, Andy persists in trying to convince Red, leading to a clash of choices and perspectives.", - "perspectives": { - "perspective_id": "27e56e44-9317-463e-b58b-fe3a6d975488" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 10, - "narrative_function": "Preconception", - "illustration": "being predisposed against someone", - "summary": "Untitled", - "storytelling": "Norton's opportunistic attitude and willingness to exploit prison labor for personal gain is driven by his preconception that he can manipulate the system to his advantage. This preconception creates conflict as it goes against the moral principles of the other characters, particularly Andy, who sees the exploitation as unjust. The clash of preconceptions leads to tension and a questioning of values.", - "perspectives": { - "perspective_id": "ab7b4b7f-6018-4c26-ad2e-ed438dcdf1f3" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 11, - "narrative_function": "Openness", - "illustration": "having a policy of openness", - "summary": "Untitled", - "storytelling": "Andy's openness to seizing the opportunity to launder money using an alias demonstrates his resourcefulness and adaptability. This openness creates conflict as it goes against the rigid rules and regulations of the prison system, particularly the Warden's controlling attitude. The clash of openness and control leads to a power struggle between Andy and the Warden, with Andy risking his own safety to maintain his sense of agency.", - "perspectives": { - "perspective_id": "3f33b124-481f-42a2-a3a9-9e30aea0d743" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 12, - "narrative_function": "Delay", - "illustration": "being delayed", - "summary": "Untitled", - "storytelling": "The delay in Andy's release, caused by the Warden's desire to maintain control and protect his own interests, creates conflict as it prolongs Andy's imprisonment and prevents him from fully realizing his hope for freedom. This delay also frustrates the other characters, particularly Tommy Williams, who holds information that could expedite Andy's release. The clash of delay and urgency heightens the tension and pushes the characters to reevaluate their priorities and take action.", - "perspectives": { - "perspective_id": "e9f0976e-5bcc-42fd-8c2d-9879286039ee" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Being", - "illustration": "refusing to pretend everything is okay", - "summary": "Untitled", - "storytelling": "When we first meet Red, we find him sneaking in contraband for inmates while telling the review board he's a changed man. \"I can honestly say I'm a changed man. I'm no longer a danger to society. That's the God's honest truth. No doubt about it.\" Clearly, he's not, and clearly he's putting up a ton of resistance towards any kind of personal growth. He feigns reconciliation while continuing to play the role of a minor criminal. Returning to circulation, he continues his illegal operations while looking the other way when Andy asks for help.", - "perspectives": { - "perspective_id": "1639455d-9765-4224-8175-d10da07f326f" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": null, - "narrative_function": "Knowledge", - "illustration": "knowing something's business", - "summary": "Red's extensive knowledge of the prison's rules and regulations leads him to smuggle contraband, but when he miscalculates and gets caught, he is thrown into solitary confinement and forced to question if his knowledge is really helping him", - "storytelling": "Red, with his extensive knowledge of the prison's rules and regulations, is well aware that smuggling contraband is against the rules. However, he continues to do it, using his knowledge to evade the guards and keep his operation hidden. One day, he miscalculates and a new guard, who is not part of the usual patterns Red has memorized, catches him in the act. This leads to Red being thrown into solitary confinement, a harsh punishment that makes him question if his knowledge and the way he's been using it is truly serving him or leading him into more trouble. ", - "perspectives": { - "perspective_id": "5e05a63e-2898-488d-b052-194eb50f4aa4" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 2, - "narrative_function": "Ability", - "illustration": "being able to do something", - "summary": "Untitled", - "storytelling": "Red has the ability to smuggle contraband into the prison without getting caught. He uses his connections and experience to successfully bring in items for the inmates. However, this ability also becomes a source of conflict as it puts him at odds with the prison authorities and jeopardizes his own freedom.", - "perspectives": { - "perspective_id": "f7605810-3803-4114-94f0-41dcd21abccb" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 3, - "narrative_function": "Desire", - "illustration": "wanting to be someone better", - "summary": "Untitled", - "storytelling": "Red's desire to maintain his reputation as a criminal and his resistance towards personal growth create conflict within himself. He wants to be seen as a changed man by the review board, but his actions contradict his words. His desire to continue his illegal operations clashes with his desire to convince others that he has changed.", - "perspectives": { - "perspective_id": "ff51fabd-e880-4ca2-9042-499385157185" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 4, - "narrative_function": "Thought", - "illustration": "thinking", - "summary": "Untitled", - "storytelling": "Throughout this part of the story, Red's thoughts are conflicted. He knows that he should stop smuggling contraband and focus on his own personal growth, but he continues to engage in illegal activities. His thoughts are a constant battle between his desire for change and his reluctance to let go of his criminal identity.", - "perspectives": { - "perspective_id": "18e4641e-f115-4fe8-a47e-aaac79821870" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 1, - "narrative_function": "Proven", - "illustration": "being proven innocent", - "summary": "Red has earned respect, fear, and untouchability within the prison walls through his extensive knowledge of the prison's rules and regulations, resourcefulness, and ability to smuggle contraband without getting caught.", - "storytelling": "Red, with his extensive knowledge of the prison's rules and regulations, has proven himself to be the unspoken king of Shawshank. His ability to smuggle contraband without getting caught has not only given him a sense of power and control but also an elevated status among the inmates. His reputation is built on the fact that he has consistently proven his cunning and resourcefulness, successfully navigating the treacherous waters of the prison system time and time again. This has earned him respect, fear, and a certain level of untouchability within the prison walls. His proven track record has made him an indispensable part of the prison ecosystem, a man who can get things done when no one else can.", - "perspectives": { - "perspective_id": "5aa2572f-8052-4600-846e-3a822f41130e" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 2, - "narrative_function": "Result", - "illustration": "lacking results from someone", - "summary": "Red's attempt to take control of the situation leads to his arrest and solitary confinement after being caught smuggling contraband.", - "storytelling": "Frustrated by the lack of results from his team, Red decides to experiment with a new approach. He's always been the one to follow the rules, but the inertia of the system and the inaction of his team have pushed him to his limits. Late at night, he sneaks into the laundry room, skillfully navigating the maze of machines and piles of uniforms. He's never done anything like this before, but he's desperate for change.He finds the hidden stash of contraband - cigarettes and girlie magazines - and starts to smuggle them out. This act of rebellion is his way of resisting the system that's been holding him back. Just as he's about to leave, a beam of light cuts through the darkness. A new guard, vigilant and uncorrupted, has been doing rounds. Caught in the act, Red freezes, the contraband falling from his hands.The guard's stern voice echoes in the room, \"You're under arrest, Red.\" The sense of power and control Red once had shatters in that moment. His attempt at resistance and experimentation has led to his arrest and subsequent placement in solitary confinement. His rejection of the status quo has come at a high cost, but it's also given him a new perspective on his situation.", - "perspectives": { - "perspective_id": "240f453c-004f-48d2-bef1-61f29f56b801" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 3, - "narrative_function": "Process", - "illustration": "someone having an overly complicated process", - "summary": "Despite being caught smuggling contraband, Red remains confident and attempts to charm the new guard into joining his operation, but is unsuccessful.", - "storytelling": "Early in the story, Red is caught in the act of smuggling contraband. Unfazed, he approaches the new guard, attempting to charm him into becoming a part of his operation. He subtly hints at his role in Shawshank, saying, \"I'm the kind of guy that gets you things.\" However, the guard remains unmoved, stating firmly that he's just doing his job. Despite this setback, Red remains confident and dismisses the incident as a minor hiccup, convinced that he can continue his operations as usual.", - "perspectives": { - "perspective_id": "c701eae2-862f-48e8-a361-35cb5cd414e0" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Event", - "sequence": 4, - "narrative_function": "Presumption", - "illustration": "showing that something is yet to be verified", - "summary": "Red, an optimist and strategist, is excited to face a new challenge when he's put in solitary confinement, and he's determined to prove he can manipulate the new guard.", - "storytelling": "Red, known for his extensive knowledge of the prison's rules and his ability to manipulate the guards, finds himself in a predicament when he's caught by the new guard and put in solitary confinement. The other prisoners laugh at him, telling him he's finally screwed up. But Red, ever the optimist and strategist, just laughs back. He sees this not as a failure, but as a new challenge. His presumption that he can manipulate this new guard is yet to be verified, and he's excited about the prospect of starting over. As he's led to solitary, he shouts back at the other prisoners, \"I've only just begun...\"", - "perspectives": { - "perspective_id": "9840c9e4-94d3-46b5-92bb-9db29faf05d6" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 5, - "narrative_function": "Permission", - "illustration": "allowing a group to go free", - "summary": "Untitled", - "storytelling": "Apologies, but I had trouble illustrating Permission for this Storybeat.", - "perspectives": { - "perspective_id": "5b2d779c-2763-444e-a59e-c9852f18a473" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 6, - "narrative_function": "Need", - "illustration": "needing a wife", - "summary": "Untitled", - "storytelling": "Apologies, but I had trouble illustrating Need for this Storybeat.", - "perspectives": { - "perspective_id": "710c9830-dda4-4cc8-9f67-09c19a30f852" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 7, - "narrative_function": "Expediency", - "illustration": "doing something inadvisable", - "summary": "Untitled", - "storytelling": "Apologies, but I had trouble illustrating Expediency for this Storybeat.", - "perspectives": { - "perspective_id": "a2d09805-8514-4024-9883-952cd48e24b9" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 8, - "narrative_function": "Deficiency", - "illustration": "being afraid of lacking agency", - "summary": "Untitled", - "storytelling": "Apologies, but I had trouble illustrating Deficiency for this Storybeat.", - "perspectives": { - "perspective_id": "83348769-4dd5-42c3-b4f6-8f7c8236760f" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 9, - "narrative_function": "Rationalization", - "illustration": "rationalizing something", - "summary": "Untitled", - "storytelling": "Red initially rationalizes that he has no idea what the Italian ladies were singing about, believing that some things are best left unsaid. However, as he reflects on the beauty of their singing, he begins to evolve and expresses the idea that they were singing about something so beautiful it can't be expressed in words. This internal conflict between his initial rationalization and his evolving perspective creates tension within Red's character.", - "perspectives": { - "perspective_id": "856cc043-1897-4ce8-a323-3503dbec045b" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 10, - "narrative_function": "Commitment", - "illustration": "being committed", - "summary": "Untitled", - "storytelling": "Red's commitment to his friendship with Andy is tested when a new arrival seeks his help. Red, understanding the impact of institutionalized thinking, advises the boy against getting the wrong idea that he can make a difference in Shawshank. This commitment to protecting Andy and guiding the new arrival creates conflict as Red must balance his loyalty to his friend with the potential consequences of helping others.", - "perspectives": { - "perspective_id": "41a1d586-346a-4a6a-93de-bb352d7acffc" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 11, - "narrative_function": "Responsibility", - "illustration": "having responsibility for someone", - "summary": "Untitled", - "storytelling": "Red takes on the responsibility of guiding the new arrival and protecting Andy from the dangers of Shawshank. He understands the weight of his actions and the potential consequences they may have. This responsibility creates conflict as Red must navigate the complexities of prison life while fulfilling his duty to his friends.", - "perspectives": { - "perspective_id": "c6ff9cdf-fc6f-47ed-9581-ab018e45f15b" - } - }, - { - "id": "[[ internal id ]]", - "context": "Main Character", - "appreciation": "Progression", - "sequence": 12, - "narrative_function": "Obligation", - "illustration": "feeling obligated", - "summary": "Untitled", - "storytelling": "Red feels an obligation to use his experience and wisdom to help others in Shawshank. He recognizes the power he holds due to his long-term incarceration and uses it to guide the new arrival and advise him against unrealistic expectations. This obligation creates conflict as Red must balance his desire to help others with the limitations imposed by the prison system.", - "perspectives": { - "perspective_id": "b47475c4-5063-483f-a7c1-31a317d436c3" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 5, - "narrative_function": "Value", - "illustration": "being valuable", - "summary": "Untitled", - "storytelling": "In this part of the story, Andy's focus on obtaining goals and achievements highlights the value he places on making a difference within the prison. He successfully secures funding for the prison library, showing his belief in the importance of education and access to knowledge. This value conflicts with Red's initial belief that life in prison is devoid of purpose, as Andy's actions demonstrate that there is value in striving for positive change even in such a restrictive environment.", - "perspectives": { - "perspective_id": "4316733d-fa42-446f-9639-655675e98679" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 6, - "narrative_function": "Confidence", - "illustration": "being confident one will succeed", - "summary": "Untitled", - "storytelling": "Andy's accomplishments in improving the living conditions for his fellow inmates and gaining favor with the guards and the warden also showcase his confidence in his abilities. He takes on the challenge of making the prison a better place, displaying a belief in his own skills and resourcefulness. This confidence clashes with Red's initial skepticism and lack of belief in the possibility of effecting change, as Andy's actions prove that confidence can lead to tangible results even in a seemingly hopeless situation.", - "perspectives": { - "perspective_id": "351a86aa-9059-43e8-8d82-5b49ec234b1c" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 7, - "narrative_function": "Worry", - "illustration": "having apprehensions about someone", - "summary": "Untitled", - "storytelling": "This is all about Brooks' reaction to everythingWhile Andy's focus on obtaining goals and achievements is admirable, it also brings about worry for Red. Red becomes concerned that Andy's determination to make a difference may lead to disappointment or even danger. Red worries that Andy's actions may attract unwanted attention from the prison authorities or other inmates, putting both of them at risk. This worry creates conflict between Red's desire to protect himself and Andy's unwavering pursuit of his goals.", - "perspectives": { - "perspective_id": "6209f050-3f47-4299-b238-fde267c64df0" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 8, - "narrative_function": "Worth", - "illustration": "being worthwhile", - "summary": "Untitled", - "storytelling": "Playing the music because even though he knows what's going to happen to him, it's worth it to share with everyone in the prison.Andy's success in obtaining goals and achievements within the prison challenges Red's perception of self-worth. As Andy's actions bring about positive changes and gain him favor with the guards and the warden, Red begins to question his own worth and purpose within the prison. He wonders if he too can find a sense of worth and make a difference, leading to a conflict within himself as he grapples with his own self-doubt and the possibility of finding his own path to worthiness.", - "perspectives": { - "perspective_id": "293b2d24-ab56-4e8b-b636-9b6d527ecdfa" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Signpost", - "sequence": 1, - "narrative_function": "Past", - "illustration": "relating the past lives of others", - "summary": "Heywood's stories from the past serve as a source of hope and determination for Andy in his quest for freedom, while also providing a supportive environment in the harsh reality of Shawshank prison.", - "storytelling": "Heywood's unwavering belief in Andy's innocence creates a division among the inmates. Some side with Heywood, believing in Andy's innocence and supporting his quest for freedom. Others see Andy as a threat to their own survival within the prison system and oppose him.", - "perspectives": { - "perspective_id": "7f2bfd40-235a-4594-a196-3c9c9482b8eb" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 5, - "narrative_function": "Fact", - "illustration": "focusing on the facts", - "summary": "Untitled", - "storytelling": "Andy begins to manipulate the guards' future prospects by offering his expertise in tax matters. By doing so, he not only gains their favor but also subtly shifts the power dynamics within the prison. This act of manipulation showcases Andy's ability to navigate the complex psychological landscape of Shawshank and use it to his advantage.", - "perspectives": { - "perspective_id": "11da3df4-c0af-40e8-9769-2057225de0ba" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 6, - "narrative_function": "Security", - "illustration": "working in a maximum security prison", - "summary": "Untitled", - "storytelling": "Andy sets up a library to improve the educational prospects of the inmates, challenging the status quo and the prison's oppressive environment. This act of defiance against the system demonstrates Andy's determination to bring about change and hope within the prison walls. Through this endeavor, he manipulates the inmates' mindset, encouraging them to believe in a better future and their own potential for growth.", - "perspectives": { - "perspective_id": "c475d68a-2443-4bc8-a61b-33a0fcc7e739" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 7, - "narrative_function": "Threat", - "illustration": "being threatened by a group", - "summary": "Untitled", - "storytelling": "Brooks, overwhelmed by the prospect of a future outside of Shawshank, takes a knife to Heywood's throat. This dramatic event highlights the deep-rooted psychological dysfunction that can result from long-term institutionalization. Brooks' fear of the unknown and inability to cope with change leads him to lash out violently, showcasing the damaging effects of the prison system on the inmates' mental health.", - "perspectives": { - "perspective_id": "f06852cb-bd61-4aa0-bf56-eb97300b8945" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 8, - "narrative_function": "Fantasy", - "illustration": "living in a fantasy world", - "summary": "Untitled", - "storytelling": "Andy, through his manipulation of the guards and his efforts to improve the inmates' educational prospects, creates a fantasy of a better life within the confines of Shawshank. This fantasy serves as a source of hope and escape for the prisoners, allowing them to momentarily forget the harsh reality of their situation. However, this fantasy is also a source of conflict as it clashes with the harsh truth of life in prison and the constant threat of violence.", - "perspectives": { - "perspective_id": "205c40f9-b6cc-463a-ae11-e8cf3b0168a4" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 13, - "narrative_function": "Work", - "illustration": "making the necessary effort to get out of the situation", - "summary": "Untitled", - "storytelling": "Andy, feeling hopeless after Tommy's murder, becomes more withdrawn and starts planning his escape. He uses his knowledge of the Warden's illegal activities to gather evidence and expose the corruption within the prison. This becomes his main focus and he works tirelessly to gather the necessary information, often risking his own safety in the process. The conflict arises as Andy must navigate the prison's strict routines and surveillance to carry out his plan without raising suspicion.", - "perspectives": { - "perspective_id": "50cdffa8-ce0e-4a1f-b8ce-db027726abae" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 14, - "narrative_function": "Attraction", - "illustration": "being attracted to danger", - "summary": "Untitled", - "storytelling": "Red, initially skeptical of hope, starts to see its value after witnessing Andy's determination. He becomes intrigued by Andy's plan and is drawn to his unwavering belief in a better future. Red's perspective on life begins to change as he starts to question the system they've been living under. The conflict arises as Red grapples with his own doubts and fears, torn between his loyalty to the prison and his growing admiration for Andy's resilience.", - "perspectives": { - "perspective_id": "32ce266b-6387-46fc-aa00-c26ac5f5f6f4" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 15, - "narrative_function": "Repulsion", - "illustration": "finding something revolting", - "summary": "Untitled", - "storytelling": "The Warden's corruption and control over the prison become more apparent as Andy uncovers evidence of his illegal activities. The inmates, including Red, start to question the system they've been living under and feel repulsed by the Warden's abuse of power. The conflict intensifies as the Warden becomes aware of Andy's activities and tries to maintain his control over the prison, resorting to intimidation and threats to keep the inmates in line.", - "perspectives": { - "perspective_id": "db4ddfda-1cda-46a1-babc-16db2065cb74" - } - }, - { - "id": "[[ internal id ]]", - "context": "Objective Story", - "appreciation": "Progression", - "sequence": 16, - "narrative_function": "Attempt", - "illustration": "trying to escape", - "summary": "Untitled", - "storytelling": "As Andy's escape plan comes to fruition, he meticulously executes each step, using his knowledge of the prison's routines and the Warden's illegal activities to his advantage. The conflict reaches its peak as Andy must navigate the heightened security measures in place due to his growing suspicions. On the night of his escape, Andy successfully switches out the Warden's ledger with his Bible, leaving a note that exposes the corruption within the prison. The conflict is resolved as Andy escapes, leaving the inmates and the Warden in shock and uncertainty about the future.", - "perspectives": { - "perspective_id": "7b9bf2ae-2cfb-4828-bc57-16bfca8ab46f" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Signpost", - "sequence": 3, - "narrative_function": "Learning", - "illustration": "", - "summary": "Andy's escape plan challenges Red's resignation.", - "storytelling": "In the dimly lit prison library, Andy Dufresne meticulously explains his escape plan to Red, revealing the true extent of his resourcefulness and hope. Red, initially skeptical, finds himself questioning his own long-held beliefs about the futility of hope and the inevitability of their fate. As Andy's determination becomes undeniable, Red feels the stirrings of a new perspective, realizing that perhaps he too has underestimated his own capacity for change.", - "perspectives": { - "perspective_id": "70785f5e-828d-4d67-8d56-05be1f0e93fb" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 9, - "narrative_function": "Closure", - "illustration": "learning one's true capacity", - "summary": "Andy's termination inspires Red to reassess life.", - "storytelling": "As Andy is thrown into solitary confinement, his spirit remains unbroken, and he continues to work on his escape plan. This act of defiance and hope in the face of termination deeply impacts Red, who begins to question his own acceptance of his fate. Red's internal struggle intensifies as he realizes that Andy's unwavering determination forces him to confront his own beliefs and the possibility of change.", - "perspectives": { - "perspective_id": "19255a01-0304-4111-9963-0129f2d3f3e6" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 10, - "narrative_function": "Hope", - "illustration": "learning one's true capacity", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "5eeb8f40-99f4-429d-bc42-bc17bcfc296f" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 11, - "narrative_function": "Dream", - "illustration": "learning one's true capacity", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "c83af3ca-0f29-4a43-9185-f418d288e2d7" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Progression", - "sequence": 12, - "narrative_function": "Denial", - "illustration": "learning one's true capacity", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "34c795a0-b91d-4a62-8753-cf9412792ad2" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Event", - "sequence": 33, - "narrative_function": "Knowledge", - "illustration": "being terminated by someone", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "a91f5d8b-92e2-40f2-939b-ff26af32c651" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Event", - "sequence": 34, - "narrative_function": "Order", - "illustration": "being terminated by someone", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "3a0e7de5-985d-4019-b521-c12b3af4c833" - } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Event", - "sequence": 35, - "narrative_function": "Chaos", - "illustration": "being terminated by someone", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "20c9bf57-1053-4ff0-85ee-fe45383ce4ed" + "storytelling": { + "overviews": [ + { + "id": "overview_shawshank_logline", + "label": "logline", + "summary": "A prison drama where hope confronts institutional corruption.", + "storytelling": "Character choices accumulate into structural collapse of the prison's moral facade." + }, + { + "id": "overview_shawshank_genre", + "label": "genre_dynamics", + "summary": "Humanist drama with procedural and psychological tension.", + "storytelling": "Quiet endurance and strategic action reshape the story's emotional horizon." } - }, - { - "id": "[[ internal id ]]", - "context": "Influence Character", - "appreciation": "Event", - "sequence": 36, - "narrative_function": "Thought", - "illustration": "being terminated by someone", - "summary": "Untitled", - "storytelling": "", - "perspectives": { - "perspective_id": "31c0384f-62eb-432c-898b-2644cc703fed" + ], + "moments": [ + { + "id": "moment_shawshank_01", + "summary": "Arrival at Shawshank", + "synopsis": "Andy enters a violent institution and begins adapting to survival rules.", + "setting": "Shawshank State Penitentiary.", + "timing": "Opening movement.", + "imperatives": "Define coercive system and seed the hope counterforce.", + "audience_experiential_pov": "third_person_limited", + "storybeats": [ + { + "sequence": 0, + "storybeat_id": "beat_shawshank_signpost_1" + } + ] } - } - ] - }, - "storytelling": { - "overviews": [], - "moments": [] + ] + } } - } - ] -} \ No newline at end of file + ] + } +} diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..7464fc9 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,65 @@ +{ + "name": "narrative-context-protocol", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "ajv": "^8.17.1" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..8eb6be3 --- /dev/null +++ b/package.json @@ -0,0 +1,9 @@ +{ + "scripts": { + "validate:schema": "node tests/validate-schema.js", + "validate:file": "node tests/validate-file.js" + }, + "dependencies": { + "ajv": "^8.17.1" + } +} diff --git a/schema/ncp-schema.json b/schema/ncp-schema.json index af19662..fdb16b0 100644 --- a/schema/ncp-schema.json +++ b/schema/ncp-schema.json @@ -26,7 +26,8 @@ }, "created_at": { "type": "string", - "format": "date-time" + "description": "ISO-8601 UTC timestamp (e.g., 2025-12-01T12:34:56Z).", + "pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$" }, "narratives": { "type": "array", @@ -334,18 +335,68 @@ } } }, - "required": [ - "id", - "scope", - "sequence", - "narrative_function", - "summary", - "storytelling", - "perspectives" - ] - } + "required": [ + "id", + "scope", + "sequence", + "narrative_function", + "summary", + "storytelling", + "perspectives" + ], + "allOf": [ + { + "if": { + "properties": { + "scope": { + "const": "signpost" + } + } + }, + "then": { + "properties": { + "sequence": { + "maximum": 4 + } + } + } + }, + { + "if": { + "properties": { + "scope": { + "const": "progression" + } + } + }, + "then": { + "properties": { + "sequence": { + "maximum": 16 + } + } + } + }, + { + "if": { + "properties": { + "scope": { + "const": "event" + } + } + }, + "then": { + "properties": { + "sequence": { + "maximum": 64 + } + } + } + } + ] } - }, + } + }, "required": [ "perspectives", "players", diff --git a/schema/ncp-schema.yaml b/schema/ncp-schema.yaml index 3b14757..f3a2881 100644 --- a/schema/ncp-schema.yaml +++ b/schema/ncp-schema.yaml @@ -1,4 +1,4 @@ -"$schema": http://json-schema.org/draft-07/schema# +$schema: http://json-schema.org/draft-07/schema# title: Narrative Context Protocol Schema description: A standardized protocol for structuring narrative elements in a complete story for use in multi-agentic systems. @@ -7,7 +7,7 @@ properties: schema_version: type: string description: Semver string (e.g., 1.2.0). - pattern: "^\\d+\\.\\d+\\.\\d+$" + pattern: ^\d+\.\d+\.\d+$ story: type: object properties: @@ -21,7 +21,8 @@ properties: type: string created_at: type: string - format: date-time + description: ISO-8601 UTC timestamp (e.g., 2025-12-01T12:34:56Z). + pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$ narratives: type: array items: @@ -162,9 +163,9 @@ properties: id: type: string appreciation: - "$ref": "#/$defs/canonical_appreciation" + $ref: '#/$defs/canonical_appreciation' narrative_function: - "$ref": "#/$defs/canonical_narrative_function" + $ref: '#/$defs/canonical_narrative_function' illustration: type: string summary: @@ -206,7 +207,7 @@ properties: type: object properties: id: - "$ref": "#/$defs/stable_id" + $ref: '#/$defs/stable_id' scope: type: string enum: @@ -227,7 +228,7 @@ properties: description: Optional throughline label for grouping. narrative_function: - "$ref": "#/$defs/canonical_narrative_function" + $ref: '#/$defs/canonical_narrative_function' summary: type: string storytelling: @@ -255,6 +256,31 @@ properties: - summary - storytelling - perspectives + allOf: + - if: + properties: + scope: + const: signpost + then: + properties: + sequence: + maximum: 4 + - if: + properties: + scope: + const: progression + then: + properties: + sequence: + maximum: 16 + - if: + properties: + scope: + const: event + then: + properties: + sequence: + maximum: 64 required: - perspectives - players @@ -272,7 +298,7 @@ properties: id: type: string label: - "$ref": "#/$defs/normalized_label" + $ref: '#/$defs/normalized_label' summary: type: string storytelling: @@ -340,7 +366,7 @@ properties: sequence: type: integer storybeat_id: - "$ref": "#/$defs/stable_id" + $ref: '#/$defs/stable_id' required: - sequence - storybeat_id @@ -368,13 +394,13 @@ properties: required: - schema_version - story -"$defs": +$defs: stable_id: type: string - pattern: "^(?:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}|(?:story|narrative|beat)_[A-Za-z0-9][A-Za-z0-9_-]*)$" + pattern: ^(?:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}|(?:story|narrative|beat)_[A-Za-z0-9][A-Za-z0-9_-]*)$ normalized_label: type: string - pattern: "^[a-z][a-z0-9_]*$" + pattern: ^[a-z][a-z0-9_]*$ description: Normalized snake_case label (e.g., logline, genre_dynamics). canonical_appreciation: type: string diff --git a/tests/validate-file.js b/tests/validate-file.js new file mode 100644 index 0000000..f5251b8 --- /dev/null +++ b/tests/validate-file.js @@ -0,0 +1,53 @@ +const Ajv = require('ajv'); +const fs = require('fs'); +const path = require('path'); + +const args = process.argv.slice(2); + +if (args.length === 0) { + console.error('Usage: node tests/validate-file.js [file2.json ...]'); + process.exit(1); +} + +const repoRoot = path.join(__dirname, '..'); +const schemaPath = path.join(repoRoot, 'schema/ncp-schema.json'); +const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8')); +const ajv = new Ajv({ allErrors: true, strict: false }); +const validate = ajv.compile(schema); + +function formatErrors(errors) { + return (errors || []) + .map((error) => `${error.instancePath || '/'} ${error.message}`) + .join('; '); +} + +let failures = 0; + +for (const inputPath of args) { + const targetPath = path.isAbsolute(inputPath) + ? inputPath + : path.resolve(process.cwd(), inputPath); + + let data; + + try { + data = JSON.parse(fs.readFileSync(targetPath, 'utf8')); + } catch (error) { + failures += 1; + console.error(`FAIL ${inputPath}: unable to parse JSON (${error.message})`); + continue; + } + + const ok = validate(data); + + if (ok) { + console.log(`PASS ${inputPath}`); + } else { + failures += 1; + console.error(`FAIL ${inputPath}: ${formatErrors(validate.errors)}`); + } +} + +if (failures > 0) { + process.exitCode = 1; +} diff --git a/tests/validate-schema.js b/tests/validate-schema.js index d0d35b8..6c8b23f 100644 --- a/tests/validate-schema.js +++ b/tests/validate-schema.js @@ -2,19 +2,57 @@ const Ajv = require('ajv'); const fs = require('fs'); const path = require('path'); -const ajv = new Ajv(); +const ajv = new Ajv({ allErrors: true, strict: false }); const schemaPath = path.join(__dirname, '../schema/ncp-schema.json'); const schema = JSON.parse(fs.readFileSync(schemaPath, 'utf8')); +const validate = ajv.compile(schema); -// Load the example narrative file -const dataPath = path.join(__dirname, '../examples/example-story.json'); -const narrativeData = JSON.parse(fs.readFileSync(dataPath, 'utf8')); +const validFixtures = [ + '../examples/example-story.json', + '../examples/anora.json', + '../examples/the-shawshank-redemption.json' +]; -const validate = ajv.compile(schema); -const valid = validate(narrativeData); +const invalidDir = path.join(__dirname, '../examples/invalid'); +const invalidFixtures = fs.existsSync(invalidDir) + ? fs.readdirSync(invalidDir).filter((name) => name.endsWith('.json')).map((name) => `../examples/invalid/${name}`) + : []; + +function readJson(relativePath) { + const fullPath = path.join(__dirname, relativePath); + return JSON.parse(fs.readFileSync(fullPath, 'utf8')); +} + +function formatErrors(errors) { + return (errors || []).map((error) => `${error.instancePath || '/'} ${error.message}`).join('; '); +} + +let failures = 0; + +for (const fixture of validFixtures) { + const data = readJson(fixture); + const ok = validate(data); + if (!ok) { + failures += 1; + console.error(`FAIL valid fixture ${fixture}: ${formatErrors(validate.errors)}`); + } else { + console.log(`PASS valid fixture ${fixture}`); + } +} + +for (const fixture of invalidFixtures) { + const data = readJson(fixture); + const ok = validate(data); + if (ok) { + failures += 1; + console.error(`FAIL invalid fixture ${fixture}: expected schema validation to fail`); + } else { + console.log(`PASS invalid fixture ${fixture}`); + } +} -if (valid) { - console.log('Narrative JSON is valid!'); +if (failures > 0) { + process.exitCode = 1; } else { - console.error('Validation errors:', validate.errors); + console.log(`Schema validation checks passed (${validFixtures.length} valid + ${invalidFixtures.length} invalid fixtures).`); }