changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "observed_at": {
+ "type": "string"
+ },
+ "schema": {
+ "const": "aiterm.pty-list-result.v1",
+ "type": "string"
+ },
+ "sessions": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "attached": {
+ "type": "boolean"
+ },
+ "current_command": {
+ "type": "string"
+ },
+ "environment": {
+ "additionalProperties": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "harness": {
+ "anyOf": [
+ {
+ "enum": [
+ "claude-code",
+ "codex-cli",
+ "grok-cli",
+ "cursor-cli"
+ ],
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "height": {
+ "type": "number"
+ },
+ "session_id": {
+ "type": "string"
+ },
+ "width": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "session_id",
+ "current_command",
+ "attached",
+ "width",
+ "height",
+ "harness",
+ "environment"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "schema",
+ "observed_at",
+ "sessions"
+ ],
+ "type": "object"
+}