{
  "$schema": "https://plus.solberg.is/schema/manifest.json",
  "site": "kvikmyndir.is",
  "title": "Hvað er í bíó (kvikmyndir.is)",
  "description": "Tonight's cinema schedule across all of Iceland — movies, cinemas, showtimes, halls and IMDb ratings from kvikmyndir.is's public schedule page. No auth.",
  "version": "0.1.0",
  "author": "jokull <https://github.com/jokull>",
  "license": "MIT",
  "tags": [
    "cinema",
    "movies",
    "schedule",
    "public"
  ],
  "identities": [],
  "origins": [
    "https://www.kvikmyndir.is"
  ],
  "auth": [
    {
      "id": "none",
      "type": "none",
      "description": "Public server-rendered schedule page — the showtimes are machine-readable data attributes. Nothing to store.",
      "default": true,
      "flow": "none"
    }
  ],
  "ops": [
    {
      "id": "showtimes",
      "kind": "rest",
      "title": "Tonight's showtimes",
      "description": "Every showtime today: movie, cinema, time, hall (Flauel/Lúxus/MAX/…), approximate end time, and the purchase URL. Filter by cinema.",
      "tags": [
        "schedule",
        "cinema"
      ],
      "risk": "read-only",
      "input": {
        "type": "object",
        "properties": {
          "cinema": {
            "type": "string",
            "description": "Filter, e.g. Smárabíó"
          }
        }
      },
      "output": {
        "$ref": "#/schemas/Showtime"
      },
      "lastVerified": "2026-08-21"
    },
    {
      "id": "movies",
      "kind": "rest",
      "title": "Today's movies",
      "description": "The movies playing today with their IMDb ratings and kvikmyndir.is ids.",
      "tags": [
        "movies",
        "ratings"
      ],
      "risk": "read-only",
      "output": {
        "$ref": "#/schemas/Movie"
      },
      "lastVerified": "2026-08-21"
    }
  ],
  "schemas": {
    "Showtime": {
      "type": "object",
      "properties": {
        "movieId": {
          "type": "integer"
        },
        "movie": {
          "type": "string"
        },
        "cinema": {
          "type": "string"
        },
        "time": {
          "type": "string",
          "description": "HH:MM"
        },
        "showtime": {
          "type": "string",
          "description": "ISO datetime"
        },
        "endsAt": {
          "type": [
            "string",
            "null"
          ],
          "description": "Búin kl. ~HH:MM"
        },
        "hall": {
          "type": [
            "string",
            "null"
          ]
        },
        "url": {
          "type": "string"
        }
      }
    },
    "Movie": {
      "type": "object",
      "properties": {
        "id": {
          "type": "integer"
        },
        "title": {
          "type": "string"
        },
        "year": {
          "type": [
            "integer",
            "null"
          ]
        },
        "imdb": {
          "type": [
            "number",
            "null"
          ]
        },
        "url": {
          "type": "string"
        }
      }
    }
  }
}
