{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://standards.freematiq.com/schemas/id-reference-allowlist.schema.json",
  "title": "Допустимые ID-подобные ссылки",
  "type": "object",
  "required": [
    "allowed_ids"
  ],
  "properties": {
    "allowed_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^[A-Z][A-Z0-9]*(?:-[A-Z][A-Z0-9]*)*-[0-9]{3}$"
      },
      "uniqueItems": true
    }
  },
  "additionalProperties": false
}
