changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "album": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "art": {
+ "anyOf": [
+ {
+ "format": "uri",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "artist": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "duration_s": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "elapsed_s": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "started_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stream_url": {
+ "anyOf": [
+ {
+ "format": "uri",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "title": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "artist",
+ "album",
+ "art",
+ "started_at",
+ "elapsed_s",
+ "duration_s",
+ "stream_url"
+ ],
+ "type": "object"
+}