Trimble · Schema

ProjectCreate

ConstructionTransportationGeospatialGPSMappingBIMFleet ManagementCollaborationAgriculture

Properties

Name Type Description
name string
description string
type string
location string
View JSON Schema on GitHub

JSON Schema

trimble-projectcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectCreate",
  "title": "ProjectCreate",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "CONSTRUCTION",
        "INFRASTRUCTURE",
        "ENGINEERING",
        "OTHER"
      ]
    },
    "location": {
      "type": "string"
    }
  }
}