{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cheeleong.dev/wwn-system-json/systems/faction-tag.schema.json",
  "title": "WWN Faction Tag",
  "type": "object",
  "allOf": [{ "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Entity" }],
  "properties": {
    "@type": { "const": "FactionTag" },
    "effects": { "type": "array", "items": { "type": ["string", "object"] } },
    "advantages": { "type": "array", "items": { "type": "string" } },
    "problems": { "type": "array", "items": { "type": "string" } }
  },
  "required": ["source", "rulesText"],
  "unevaluatedProperties": false
}
