iddqd 0.3.18

Maps where keys borrow from values, including bijective and trijective maps.
Documentation
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SimpleContainer",
  "type": "object",
  "required": [
    "users"
  ],
  "properties": {
    "users": {
      "title": "IdHashMap",
      "type": "array",
      "items": {
        "$ref": "#/definitions/TestUser"
      },
      "uniqueItems": true,
      "x-rust-type": {
        "crate": "iddqd",
        "parameters": [
          {
            "$ref": "#/definitions/TestUser"
          }
        ],
        "path": "iddqd::IdHashMap",
        "version": "*"
      }
    }
  },
  "definitions": {
    "TestUser": {
      "type": "object",
      "required": [
        "age",
        "email",
        "id",
        "name"
      ],
      "properties": {
        "age": {
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        },
        "email": {
          "type": "string"
        },
        "id": {
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        },
        "name": {
          "type": "string"
        }
      }
    }
  }
}