Limble CMMS · Schema

Vendor

Limble CMMS Vendor object schema

CMMSMaintenance ManagementAsset ManagementManufacturingFacility ManagementWork Orders

Properties

Name Type Description
meta object
vendorID integer
name string
email string
phone string
contact string
address string
locationID integer
startedOn integer
lastEdited integer
image array
View JSON Schema on GitHub

JSON Schema

limble-cmms-vendor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.limblecmms.com/schemas/vendor",
  "title": "Vendor",
  "description": "Limble CMMS Vendor object schema",
  "type": "object",
  "properties": {
    "meta": {
      "type": "object",
      "properties": {
        "fields": {
          "type": "string"
        }
      }
    },
    "vendorID": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone": {
      "type": "string"
    },
    "contact": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "locationID": {
      "type": "integer"
    },
    "startedOn": {
      "type": "integer"
    },
    "lastEdited": {
      "type": "integer"
    },
    "image": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "fileName": {
            "type": "string"
          },
          "link": {
            "type": "string",
            "format": "uri"
          }
        }
      }
    }
  }
}