Gainsight · Schema

GoalMetricInput

Properties

Name Type Description
Name string
CurrentValue number
TargetValue number
Unit string
View JSON Schema on GitHub

JSON Schema

gainsight-goalmetricinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoalMetricInput",
  "title": "GoalMetricInput",
  "type": "object",
  "required": [
    "Name",
    "TargetValue"
  ],
  "properties": {
    "Name": {
      "type": "string"
    },
    "CurrentValue": {
      "type": "number"
    },
    "TargetValue": {
      "type": "number"
    },
    "Unit": {
      "type": "string"
    }
  }
}