Gainsight · Schema

OpportunityRecord

Properties

Name Type Description
Gsid string Opportunity unique identifier
Name string Opportunity name
CompanyId string Associated company Gsid
CompanyName string Associated company name
BookingType string Booking type
Amount number Opportunity amount
Currency string Currency code
CloseDate string Expected close date
Stage string Opportunity stage
Probability number Win probability percentage
OwnerId string Opportunity owner user ID
OwnerName string Owner name
ARR number Annual recurring revenue
Term integer Contract term in months
RenewalDate string Renewal date
IsClosed boolean Whether the opportunity is closed
IsWon boolean Whether the opportunity was won
SfdcOpportunityId string Salesforce opportunity ID
CreatedDate string
ModifiedDate string
View JSON Schema on GitHub

JSON Schema

gainsight-opportunityrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OpportunityRecord",
  "title": "OpportunityRecord",
  "type": "object",
  "properties": {
    "Gsid": {
      "type": "string",
      "description": "Opportunity unique identifier"
    },
    "Name": {
      "type": "string",
      "description": "Opportunity name"
    },
    "CompanyId": {
      "type": "string",
      "description": "Associated company Gsid"
    },
    "CompanyName": {
      "type": "string",
      "description": "Associated company name"
    },
    "BookingType": {
      "type": "string",
      "enum": [
        "New Business",
        "Renewal",
        "Upsell",
        "Downsell",
        "Churn"
      ],
      "description": "Booking type"
    },
    "Amount": {
      "type": "number",
      "description": "Opportunity amount"
    },
    "Currency": {
      "type": "string",
      "description": "Currency code"
    },
    "CloseDate": {
      "type": "string",
      "format": "date",
      "description": "Expected close date"
    },
    "Stage": {
      "type": "string",
      "description": "Opportunity stage"
    },
    "Probability": {
      "type": "number",
      "minimum": 0,
      "maximum": 100,
      "description": "Win probability percentage"
    },
    "OwnerId": {
      "type": "string",
      "description": "Opportunity owner user ID"
    },
    "OwnerName": {
      "type": "string",
      "description": "Owner name"
    },
    "ARR": {
      "type": "number",
      "description": "Annual recurring revenue"
    },
    "Term": {
      "type": "integer",
      "description": "Contract term in months"
    },
    "RenewalDate": {
      "type": "string",
      "format": "date",
      "description": "Renewal date"
    },
    "IsClosed": {
      "type": "boolean",
      "description": "Whether the opportunity is closed"
    },
    "IsWon": {
      "type": "boolean",
      "description": "Whether the opportunity was won"
    },
    "SfdcOpportunityId": {
      "type": "string",
      "description": "Salesforce opportunity ID"
    },
    "CreatedDate": {
      "type": "string",
      "format": "date-time"
    },
    "ModifiedDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}