{
  "profile": "Four-card Omaha high; standard 52-card deck and high-hand rankings; completed five-card board. Exactly two hole cards and three board cards.",
  "purpose": "Eight synthetic hand-reading examples, not observed hands, probabilities or betting advice.",
  "cases": [
    {
      "id": "two-pair-board-unpaired",
      "board": [
        "Ks",
        "Kh",
        "7d",
        "7c",
        "2s"
      ],
      "hole": [
        "As",
        "Qh",
        "Jd",
        "Tc"
      ],
      "expected_label": "One pair: kings",
      "witness": [
        "Ks",
        "Kh",
        "As",
        "Qh",
        "7d"
      ],
      "expected_score": [
        1,
        13,
        14,
        12,
        7
      ]
    },
    {
      "id": "two-pair-board-pocket-pair",
      "board": [
        "Ks",
        "Kh",
        "7d",
        "7c",
        "2s"
      ],
      "hole": [
        "As",
        "Ah",
        "Qd",
        "Jc"
      ],
      "expected_label": "Two pair: aces and kings",
      "witness": [
        "As",
        "Ah",
        "Ks",
        "Kh",
        "7d"
      ],
      "expected_score": [
        2,
        14,
        13,
        7
      ]
    },
    {
      "id": "two-pair-board-one-match",
      "board": [
        "Ks",
        "Kh",
        "7d",
        "7c",
        "2s"
      ],
      "hole": [
        "Kd",
        "As",
        "Qh",
        "Jc"
      ],
      "expected_label": "Three of a kind: kings",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "As",
        "7d"
      ],
      "expected_score": [
        3,
        13,
        14,
        7
      ]
    },
    {
      "id": "two-pair-board-both-matches",
      "board": [
        "Ks",
        "Kh",
        "7d",
        "7c",
        "2s"
      ],
      "hole": [
        "Kd",
        "7h",
        "As",
        "Qc"
      ],
      "expected_label": "Full house: kings full of sevens",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "7d",
        "7h"
      ],
      "expected_score": [
        6,
        13,
        7
      ]
    },
    {
      "id": "full-house-board-unpaired",
      "board": [
        "Ks",
        "Kh",
        "Kd",
        "7c",
        "7d"
      ],
      "hole": [
        "As",
        "Qh",
        "Jd",
        "Tc"
      ],
      "expected_label": "Three of a kind: kings",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "As",
        "Qh"
      ],
      "expected_score": [
        3,
        13,
        14,
        12
      ]
    },
    {
      "id": "full-house-board-pocket-pair",
      "board": [
        "Ks",
        "Kh",
        "Kd",
        "7c",
        "7d"
      ],
      "hole": [
        "As",
        "Ah",
        "Qd",
        "Jc"
      ],
      "expected_label": "Full house: kings full of aces",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "As",
        "Ah"
      ],
      "expected_score": [
        6,
        13,
        14
      ]
    },
    {
      "id": "quads-board-unpaired",
      "board": [
        "Ks",
        "Kh",
        "Kd",
        "Kc",
        "2s"
      ],
      "hole": [
        "As",
        "Qh",
        "Jd",
        "Tc"
      ],
      "expected_label": "Three of a kind: kings",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "As",
        "Qh"
      ],
      "expected_score": [
        3,
        13,
        14,
        12
      ]
    },
    {
      "id": "quads-board-pocket-pair",
      "board": [
        "Ks",
        "Kh",
        "Kd",
        "Kc",
        "2s"
      ],
      "hole": [
        "Ah",
        "Ad",
        "Qc",
        "Js"
      ],
      "expected_label": "Full house: kings full of aces",
      "witness": [
        "Ks",
        "Kh",
        "Kd",
        "Ah",
        "Ad"
      ],
      "expected_score": [
        6,
        13,
        14
      ]
    }
  ]
}
