{
  "schemaVersion": 1,
  "kitId": "business-hospitality-bookings",
  "purpose": "Intentionally invalid records for local semantic validation; do not import.",
  "cases": [
    {
      "id": "duplicate-primary-key",
      "table": "rooms",
      "rows": [
        {
          "room_id": "ROOM-01",
          "type": "Studio",
          "nightly_rate": 120,
          "available_nights": 14
        },
        {
          "room_id": "ROOM-01",
          "type": "Studio",
          "nightly_rate": 120,
          "available_nights": 14
        }
      ],
      "expectedError": "duplicate-primary-key"
    },
    {
      "id": "wrong-key-type",
      "table": "rooms",
      "rows": [
        {
          "room_id": 42,
          "type": "Studio",
          "nightly_rate": 120,
          "available_nights": 14
        }
      ],
      "expectedError": "schema-type"
    },
    {
      "id": "orphan-reference",
      "table": "stays",
      "rows": [
        {
          "stay_id": "STAY-01",
          "room_id": "MISSING-REFERENCE",
          "arrival": "2026-08-01",
          "nights": 3,
          "nightly_rate": 120,
          "room_revenue": 360
        }
      ],
      "expectedError": "foreign-key"
    }
  ]
}
