{
  # option-data in DHCPv6 pool config
  # subnet declaration
  /// This configuration declares some subnets but has no interfaces-config
  /// Reference Kea #245
  "Dhcp6": {
    "subnet6": [
      {
        "id": 1,
        "subnet": "2001::/64",
        "pools": [
          # pool declaration
          {
            # avoid empty pool
            "pool": "2001::100 - 2001::200",
            "option-data": [
              # for a silly reason option-data is not allowed in DHCPv4 pools
              # but allowed in DHCPv6 pools
              {
                "space": "dhcp6",
                "name": "domain-search",
                "code": 24,
//              "original-data": "\"example.com\", \"example.org\"",
                "data": "example.com, example.org"
              }
            ]
          }
        ]
      }
    ]
  }
}