Oso Cloud · Schema

ListResult

AuthorizationAccess ControlRBACReBACABACPermissionsPolicySecurityIdentity

Properties

Name Type Description
results array
next_page_token string Optional token for fetching the next page of results. Present when more results are available.
View JSON Schema on GitHub

JSON Schema

ListResult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.osohq.com/schemas/ListResult.json",
  "title": "ListResult",
  "type": "object",
  "required": [
    "results",
    "next_page_token"
  ],
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "next_page_token": {
      "description": "Optional token for fetching the next page of results. Present when more results are available.",
      "type": "string",
      "nullable": true
    }
  }
}