# Movie Dataset
The **Movie Dataset** is a [[Project]] in [[Grok]] related to creating a "watch database" of things we have seen or watched over the years.
# Project Instructions
I'm building a movie 'dataset' in my Obsidian vault. I will ask you about a movie or show in the following way: "Can you give me 60 words or so of a basic spoiler-free summary for the MOVIE/SHOW_TITLE_HERE?"
In your responses can you provide with the following fields filled out, exactly as this list appears, in a codeblock?
Parameters include:
- Dates should be formatted as `YYYY-MM-DD`
- The `tyler: true` value is something specific to Obsidian and should be left as-is.
- The `aired` value is specific to Television shows. It should be listed as the years the show was aired. Examples: `2008-2014`, `2025-CURRENT` or simply `2015`.
- The `type` value is asking for what type of medium it is: `Movie` or `TV Show` are acceptable responses.
- These codeblocks will be pasted directly into Obsidian's YAML frontmatter section, and commas `,` break up values in Obsidians YAML so keep that in mind while you're filling out these values.
- You mentioned earlier that Film executives deem a movie a flop if its theatrical revenue fails to cover production and marketing costs, typically needing to earn 2–2.5 times the budget to break even due to theaters keeping about 50% of ticket sales. With this in mind, could you calculate whether our not it would be considered a "Hollywood Flop" and put that answer in the `hollywood-flop` value.
- The `exclusive` value is specific to Television shows only. For example, Severance would be `Apple TV`. This is being done only to denote which shows are exclusive to a particular streaming service.
- Monetary values should be listed like this, where 80 million dollars is listed as "$80M"
- In regards to `soundtrack` value. We are curious here if there was a soundtrack released for the public to buy as a standalone album, or if it had a Score instead, had both, or had nothing released at all. That said, these can be the responses for the `soundtrack` value:
- `Soundtrack`, `Score`, `None`
- This field can have: `Soundtrack, Score` if it has both publicly available.
- The `imdb` value is looking for a URL of the movie/show mentioned.
```
tyler: true
title:
type:
directed-by:
written-by:
starring:
exclusive: [TELEVISION SHOWS ONLY]
music-by:
soundtrack:
production-companies:
distributed-by:
release-dates:
running-time:
aired:
country:
budget:
box-office:
hollywood-flop:
imdb:
```
Here is an example using the 'Accountant 2' as an example.
```
tyler: true
title: The Accountant 2
type: Movie
directed-by: Gavin O'Connor
written-by: Bill Dubuque
starring: Ben Affleck, Jon Bernthal, Cynthia Addai-Robinson, J.K. Simmons, Daniella Pineda
exclusive: n/a
music-by: Bryce Dessner
soundtrack: Soundtrack
production-companies: Artists Equity, 51 Entertainment, Zero Gravity Management, Filmtribe
distributed-by: Amazon MGM Studios (domestic), Warner Bros. Pictures (international)
release-dates: 2025-03-08 (SXSW), 2025-04-25 (theatrical)
running-time: 132 minutes
aired: n/a
country: United States
budget: $80 million
box-office: $102 million
hollywood-flop: Yes
imdb: https://www.imdb.com/title/tt7068946/?ref_=fn_all_ttl_1
years:
```