Examples · valid Roadbook 1.2 files

Example Roadbooks

Nine .roadbook.json files, one per kind of trip, each small enough to read and focused on a few features rather than all of them. Every example validates against the current JSON Schema and the reference validator with zero errors and zero warnings.

Machine-readable manifest (index.json) Open the validator

Manifest#

examples/index.json lists every example with its URL, explanatory page, feature tags and day count, so tools and agents can discover them without parsing HTML:

{
  "formatVersion": "1.0",
  "roadbookVersion": "1.2",
  "examples": [
    { "id": "minimal", "name": "Minimal", "url": "/examples/minimal.roadbook.json",
      "page": "/examples/minimal.html", "features": ["days", "items"], "days": 1 },
    { "id": "business-trip", "name": "Business trip", "url": "/examples/business-trip.roadbook.json",
      "page": "/examples/business-trip.html",
      "features": ["flight", "transport", "meeting", "payment", "pdf417"], "days": 2 }
  ]
}

Conventions used in the examples#