21 lines
750 B
JSON
21 lines
750 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://neon-sprawl.local/schemas/faction-gate-rule.json",
|
|
"title": "FactionGateRule",
|
|
"description": "Minimum faction standing required to accept gated content (e.g. on QuestDef.factionGateRules). See docs/decomposition/modules/E7_M3_FactionReputationLedger.md.",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["factionId", "minStanding"],
|
|
"properties": {
|
|
"factionId": {
|
|
"type": "string",
|
|
"pattern": "^[a-z][a-z0-9_]*$",
|
|
"description": "Faction catalog id that must meet minStanding."
|
|
},
|
|
"minStanding": {
|
|
"type": "integer",
|
|
"description": "Inclusive minimum standing required to pass the gate."
|
|
}
|
|
}
|
|
}
|