{
  "specVersion": "1.0",
  "host": {
    "displayName": "StoryBook pricing catalog",
    "identifier": "did:web:storybookai.app:pricing"
  },
  "entries": [
    {
      "identifier": "urn:air:storybookai.app:plan:lite",
      "displayName": "Storybook Lite",
      "description": "Free. 3 story generations per day, 1 character avatar, credit packs anytime.",
      "type": "application/json",
      "mediaType": "application/json",
      "data": {
        "id": "free",
        "priceUsd": 0,
        "sellable": false,
        "credits": 0
      },
      "tags": ["pricing", "free"]
    },
    {
      "identifier": "urn:air:storybookai.app:plan:member",
      "displayName": "Member",
      "description": "$9.99 per month. 20 creation credits, comics, images, and audio. Agents may start checkout. The person confirms in Stripe.",
      "type": "application/json",
      "mediaType": "application/json",
      "data": {
        "id": "member",
        "priceUsd": 9.99,
        "billingPeriod": "monthly",
        "sellable": true,
        "credits": 20
      },
      "tags": ["pricing", "member"],
      "representativeQueries": ["upgrade to StoryBook Member"]
    },
    {
      "identifier": "urn:air:storybookai.app:plan:creator",
      "displayName": "Creator",
      "description": "$24.99 per month. 65 creation credits plus video. Agents may start checkout. The person confirms in Stripe.",
      "type": "application/json",
      "mediaType": "application/json",
      "data": {
        "id": "creator",
        "priceUsd": 24.99,
        "billingPeriod": "monthly",
        "sellable": true,
        "credits": 65
      },
      "tags": ["pricing", "creator"],
      "representativeQueries": ["upgrade to StoryBook Creator"]
    },
    {
      "identifier": "urn:air:storybookai.app:pack:credits",
      "displayName": "Credit packs",
      "description": "Starter 10 for $4.99, Creator 30 for $11.99, Studio 75 for $24.99. One-time Stripe payment.",
      "type": "application/json",
      "mediaType": "application/json",
      "data": {
        "packs": [
          { "sku": "pack_10", "credits": 10, "priceUsd": 4.99 },
          { "sku": "pack_30", "credits": 30, "priceUsd": 11.99 },
          { "sku": "pack_75", "credits": 75, "priceUsd": 24.99 }
        ]
      },
      "tags": ["pricing", "credits"],
      "representativeQueries": ["buy StoryBook credits"]
    }
  ]
}
