changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "challenge": {
+ "description": "The random string to publish. It proves this claim and no other.",
+ "type": "string"
+ },
+ "claimId": {
+ "description": "This claim's id, for your own logs.",
+ "type": "string"
+ },
+ "domain": {
+ "description": "The domain we resolved from your siteUrl, and the one the proof must appear on.",
+ "type": "string"
+ },
+ "expiresAt": {
+ "description": "ISO timestamp. Redeemable until then; after that, open another.",
+ "type": "string"
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "proofs": {
+ "description": "The three ways to prove control, each with the exact URL and the exact string. Publish any ONE, then call cromanion_verify_claim.",
+ "type": "object"
+ },
+ "secret": {
+ "description": "Shown ONCE. Store it now — we keep only its hash, so a lost secret means a new claim.",
+ "type": "string"
+ },
+ "verifyUrl": {
+ "description": "The HTTP equivalent of cromanion_verify_claim, if you would rather curl it.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok",
+ "claimId",
+ "secret",
+ "challenge",
+ "domain",
+ "expiresAt",
+ "proofs"
+ ],
+ "type": "object"
+}