{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cheeleong.dev/wwn-system-json/systems/attribute.schema.json",
  "title": "WWN Attribute",
  "type": "object",
  "allOf": [{ "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Entity" }],
  "properties": {
    "@type": { "const": "Attribute" },
    "abbreviation": { "type": "string", "minLength": 1 },
    "category": { "enum": ["physical", "mental"] },
    "generationRule": { "type": "string" },
    "modifierTable": { "type": "array", "items": { "type": "object" } }
  },
  "required": ["source", "category"],
  "unevaluatedProperties": false
}
