{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cheeleong.dev/wwn-system-json/systems/faction-action.schema.json",
  "title": "WWN Faction Action",
  "type": "object",
  "allOf": [{ "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Entity" }],
  "properties": {
    "@type": { "const": "FactionAction" },
    "actionType": { "type": "string" },
    "check": { "type": "string" },
    "cost": { "$ref": "https://cheeleong.dev/wwn-system-json/systems/common.schema.json#/$defs/Cost" },
    "requirements": { "type": "array", "items": { "type": ["string", "object"] } },
    "effects": { "type": "array", "items": { "type": ["string", "object"] } }
  },
  "required": ["source", "actionType", "rulesText"],
  "unevaluatedProperties": false
}
