Paragon · Schema

AccessCheck

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
subject string The actor (e.g., [email protected]).
relation string The relation to check (e.g., viewer, editor, owner).
object string The object identifier (e.g., file:abc123).
View JSON Schema on GitHub

JSON Schema

paragon-accesscheck-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccessCheck",
  "title": "AccessCheck",
  "type": "object",
  "required": [
    "subject",
    "relation",
    "object"
  ],
  "properties": {
    "subject": {
      "type": "string",
      "description": "The actor (e.g., [email protected])."
    },
    "relation": {
      "type": "string",
      "description": "The relation to check (e.g., viewer, editor, owner)."
    },
    "object": {
      "type": "string",
      "description": "The object identifier (e.g., file:abc123)."
    }
  }
}