addedInput schema / oneOf
Added value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "create"
+ },
+ "body": {
+ "type": "string"
+ },
+ "project": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "action",
+ "title",
+ "summary",
+ "body"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "patch"
+ },
+ "base_revision": {
+ "type": "string"
+ },
+ "edits": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "new_text": {
+ "type": "string"
+ },
+ "old_text": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "old_text",
+ "new_text"
+ ],
+ "type": "object"
+ },
+ "minItems": 1,
+ "type": "array"
+ },
+ "memory_id": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "action",
+ "memory_id",
+ "base_revision",
+ "edits"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "const": "replace"
+ },
+ "base_revision": {
+ "type": "string"
+ },
+ "body": {
+ "type": "string"
+ },
+ "memory_id": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "action",
+ "memory_id",
+ "base_revision",
+ "summary",
+ "body"
+ ],
+ "type": "object"
+ }
+]
removedInput schema / properties
Removed value: -{
- "action": {
- "enum": [
- "create",
- "patch",
- "replace"
- ],
- "type": "string"
- },
- "base_revision": {
- "type": "string"
- },
- "body": {
- "type": "string"
- },
- "edits": {
- "items": {
- "additionalProperties": false,
- "properties": {
- "new_text": {
- "type": "string"
- },
- "old_text": {
- "type": "string"
- }
- },
- "required": [
- "old_text",
- "new_text"
- ],
- "type": "object"
- },
- "minItems": 1,
- "type": "array"
- },
- "memory_id": {
- "type": "string"
- },
- "project": {
- "type": "string"
- },
- "summary": {
- "type": "string"
- },
- "title": {
- "type": "string"
- }
-}