{
  "$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."
          },
          "name": {
            "type": "string",
            "description": "name recorded for this result."
          },
          "domain": {
            "type": "string",
            "description": "domain recorded for this result."
          },
          "created_at": {
            "type": "string",
            "description": "UTC timestamp when the record was created."
          },
          "created": {
            "description": "True when this request created the record; false when an existing record was reused.",
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "workspace_id",
          "name",
          "domain",
          "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"
    }
  },
  "required": [
    "items",
    "next_cursor"
  ],
  "additionalProperties": {}
}
