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