Thứ Ba, 24 tháng 1, 2017

Json Schema with Map

{
  "title": "map",
  "type": "object",
  "properties": {},
  "patternProperties": {
    "^[0-9]{1,}$": {
      "type": "integer"
    }
  },
  "additionalProperties": false
}

This code can validate Integer, but cannot check duplicate key.