Gainsight · Schema

ObjectiveInput

Properties

Name Type Description
Name string
Description string
Status string
Priority string
DueDate string
View JSON Schema on GitHub

JSON Schema

gainsight-objectiveinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ObjectiveInput",
  "title": "ObjectiveInput",
  "type": "object",
  "required": [
    "Name"
  ],
  "properties": {
    "Name": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "Status": {
      "type": "string",
      "enum": [
        "Not Started",
        "In Progress",
        "Completed"
      ]
    },
    "Priority": {
      "type": "string"
    },
    "DueDate": {
      "type": "string",
      "format": "date"
    }
  }
}