{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://fdc3.finos.org/schemas/1.1/country.schema.json",
  "type": "object",
  "title": "Country",
  "allOf": [{ "$ref": "context.schema.json#" }],
  "properties": {
    "type": { "const": "fdc3.country" },
    "id": {
      "type": "object",
      "properties": {
        "ISOALPHA2": { "type": "string" },
        "ISOALPHA3": { "type": "string" }
      }
    }
  },
  "required": ["id"]
}
