armor — ru — SRD 5.2.1

JSON Schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Armor",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "name_en": {
      "type": [
        "string",
        "null"
      ]
    },
    "category": {
      "type": "string",
      "enum": [
        "light",
        "medium",
        "heavy",
        "shield"
      ]
    },
    "ac_base": {
      "type": "integer"
    },
    "ac_dex_bonus": {
      "type": "boolean"
    },
    "ac_max_dex": {
      "type": [
        "integer",
        "null"
      ]
    },
    "strength_req": {
      "type": [
        "integer",
        "null"
      ]
    },
    "stealth_disadvantage": {
      "type": "boolean"
    },
    "weight": {
      "type": [
        "string",
        "null"
      ]
    },
    "cost": {
      "type": "string"
    }
  },
  "required": [
    "slug",
    "name",
    "name_en",
    "category",
    "ac_base",
    "ac_dex_bonus",
    "ac_max_dex",
    "strength_req",
    "stealth_disadvantage",
    "weight",
    "cost"
  ],
  "additionalProperties": false
}