{
  "definitions": {
    "Human": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string"
        }
      }
    },
    "Map": {
      "type": "object",
      "properties": {
        "totalResults": {
          "type": "integer"
        },
        "entries": {
          "type": "array",
          "items": {
            "$generic": "T"
          }
        }
      }
    },
    "RootSchema": {
      "type": "object",
      "properties": {
        "students": {
          "$ref": "#\/definitions\/StudentMap"
        }
      }
    },
    "Student": {
      "allOf": [
        {
          "$ref": "#\/definitions\/Human"
        },
        {
          "type": "object",
          "properties": {
            "matricleNumber": {
              "type": "string"
            }
          }
        }
      ]
    },
    "StudentMap": {
      "$ref": "#\/definitions\/Map"
    }
  },
  "$ref": "#\/definitions\/RootSchema"
}