changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "install": {
+ "properties": {
+ "docs": {
+ "type": "string"
+ },
+ "publicKey": {
+ "type": "string"
+ },
+ "snippet": {
+ "description": "Paste this before </body> on every page. Do not assemble your own.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "publicKey",
+ "snippet"
+ ],
+ "type": "object"
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "provedBy": {
+ "description": "Which of the three proofs we actually read.",
+ "enum": [
+ "well_known",
+ "meta_tag",
+ "dns_txt",
+ "account_holder"
+ ],
+ "type": "string"
+ },
+ "site": {
+ "properties": {
+ "domain": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "mode": {
+ "description": "Always `learn` for a new site.",
+ "enum": [
+ "learn",
+ "act"
+ ],
+ "type": "string"
+ },
+ "plan": {
+ "description": "Always `free` for a new account.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "domain",
+ "mode"
+ ],
+ "type": "object"
+ },
+ "status": {
+ "description": "`created` the first time, `existing` on a retry — the same account either way.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok",
+ "status",
+ "site",
+ "install"
+ ],
+ "type": "object"
+}