Aserto · Schema

v3Object

v3Object schema from Aserto directory API

AuthorizationFine-Grained Access ControlRBACABACReBACPolicyOpen Policy AgentOPACloud-NativeSecurity

Properties

Name Type Description
created_at string
display_name string
etag string
id string
properties object
type string
updated_at string
View JSON Schema on GitHub

JSON Schema

aserto-directory-v3object.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "v3Object",
  "description": "v3Object schema from Aserto directory API",
  "properties": {
    "created_at": {
      "format": "date-time",
      "readOnly": true,
      "title": "created at timestamp (UTC)",
      "type": "string"
    },
    "display_name": {
      "title": "display name object",
      "type": "string"
    },
    "etag": {
      "title": "object instance etag",
      "type": "string"
    },
    "id": {
      "title": "external object identifier (cs-string, no spaces or tabs)",
      "type": "string"
    },
    "properties": {
      "title": "property bag",
      "type": "object"
    },
    "type": {
      "title": "object type name",
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "readOnly": true,
      "title": "last updated timestamp (UTC)",
      "type": "string"
    }
  },
  "required": [
    "type",
    "id"
  ],
  "type": "object"
}