addedInput schema / properties / items / items / properties / rewards
Added value: +{
+ "description": "If present, replaces the entire rewards list.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "amount": {
+ "description": "Numeric amount for stack-like rewards.",
+ "type": "integer"
+ },
+ "itemId": {
+ "description": "Optional reference to an item entry.",
+ "type": "string"
+ },
+ "label": {
+ "description": "Display label (e.g. '100 gp', 'Ancient map').",
+ "type": "string"
+ },
+ "linkedStepIds": {
+ "description": "stepIds and/or subquest entry ids whose completion unlocks this reward.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "notes": {
+ "type": "string"
+ },
+ "rewardType": {
+ "description": "Bucket: Gold | Item | XP | Reputation | etc.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+}
addedInput schema / properties / items / items / properties / steps
Added value: +{
+ "description": "If present, replaces the entire steps list. Omit to leave steps untouched.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": "string"
+ },
+ "notes": {
+ "description": "Free-text bullet notes for the step.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Defaults to 'Available' when omitted. Unknown values are coerced server-side.",
+ "enum": [
+ "Hidden",
+ "Available",
+ "Active",
+ "Completed",
+ "Failed",
+ "TurnedIn",
+ "Abandoned",
+ "Expired",
+ "OnHold"
+ ],
+ "type": "string"
+ },
+ "stepId": {
+ "description": "Optional. Server generates a fresh UUID when blank. Provide an existing stepId to reuse linkedStepIds.",
+ "type": "string"
+ },
+ "targetLocationEntryIds": {
+ "description": "Locations involved in this step.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "targetNpcEntryIds": {
+ "description": "NPCs involved in this step (entryIds or titles).",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Short label for the step, e.g. 'Talk to the innkeeper'.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}