Speakeasy · Schema

WorkspaceInviteResponse

A response for workspace user invite

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
relationship object
invite_link string
View JSON Schema on GitHub

JSON Schema

speakeasy-workspaceinviteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceInviteResponse",
  "title": "WorkspaceInviteResponse",
  "type": "object",
  "description": "A response for workspace user invite",
  "properties": {
    "relationship": {
      "type": "object",
      "properties": {
        "workspace_id": {
          "type": "string"
        },
        "user_id": {
          "type": "string"
        }
      },
      "required": [
        "workspace_id",
        "user_id"
      ]
    },
    "invite_link": {
      "nullable": true,
      "type": "string"
    }
  },
  "required": [
    "relationship"
  ]
}