feats — en — SRD 5.1

JSON Schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Feat",
  "type": "object",
  "properties": {
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "name_en": {
      "type": [
        "string",
        "null"
      ]
    },
    "category": {
      "type": [
        "string",
        "null"
      ]
    },
    "prerequisite": {
      "type": [
        "string",
        "null"
      ]
    },
    "repeatable": {
      "type": "boolean"
    },
    "benefits": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "text_md": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "text_md"
        ],
        "additionalProperties": false
      }
    },
    "description_md": {
      "type": "string"
    }
  },
  "required": [
    "slug",
    "name",
    "name_en",
    "category",
    "prerequisite",
    "repeatable",
    "benefits",
    "description_md"
  ],
  "additionalProperties": false
}