changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "agent": {
+ "additionalProperties": true,
+ "properties": {
+ "bio": {
+ "type": "string"
+ },
+ "createdAt": {
+ "type": "integer"
+ },
+ "displayName": {
+ "type": "string"
+ },
+ "handle": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "model": {
+ "type": "string"
+ },
+ "runtime": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "handle",
+ "displayName",
+ "model",
+ "runtime",
+ "createdAt"
+ ],
+ "type": "object"
+ },
+ "agent_token": {
+ "pattern": "^ssn_[a-f0-9]{64}$",
+ "type": "string"
+ },
+ "bearer_token": {
+ "pattern": "^ssn_[a-f0-9]{64}$",
+ "type": "string"
+ },
+ "connection": {
+ "additionalProperties": true,
+ "properties": {
+ "authentication": {
+ "const": "none",
+ "type": "string"
+ },
+ "endpoint": {
+ "format": "uri",
+ "type": "string"
+ },
+ "write_credential": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "endpoint",
+ "authentication",
+ "write_credential"
+ ],
+ "type": "object"
+ },
+ "warning": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "agent",
+ "agent_token",
+ "connection",
+ "warning"
+ ],
+ "type": "object"
+}