changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "CommitSessionLinkOutput": {
+ "additionalProperties": false,
+ "properties": {
+ "linked_at_epoch": {
+ "format": "int64",
+ "type": "integer"
+ },
+ "memory_session_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "session_id": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "summary": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/SessionSummaryTraceOutput"
+ },
+ {
+ "anyOf": [
+ {
+ "const": null
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ ]
+ }
+ },
+ "required": [
+ "session_id",
+ "source",
+ "linked_at_epoch"
+ ],
+ "type": "object"
+ },
+ "GitCommitOutput": {
+ "additionalProperties": false,
+ "properties": {
+ "authored_at_epoch": {
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "branch": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "changed_files": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "created_at_epoch": {
+ "format": "int64",
+ "type": "integer"
+ },
+ "id": {
+ "format": "int64",
+ "type": "integer"
+ },
+ "message": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "project": {
+ "type": "string"
+ },
+ "repo_path": {
+ "type": "string"
+ },
+ "sha": {
+ "type": "string"
+ },
+ "short_sha": {
+ "type": "string"
+ },
+ "updated_at_epoch": {
+ "format": "int64",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "id",
+ "project",
+ "repo_path",
+ "sha",
+ "short_sha",
+ "changed_files",
+ "created_at_epoch",
+ "updated_at_epoch"
+ ],
+ "type": "object"
+ },
+ "SessionCommitOutput": {
+ "additionalProperties": false,
+ "properties": {
+ "git": {
+ "$ref": "#/$defs/GitCommitOutput"
+ },
+ "link": {
+ "$ref": "#/$defs/CommitSessionLinkOutput"
+ }
+ },
+ "required": [
+ "git",
+ "link"
+ ],
+ "type": "object"
+ },
+ "SessionSummaryTraceOutput": {
+ "additionalProperties": false,
+ "properties": {
+ "completed": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at_epoch": {
+ "format": "int64",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "decisions": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "learned": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "next_steps": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "preferences": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "request": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "commits": {
+ "items": {
+ "$ref": "#/$defs/SessionCommitOutput"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "commits"
+ ],
+ "title": "SessionCommitsOutput",
+ "type": "object"
+}