changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "account": {
+ "description": "Plan and billing state, or null if it cannot be read.",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "consoleUrl": {
+ "description": "Where your human signs in to see all of this.",
+ "type": "string"
+ },
+ "crawl": {
+ "description": "Progress of the site read. While `status` is pending or running it carries `advanceUrl` — POST it between polls to advance the queue yourself.",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "humanNextStep": {
+ "description": "What is waiting on your human, in words you can repeat to them. Null when nothing is.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "install": {
+ "properties": {
+ "docs": {
+ "type": "string"
+ },
+ "lastBeaconAt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "lastBeaconOrigin": {
+ "description": "The host we actually heard from. When verified is false this is usually the whole answer: a staging domain, or a www the site does not serve.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "publicKey": {
+ "type": "string"
+ },
+ "snippet": {
+ "type": "string"
+ },
+ "verified": {
+ "description": "A beacon arrived AND it came from this site's own domain. Both, or false — this is the field to poll.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "publicKey",
+ "snippet",
+ "verified"
+ ],
+ "type": "object"
+ },
+ "ok": {
+ "type": "boolean"
+ },
+ "site": {
+ "properties": {
+ "createdAt": {
+ "type": "string"
+ },
+ "domain": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "mode": {
+ "enum": [
+ "learn",
+ "act"
+ ],
+ "type": "string"
+ },
+ "onboardingStep": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "domain",
+ "mode"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "ok",
+ "site",
+ "install"
+ ],
+ "type": "object"
+}