{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cheeleong.dev/wwn-system-json/systems/faction-asset.schema.json",
  "title": "WWN Faction Asset",
  "type": "object",
  "allOf": [{ "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Entity" }],
  "properties": {
    "@type": { "const": "FactionAsset" },
    "assetCategory": { "enum": ["cunning", "force", "wealth"] },
    "level": { "type": "integer", "minimum": 1 },
    "cost": { "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Cost" },
    "hitPoints": { "type": ["integer", "string"] },
    "attack": { "type": ["string", "object"] },
    "counterattack": { "type": ["string", "object"] },
    "requirements": { "type": "array", "items": { "type": ["string", "object"] } },
    "effects": { "type": "array", "items": { "type": ["string", "object"] } }
  },
  "required": ["source", "assetCategory", "rulesText"],
  "unevaluatedProperties": false
}
