changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "claim": {
+ "type": "string"
+ },
+ "customer_zero": {
+ "const": true,
+ "type": "boolean"
+ },
+ "externally_verified": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "identifier": {
+ "type": "string"
+ },
+ "type": {
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "identifier",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "independent_discovery_status": {
+ "const": "not-yet-proven",
+ "type": "string"
+ },
+ "next_proof": {
+ "type": "string"
+ },
+ "receipt_url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "technical_audit_score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "customer_zero",
+ "technical_audit_score",
+ "receipt_url",
+ "claim",
+ "externally_verified",
+ "independent_discovery_status",
+ "next_proof"
+ ],
+ "type": "object"
+}