addedInput schema / properties / contextRunId
Added value: +{
+ "description": "prepare_context contextRunId. Required for mutations when the workspace uses Strict context.",
+ "format": "uuid",
+ "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
+ "type": "string"
+}
addedInput schema / properties / knowledge
Added value: +{
+ "description": "Optional OKF-aligned knowledge metadata. Agent-authored knowledge remains draft/machine-confirmed until a Remnus user reviews the exact revision.",
+ "properties": {
+ "conceptType": {
+ "maxLength": 120,
+ "type": "string"
+ },
+ "description": {
+ "maxLength": 1000,
+ "type": "string"
+ },
+ "sources": {
+ "items": {
+ "properties": {
+ "resource": {
+ "maxLength": 2000,
+ "type": "string"
+ },
+ "title": {
+ "maxLength": 300,
+ "type": "string"
+ }
+ },
+ "required": [
+ "resource"
+ ],
+ "type": "object"
+ },
+ "maxItems": 20,
+ "type": "array"
+ },
+ "staleAfter": {
+ "maxLength": 40,
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "draft",
+ "stable",
+ "deprecated"
+ ],
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "maxLength": 80,
+ "type": "string"
+ },
+ "maxItems": 30,
+ "type": "array"
+ }
+ },
+ "type": "object"
+}
addedInput schema / properties / recurrence
Added value: +{
+ "description": "Repeat this database row on a schedule. Occurrences are created as real rows.",
+ "properties": {
+ "byMonthDay": {
+ "maximum": 31,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "bySetPos": {
+ "anyOf": [
+ {
+ "const": -1,
+ "type": "number"
+ },
+ {
+ "const": 1,
+ "type": "number"
+ },
+ {
+ "const": 2,
+ "type": "number"
+ },
+ {
+ "const": 3,
+ "type": "number"
+ },
+ {
+ "const": 4,
+ "type": "number"
+ }
+ ],
+ "description": "-1 = last"
+ },
+ "byWeekday": {
+ "items": {
+ "enum": [
+ "MO",
+ "TU",
+ "WE",
+ "TH",
+ "FR",
+ "SA",
+ "SU"
+ ],
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "count": {
+ "maximum": 500,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "dateColumn": {
+ "description": "Column id or name; defaults to the first date column",
+ "type": "string"
+ },
+ "freq": {
+ "enum": [
+ "daily",
+ "weekly",
+ "monthly",
+ "yearly"
+ ],
+ "type": "string"
+ },
+ "interval": {
+ "description": "1 = every, 2 = every other",
+ "maximum": 99,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "monthlyMode": {
+ "enum": [
+ "dayOfMonth",
+ "nthWeekday",
+ "lastDay"
+ ],
+ "type": "string"
+ },
+ "until": {
+ "description": "YYYY-MM-DD, inclusive",
+ "type": "string"
+ }
+ },
+ "required": [
+ "freq"
+ ],
+ "type": "object"
+}
addedInput schema / properties / recurrenceScope
Added value: +{
+ "description": "Required when the row ALREADY repeats: \"thisAndFollowing\" leaves earlier cards untouched, \"all\" re-rhythms the whole series. Ask the user rather than guessing.",
+ "enum": [
+ "thisAndFollowing",
+ "all"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / recurrenceError
Added value: +{
+ "description": "Set when the rhythm change was refused — the row update itself still applied",
+ "type": "string"
+}