{
  "openapi": "3.0.1",
  "info": {
    "title": "US Brand Evidence Snapshot Diff",
    "description": "Compare two buyer-supplied US-brand evidence snapshots by explicit dedupeKey and return one deterministic diff.",
    "version": "0.1",
    "x-build-id": "i8k4072MnywDajKXL"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/zinin~us-brand-evidence-snapshot-diff/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-zinin-us-brand-evidence-snapshot-diff",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/zinin~us-brand-evidence-snapshot-diff/runs": {
      "post": {
        "operationId": "runs-sync-zinin-us-brand-evidence-snapshot-diff",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/zinin~us-brand-evidence-snapshot-diff/run-sync": {
      "post": {
        "operationId": "run-sync-zinin-us-brand-evidence-snapshot-diff",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "schemaVersion",
          "primarySide",
          "primary"
        ],
        "properties": {
          "schemaVersion": {
            "title": "Contract schema version",
            "enum": [
              "1.0"
            ],
            "type": "string",
            "description": "schemaVersion",
            "default": "1.0"
          },
          "primarySide": {
            "title": "Primary snapshot side",
            "enum": [
              "before",
              "after"
            ],
            "type": "string",
            "description": "Whether primary rows are the before or after snapshot.",
            "default": "before"
          },
          "primary": {
            "title": "Primary snapshot rows",
            "minItems": 1,
            "maxItems": 50,
            "uniqueItems": true,
            "type": "array",
            "description": "One to 50 rows for the side selected by primarySide. Identical rows are rejected structurally; runtime also rejects the same dedupeKey across non-identical rows.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "dedupeKey",
                "brandName",
                "country"
              ],
              "properties": {
                "dedupeKey": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200,
                  "pattern": "^[A-Za-z0-9][A-Za-z0-9._|:/#-]{0,199}$",
                  "description": "dedupeKey",
                  "title": "dedupeKey"
                },
                "brandName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 240,
                  "description": "brandName",
                  "title": "brandName"
                },
                "legalName": {
                  "type": "string",
                  "maxLength": 240,
                  "description": "legalName",
                  "title": "legalName",
                  "minLength": 1
                },
                "domain": {
                  "type": "string",
                  "maxLength": 253,
                  "description": "domain",
                  "title": "domain",
                  "minLength": 1
                },
                "ticker": {
                  "type": "string",
                  "maxLength": 20,
                  "description": "ticker",
                  "title": "ticker",
                  "minLength": 1
                },
                "country": {
                  "type": "string",
                  "enum": [
                    "US"
                  ],
                  "description": "country",
                  "title": "country"
                },
                "aliases": {
                  "type": "array",
                  "maxItems": 50,
                  "items": {
                    "type": "string",
                    "maxLength": 240,
                    "minLength": 1
                  },
                  "description": "aliases",
                  "title": "aliases"
                },
                "sourceEntityIds": {
                  "type": "array",
                  "maxItems": 50,
                  "items": {
                    "type": "string",
                    "maxLength": 200,
                    "minLength": 1
                  },
                  "description": "sourceEntityIds",
                  "title": "sourceEntityIds"
                },
                "eventType": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "eventType",
                  "title": "eventType",
                  "minLength": 1
                },
                "eventId": {
                  "type": "string",
                  "maxLength": 200,
                  "description": "eventId",
                  "title": "eventId",
                  "minLength": 1
                },
                "observedAt": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "observedAt",
                  "title": "observedAt",
                  "minLength": 1
                },
                "effectiveAt": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "effectiveAt",
                  "title": "effectiveAt",
                  "minLength": 1
                },
                "changeKind": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "changeKind",
                  "title": "changeKind",
                  "minLength": 1
                },
                "state": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "state",
                  "title": "state",
                  "minLength": 1
                },
                "severity": {
                  "type": "string",
                  "enum": [
                    "low",
                    "medium",
                    "high",
                    "critical"
                  ],
                  "description": "severity",
                  "title": "severity"
                },
                "confidenceBps": {
                  "type": "integer",
                  "minimum": 0,
                  "maximum": 10000,
                  "description": "confidenceBps",
                  "title": "confidenceBps"
                },
                "sourceKind": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "sourceKind",
                  "title": "sourceKind",
                  "minLength": 1
                },
                "sourceName": {
                  "type": "string",
                  "maxLength": 240,
                  "description": "sourceName",
                  "title": "sourceName",
                  "minLength": 1
                },
                "sourceUrl": {
                  "type": "string",
                  "maxLength": 2048,
                  "pattern": "^https://(?=[A-Za-z0-9][A-Za-z0-9.-]*(?::443)?(?:[/?#]|$))(?![^/?#]*@)[^\\s]+$",
                  "description": "sourceUrl",
                  "title": "sourceUrl",
                  "minLength": 1
                },
                "sourceRecordId": {
                  "type": "string",
                  "maxLength": 200,
                  "description": "sourceRecordId",
                  "title": "sourceRecordId",
                  "minLength": 1
                },
                "evidence": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "facts": {
                      "type": "object",
                      "description": "Nested finite JSON facts. Runtime recursively rejects integer-valued numbers outside the JavaScript safe range before digesting.",
                      "title": "facts"
                    },
                    "excerpt": {
                      "type": "string",
                      "maxLength": 8192,
                      "description": "excerpt",
                      "title": "excerpt",
                      "minLength": 1
                    },
                    "additionalUrls": {
                      "type": "array",
                      "maxItems": 20,
                      "items": {
                        "type": "string",
                        "maxLength": 2048,
                        "minLength": 1,
                        "pattern": "^https://(?=[A-Za-z0-9][A-Za-z0-9.-]*(?::443)?(?:[/?#]|$))(?![^/?#]*@)[^\\s]+$"
                      },
                      "description": "additionalUrls",
                      "title": "additionalUrls"
                    },
                    "contentDigest": {
                      "type": "string",
                      "pattern": "^sha256:[a-f0-9]{64}$",
                      "description": "contentDigest",
                      "title": "contentDigest",
                      "minLength": 71
                    },
                    "contentBytes": {
                      "type": "integer",
                      "minimum": 0,
                      "maximum": 16384,
                      "description": "contentBytes",
                      "title": "contentBytes"
                    }
                  },
                  "description": "evidence",
                  "title": "evidence"
                },
                "attribution": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "status": {
                      "type": "string",
                      "maxLength": 64,
                      "description": "status",
                      "title": "status",
                      "minLength": 1
                    },
                    "proofType": {
                      "type": "string",
                      "maxLength": 64,
                      "description": "proofType",
                      "title": "proofType",
                      "minLength": 1
                    },
                    "proofValue": {
                      "type": "string",
                      "maxLength": 512,
                      "description": "proofValue",
                      "title": "proofValue",
                      "minLength": 1
                    },
                    "sourceEntityId": {
                      "type": "string",
                      "maxLength": 200,
                      "description": "sourceEntityId",
                      "title": "sourceEntityId",
                      "minLength": 1
                    }
                  },
                  "description": "attribution",
                  "title": "attribution"
                },
                "demoFixture": {
                  "type": "boolean",
                  "description": "demoFixture",
                  "title": "demoFixture"
                },
                "fixtureAsOf": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "fixtureAsOf",
                  "title": "fixtureAsOf",
                  "minLength": 1
                }
              }
            }
          },
          "counterpart": {
            "title": "Counterpart snapshot rows",
            "minItems": 1,
            "maxItems": 50,
            "uniqueItems": true,
            "type": "array",
            "description": "Optional one to 50 rows for the opposite side; omit it for an empty counterpart snapshot. Runtime rejects repeated dedupeKey values.",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "dedupeKey",
                "brandName",
                "country"
              ],
              "properties": {
                "dedupeKey": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 200,
                  "pattern": "^[A-Za-z0-9][A-Za-z0-9._|:/#-]{0,199}$",
                  "description": "dedupeKey",
                  "title": "dedupeKey"
                },
                "brandName": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 240,
                  "description": "brandName",
                  "title": "brandName"
                },
                "legalName": {
                  "type": "string",
                  "maxLength": 240,
                  "description": "legalName",
                  "title": "legalName",
                  "minLength": 1
                },
                "domain": {
                  "type": "string",
                  "maxLength": 253,
                  "description": "domain",
                  "title": "domain",
                  "minLength": 1
                },
                "ticker": {
                  "type": "string",
                  "maxLength": 20,
                  "description": "ticker",
                  "title": "ticker",
                  "minLength": 1
                },
                "country": {
                  "type": "string",
                  "enum": [
                    "US"
                  ],
                  "description": "country",
                  "title": "country"
                },
                "aliases": {
                  "type": "array",
                  "maxItems": 50,
                  "items": {
                    "type": "string",
                    "maxLength": 240,
                    "minLength": 1
                  },
                  "description": "aliases",
                  "title": "aliases"
                },
                "sourceEntityIds": {
                  "type": "array",
                  "maxItems": 50,
                  "items": {
                    "type": "string",
                    "maxLength": 200,
                    "minLength": 1
                  },
                  "description": "sourceEntityIds",
                  "title": "sourceEntityIds"
                },
                "eventType": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "eventType",
                  "title": "eventType",
                  "minLength": 1
                },
                "eventId": {
                  "type": "string",
                  "maxLength": 200,
                  "description": "eventId",
                  "title": "eventId",
                  "minLength": 1
                },
                "observedAt": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "observedAt",
                  "title": "observedAt",
                  "minLength": 1
                },
                "effectiveAt": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "effectiveAt",
                  "title": "effectiveAt",
                  "minLength": 1
                },
                "changeKind": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "changeKind",
                  "title": "changeKind",
                  "minLength": 1
                },
                "state": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "state",
                  "title": "state",
                  "minLength": 1
                },
                "severity": {
                  "type": "string",
                  "enum": [
                    "low",
                    "medium",
                    "high",
                    "critical"
                  ],
                  "description": "severity",
                  "title": "severity"
                },
                "confidenceBps": {
                  "type": "integer",
                  "minimum": 0,
                  "maximum": 10000,
                  "description": "confidenceBps",
                  "title": "confidenceBps"
                },
                "sourceKind": {
                  "type": "string",
                  "maxLength": 64,
                  "description": "sourceKind",
                  "title": "sourceKind",
                  "minLength": 1
                },
                "sourceName": {
                  "type": "string",
                  "maxLength": 240,
                  "description": "sourceName",
                  "title": "sourceName",
                  "minLength": 1
                },
                "sourceUrl": {
                  "type": "string",
                  "maxLength": 2048,
                  "pattern": "^https://(?=[A-Za-z0-9][A-Za-z0-9.-]*(?::443)?(?:[/?#]|$))(?![^/?#]*@)[^\\s]+$",
                  "description": "sourceUrl",
                  "title": "sourceUrl",
                  "minLength": 1
                },
                "sourceRecordId": {
                  "type": "string",
                  "maxLength": 200,
                  "description": "sourceRecordId",
                  "title": "sourceRecordId",
                  "minLength": 1
                },
                "evidence": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "facts": {
                      "type": "object",
                      "description": "Nested finite JSON facts. Runtime recursively rejects integer-valued numbers outside the JavaScript safe range before digesting.",
                      "title": "facts"
                    },
                    "excerpt": {
                      "type": "string",
                      "maxLength": 8192,
                      "description": "excerpt",
                      "title": "excerpt",
                      "minLength": 1
                    },
                    "additionalUrls": {
                      "type": "array",
                      "maxItems": 20,
                      "items": {
                        "type": "string",
                        "maxLength": 2048,
                        "minLength": 1,
                        "pattern": "^https://(?=[A-Za-z0-9][A-Za-z0-9.-]*(?::443)?(?:[/?#]|$))(?![^/?#]*@)[^\\s]+$"
                      },
                      "description": "additionalUrls",
                      "title": "additionalUrls"
                    },
                    "contentDigest": {
                      "type": "string",
                      "pattern": "^sha256:[a-f0-9]{64}$",
                      "description": "contentDigest",
                      "title": "contentDigest",
                      "minLength": 71
                    },
                    "contentBytes": {
                      "type": "integer",
                      "minimum": 0,
                      "maximum": 16384,
                      "description": "contentBytes",
                      "title": "contentBytes"
                    }
                  },
                  "description": "evidence",
                  "title": "evidence"
                },
                "attribution": {
                  "type": "object",
                  "additionalProperties": false,
                  "properties": {
                    "status": {
                      "type": "string",
                      "maxLength": 64,
                      "description": "status",
                      "title": "status",
                      "minLength": 1
                    },
                    "proofType": {
                      "type": "string",
                      "maxLength": 64,
                      "description": "proofType",
                      "title": "proofType",
                      "minLength": 1
                    },
                    "proofValue": {
                      "type": "string",
                      "maxLength": 512,
                      "description": "proofValue",
                      "title": "proofValue",
                      "minLength": 1
                    },
                    "sourceEntityId": {
                      "type": "string",
                      "maxLength": 200,
                      "description": "sourceEntityId",
                      "title": "sourceEntityId",
                      "minLength": 1
                    }
                  },
                  "description": "attribution",
                  "title": "attribution"
                },
                "demoFixture": {
                  "type": "boolean",
                  "description": "demoFixture",
                  "title": "demoFixture"
                },
                "fixtureAsOf": {
                  "type": "string",
                  "maxLength": 20,
                  "pattern": "^(?:(?:(?:[0-9]{2}(?:0[48]|[2468][048]|[13579][26])|(?:[02468][048]|[13579][26])00)-02-29)|(?:[0-9]{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12][0-9]|3[01])|(?:0[469]|11)-(?:0[1-9]|[12][0-9]|30)|02-(?:0[1-9]|1[0-9]|2[0-8]))))T(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]Z$",
                  "description": "fixtureAsOf",
                  "title": "fixtureAsOf",
                  "minLength": 1
                }
              }
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}