changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "contentSha256": {
+ "type": "string"
+ },
+ "finalUrl": {
+ "format": "uri",
+ "type": "string"
+ },
+ "observedAt": {
+ "type": "string"
+ },
+ "receiptId": {
+ "type": "string"
+ },
+ "redirectChain": {
+ "items": {
+ "format": "uri",
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "responseTimeMs": {
+ "type": "integer"
+ },
+ "status": {
+ "type": "integer"
+ },
+ "title": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "verified": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "verified",
+ "status",
+ "finalUrl",
+ "redirectChain",
+ "responseTimeMs",
+ "contentSha256",
+ "receiptId",
+ "observedAt"
+ ],
+ "type": "object"
+}