diff options
Diffstat (limited to 'schema/json')
| -rw-r--r-- | schema/json/FullState.json | 5 | ||||
| -rw-r--r-- | schema/json/SessionInfo.json | 29 | 
2 files changed, 29 insertions, 5 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json index 7b6dfd6b..21db438a 100644 --- a/schema/json/FullState.json +++ b/schema/json/FullState.json @@ -264,10 +264,6 @@              "type": "string"            }          }, -        "default_model": { -          "title": "Default Model", -          "type": "string" -        },          "slash_commands": {            "title": "Slash Commands",            "type": "array", @@ -291,7 +287,6 @@          "history",          "active",          "user_input_queue", -        "default_model",          "slash_commands",          "adding_highlighted_code",          "selected_context_items" diff --git a/schema/json/SessionInfo.json b/schema/json/SessionInfo.json new file mode 100644 index 00000000..5857a724 --- /dev/null +++ b/schema/json/SessionInfo.json @@ -0,0 +1,29 @@ +{ +  "title": "SessionInfo", +  "$ref": "#/definitions/src__continuedev__core__main__SessionInfo", +  "definitions": { +    "src__continuedev__core__main__SessionInfo": { +      "title": "SessionInfo", +      "type": "object", +      "properties": { +        "session_id": { +          "title": "Session Id", +          "type": "string" +        }, +        "title": { +          "title": "Title", +          "type": "string" +        }, +        "date_created": { +          "title": "Date Created", +          "type": "string" +        } +      }, +      "required": [ +        "session_id", +        "title", +        "date_created" +      ] +    } +  } +}
\ No newline at end of file  | 
