Plane docs
ApiSchemas

StreamTokenIssued

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

Used by sessions.streamToken

JSON Schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "minLength": 1
    },
    "token": {
      "type": "string",
      "minLength": 1
    },
    "sessionId": {
      "$ref": "#/components/schemas/SessionId"
    },
    "expiresAt": {
      "type": "string"
    },
    "format": {
      "$ref": "#/components/schemas/StreamFormat"
    },
    "include": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StreamInclude"
      }
    }
  },
  "required": [
    "url",
    "token",
    "sessionId",
    "expiresAt",
    "include"
  ],
  "additionalProperties": false
}

On this page