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"
+}