{
  "$id": "equipment_schema.json",
  "type": "object",
  "schema": "http://json-schema.org/draft-07/schema#",
  "translate": true,
  "dynamicfields": true,
  "properties": {
    "ph_request_type": {
      "type": "string",
      "description": "type of request (internal to adapter)",
      "default": "getEquipments",
      "enum": [
        "getEquipments"
      ],
      "external_name": "ph_request_type"
    },
    "id": {
      "type": "integer",
      "description": "the equipment unique identifier",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "id"
    },
    "name": {
      "type": "string",
      "description": "the name of equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "name"
    },
    "type": {
      "type": "string",
      "description": "the entity (container or shelf)",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "type"
    },
    "equipmenttype": {
      "type": "string",
      "description": "the type of equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "_type"
    },
    "vendor": {
      "type": "string",
      "description": "the vendor for the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "vendor"
    },
    "model": {
      "type": "string",
      "description": "the model for the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "model"
    },
    "serialNumber": {
      "type": "string",
      "description": "the serial number of the edquipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "serialNumber"
    },
    "status": {
      "type": "string",
      "description": "the status of the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "status"
    },
    "inServiceDate": {
      "type": "string",
      "description": "the date the equipment was placed in service",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "inServiceDate"
    },
    "dimensionUnits": {
      "type": "string",
      "description": "the units of the dimensions",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "dimensionUnits"
    },
    "depth": {
      "type": "number",
      "description": "the depth of the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "dimDepth"
    },
    "height": {
      "type": "number",
      "description": "the height of the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "dimHeight"
    },
    "width": {
      "type": "number",
      "description": "the width of the equipment",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "dimWidth"
    }
  },
  "definitions": {}
}