Gainsight · Schema

GainsightUser

Properties

Name Type Description
Gsid string User unique identifier
FirstName string First name
LastName string Last name
Email string Email address
UserType string User type
IsActive boolean Whether the user is active
LicenseType string License type assigned
Role string User role
SfdcUserId string Salesforce user ID
CreatedDate string
ModifiedDate string
View JSON Schema on GitHub

JSON Schema

gainsight-gainsightuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GainsightUser",
  "title": "GainsightUser",
  "type": "object",
  "properties": {
    "Gsid": {
      "type": "string",
      "description": "User unique identifier"
    },
    "FirstName": {
      "type": "string",
      "description": "First name"
    },
    "LastName": {
      "type": "string",
      "description": "Last name"
    },
    "Email": {
      "type": "string",
      "format": "email",
      "description": "Email address"
    },
    "UserType": {
      "type": "string",
      "description": "User type"
    },
    "IsActive": {
      "type": "boolean",
      "description": "Whether the user is active"
    },
    "LicenseType": {
      "type": "string",
      "description": "License type assigned"
    },
    "Role": {
      "type": "string",
      "description": "User role"
    },
    "SfdcUserId": {
      "type": "string",
      "description": "Salesforce user ID"
    },
    "CreatedDate": {
      "type": "string",
      "format": "date-time"
    },
    "ModifiedDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}