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