Aserto · Schema

v3CheckRelationRequest

v3CheckRelationRequest schema from Aserto directory API

AuthorizationFine-Grained Access ControlRBACABACReBACPolicyOpen Policy AgentOPACloud-NativeSecurity

Properties

Name Type Description
object_id string
object_type string
relation string
subject_id string
subject_type string
trace boolean
View JSON Schema on GitHub

JSON Schema

aserto-directory-v3checkrelationrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "v3CheckRelationRequest",
  "description": "v3CheckRelationRequest schema from Aserto directory API",
  "properties": {
    "object_id": {
      "title": "object identifier",
      "type": "string"
    },
    "object_type": {
      "title": "object type",
      "type": "string"
    },
    "relation": {
      "title": "relation name",
      "type": "string"
    },
    "subject_id": {
      "title": "subject identifier",
      "type": "string"
    },
    "subject_type": {
      "title": "subject type",
      "type": "string"
    },
    "trace": {
      "title": "collect trace information",
      "type": "boolean"
    }
  },
  "required": [
    "object_type",
    "object_id",
    "relation",
    "subject_type",
    "subject_id"
  ],
  "type": "object"
}