{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "workspace_id": {
            "description": "Workspace that owns this record.",
            "type": "string"
          },
          "user_id": {
            "type": "string",
            "description": "user id recorded for this result."
          },
          "role": {
            "type": "string",
            "description": "role recorded for this result."
          },
          "project_ids": {
            "description": "Accessible project identifiers; null grants access to all workspace projects.",
            "anyOf": [
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "description": "Accessible project identifiers; null grants access to all workspace projects."
                },
                "description": "Accessible project identifiers; null grants access to all workspace projects."
              },
              {
                "type": "null"
              }
            ]
          },
          "created_at": {
            "description": "UTC timestamp when the record was created.",
            "type": "string"
          }
        },
        "required": [
          "user_id",
          "role"
        ],
        "additionalProperties": {},
        "description": "Records in this bounded page."
      },
      "description": "Records in this bounded page."
    }
  },
  "required": [
    "items"
  ],
  "additionalProperties": {}
}
