{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cheeleong.dev/wwn-system-json/systems/weapon-trait.schema.json",
  "title": "WWN Weapon Trait",
  "type": "object",
  "allOf": [{ "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Entity" }],
  "properties": {
    "@type": { "const": "WeaponTrait" },
    "code": { "type": "string", "minLength": 1 },
    "rulesText": { "type": "string", "minLength": 1 }
  },
  "required": ["source", "code", "rulesText"],
  "unevaluatedProperties": false
}
