Oso Cloud · Schema

ActionsQuery

AuthorizationAccess ControlRBACReBACABACPermissionsPolicySecurityIdentity

Properties

Name Type Description
actor_type string
actor_id string
resource_type string
resource_id string
context_facts array
View JSON Schema on GitHub

JSON Schema

ActionsQuery.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.osohq.com/schemas/ActionsQuery.json",
  "title": "ActionsQuery",
  "type": "object",
  "required": [
    "actor_id",
    "actor_type",
    "resource_id",
    "resource_type"
  ],
  "properties": {
    "actor_type": {
      "type": "string"
    },
    "actor_id": {
      "type": "string"
    },
    "resource_type": {
      "type": "string"
    },
    "resource_id": {
      "type": "string"
    },
    "context_facts": {
      "default": [],
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Fact"
      }
    }
  }
}