Trimble · Schema

TopicCreate

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

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

JSON Schema

trimble-topiccreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TopicCreate",
  "title": "TopicCreate",
  "type": "object",
  "required": [
    "title",
    "topicType",
    "topicStatus"
  ],
  "properties": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "topicType": {
      "type": "string",
      "enum": [
        "ISSUE",
        "REQUEST_FOR_INFORMATION",
        "CLASH",
        "COMMENT",
        "TASK"
      ]
    },
    "topicStatus": {
      "type": "string",
      "enum": [
        "OPEN",
        "IN_PROGRESS"
      ],
      "default": "OPEN"
    },
    "priority": {
      "type": "string",
      "enum": [
        "CRITICAL",
        "HIGH",
        "NORMAL",
        "LOW"
      ],
      "default": "NORMAL"
    },
    "assignedTo": {
      "type": "string"
    },
    "dueDate": {
      "type": "string",
      "format": "date"
    },
    "label": {
      "type": "string"
    }
  }
}