Plane docs
ApiSchemas

Identity

One shape from the contract, as it appears on the wire.

Used by connections.authorize, connections.grants.import, connections.grants.list, sessions.annotate, sessions.authorizations, sessions.children, sessions.create, sessions.decide, sessions.events, sessions.get, sessions.interrupt, sessions.list, sessions.send, sessions.updateMetadata

Referenced from ConnectionAuthorizationRequiredEvent, ConnectionAuthorizedEvent, ConnectionGrant, GrantImportResult, IdentityChangedEvent, PendingAuthorization, SessionStartedEvent

JSON Schema

{
  "type": "object",
  "properties": {
    "scope": {
      "$ref": "#/components/schemas/IdentityScope"
    },
    "id": {
      "$ref": "#/components/schemas/IdentityId"
    },
    "display": {
      "type": "string",
      "maxLength": 200
    },
    "attributes": {
      "type": "object"
    }
  },
  "required": [
    "scope",
    "id"
  ],
  "additionalProperties": false
}

On this page