{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Resource identifier returned by the operation."
          },
          "workspace_id": {
            "type": "string",
            "description": "Workspace that owns this record."
          },
          "project_id": {
            "type": "string",
            "description": "Project that owns this record."
          },
          "source_url": {
            "type": "string",
            "description": "Publisher page URL recorded in this evidence."
          },
          "target_url": {
            "type": "string",
            "description": "Destination URL recorded in this evidence."
          },
          "target_scope": {
            "type": "string",
            "description": "target scope recorded for this result."
          },
          "status": {
            "type": "string",
            "enum": [
              "active",
              "paused"
            ],
            "description": "Resource lifecycle status."
          },
          "state": {
            "type": "string",
            "description": "Saved lifecycle or evidence state, as enumerated for this record."
          },
          "created_at": {
            "type": "string",
            "description": "UTC timestamp when the record was created."
          }
        },
        "required": [
          "id",
          "workspace_id",
          "project_id",
          "source_url",
          "target_url",
          "target_scope",
          "status",
          "state",
          "created_at"
        ],
        "additionalProperties": {},
        "description": "Records in this bounded page."
      },
      "description": "Records in this bounded page."
    },
    "next_cursor": {
      "anyOf": [
        {
          "type": "string",
          "description": "Opaque continuation for the same listing; null means no further page."
        },
        {
          "type": "null"
        }
      ],
      "description": "Opaque continuation for the same listing; null means no further page."
    },
    "has_more": {
      "description": "True when another page is available.",
      "type": "boolean"
    },
    "target_id": {
      "type": "string",
      "description": "target id recorded for this result."
    },
    "match_basis": {
      "type": "string",
      "const": "configured_target_url",
      "description": "match basis recorded for this result."
    },
    "total": {
      "type": "number",
      "description": "total recorded for this result."
    }
  },
  "required": [
    "items",
    "next_cursor",
    "target_id",
    "match_basis",
    "total"
  ],
  "additionalProperties": {}
}
