Merge · Schema

SharedCredentialGroup

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
origin_company_id stringnull Unique identifier for the company of the Registered User
origin_company_name stringnull The human readable name of the company of the Registered User
custom_groupings object Optional identifier / grouping that you can provide to further segment Registered Users
View JSON Schema on GitHub

JSON Schema

merge-sharedcredentialgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharedCredentialGroup",
  "title": "SharedCredentialGroup",
  "type": "object",
  "properties": {
    "origin_company_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "Unique identifier for the company of the Registered User"
    },
    "origin_company_name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The human readable name of the company of the Registered User"
    },
    "custom_groupings": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Optional identifier / grouping that you can provide to further segment Registered Users"
    }
  }
}