changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "operationId": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "session": {
+ "additionalProperties": false,
+ "properties": {
+ "contextSettings": {
+ "additionalProperties": false,
+ "properties": {
+ "colorScheme": {
+ "enum": [
+ "light",
+ "dark",
+ "no-preference"
+ ],
+ "type": "string"
+ },
+ "deviceScaleFactor": {
+ "maximum": 10,
+ "minimum": 0.1,
+ "type": "number"
+ },
+ "geolocation": {
+ "additionalProperties": false,
+ "properties": {
+ "accuracy": {
+ "maximum": 100000,
+ "minimum": 0,
+ "type": "number"
+ },
+ "latitude": {
+ "maximum": 90,
+ "minimum": -90,
+ "type": "number"
+ },
+ "longitude": {
+ "maximum": 180,
+ "minimum": -180,
+ "type": "number"
+ }
+ },
+ "required": [
+ "latitude",
+ "longitude"
+ ],
+ "type": "object"
+ },
+ "locale": {
+ "maxLength": 64,
+ "minLength": 1,
+ "type": "string"
+ },
+ "permissions": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "origin": {
+ "maxLength": 2000,
+ "minLength": 1,
+ "type": "string"
+ },
+ "permission": {
+ "const": "geolocation",
+ "type": "string"
+ }
+ },
+ "required": [
+ "permission",
+ "origin"
+ ],
+ "type": "object"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ "reducedMotion": {
+ "enum": [
+ "reduce",
+ "no-preference"
+ ],
+ "type": "string"
+ },
+ "timezoneId": {
+ "maxLength": 128,
+ "minLength": 1,
+ "type": "string"
+ },
+ "userAgent": {
+ "maxLength": 512,
+ "minLength": 1,
+ "type": "string"
+ },
+ "viewport": {
+ "additionalProperties": false,
+ "properties": {
+ "height": {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "width": {
+ "maximum": 10000,
+ "minimum": 1,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "width",
+ "height"
+ ],
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "createdAt": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "lastActivityAt": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "metadata": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "name": {
+ "type": "string"
+ },
+ "restoredFromStateId": {
+ "type": "string"
+ },
+ "sessionId": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "creating",
+ "ready",
+ "closing",
+ "closed",
+ "failed"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "sessionId",
+ "status",
+ "createdAt",
+ "lastActivityAt",
+ "metadata",
+ "contextSettings"
+ ],
+ "type": "object"
+ },
+ "sessionId": {
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "operationId",
+ "sessionId",
+ "session"
+ ],
+ "type": "object"
+}