Trimble · Schema

TopicUpdate

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

Name Type Description
title string
description string
topicStatus string
priority string
assignedTo string
dueDate string
View JSON Schema on GitHub

JSON Schema

trimble-topicupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TopicUpdate",
  "title": "TopicUpdate",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "topicStatus": {
      "type": "string",
      "enum": [
        "OPEN",
        "IN_PROGRESS",
        "RESOLVED",
        "CLOSED"
      ]
    },
    "priority": {
      "type": "string",
      "enum": [
        "CRITICAL",
        "HIGH",
        "NORMAL",
        "LOW"
      ]
    },
    "assignedTo": {
      "type": "string"
    },
    "dueDate": {
      "type": "string",
      "format": "date"
    }
  }
}