changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "listings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "dead": {
+ "type": "boolean"
+ },
+ "description": {
+ "type": "string"
+ },
+ "lastProbeCode": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "lastSeenAlive": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "operator": {
+ "type": "boolean"
+ },
+ "paidUntil": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "tier": {
+ "enum": [
+ "free",
+ "paid"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "name",
+ "description",
+ "tags",
+ "tier",
+ "lastSeenAlive",
+ "paidUntil",
+ "dead",
+ "lastProbeCode",
+ "operator"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "nextCursor": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "listings",
+ "nextCursor"
+ ],
+ "type": "object"
+}