changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": {},
+ "properties": {
+ "live": {
+ "description": "false: games are not live yet — there are no links or prices to give",
+ "type": "boolean"
+ },
+ "message": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "query": {
+ "type": "string"
+ },
+ "resolved_at": {
+ "type": "string"
+ },
+ "response_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "results": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "availability": {
+ "enum": [
+ "in_stock",
+ "preorder",
+ "available",
+ "unknown"
+ ],
+ "type": "string"
+ },
+ "click_url": {
+ "description": "The link to give the user",
+ "type": "string"
+ },
+ "edition": {
+ "type": "string"
+ },
+ "merchant": {
+ "type": "string"
+ },
+ "merchant_id": {
+ "type": "string"
+ },
+ "price": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "properties": {
+ "amount": {
+ "type": "number"
+ },
+ "currency": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "amount",
+ "currency"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "null when no price is listed — never zero, never free"
+ },
+ "price_freshness": {
+ "type": "string"
+ },
+ "rank": {
+ "type": "number"
+ },
+ "ranking_reason": {
+ "additionalProperties": {},
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "summary"
+ ],
+ "type": "object"
+ },
+ "trust_tier": {
+ "enum": [
+ "authoritative",
+ "verified",
+ "listed"
+ ],
+ "type": "string"
+ },
+ "type": {
+ "enum": [
+ "purchase",
+ "stream",
+ "subscription"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "rank",
+ "merchant",
+ "merchant_id",
+ "type",
+ "trust_tier",
+ "availability",
+ "price",
+ "click_url",
+ "url",
+ "ranking_reason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "enum": [
+ "coming_soon",
+ "success",
+ "partial",
+ "no_results"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "live",
+ "query",
+ "message",
+ "results",
+ "response_id",
+ "resolved_at"
+ ],
+ "type": "object"
+}