{
  "$id": "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": "getForEndpoint",
      "enum": [
        "getForEndpoint",
        "postForEndpoint",
        "getGETForEndpoint",
        "patchForEndpoint",
        "putForEndpoint",
        "deleteForEndpoint",
        "getForEndpointByMacAddress",
        "patchForEndpointByMacAddress",
        "putForEndpointByMacAddress",
        "deleteForEndpointByMacAddress"
      ],
      "external_name": "ph_request_type"
    },
    "calculateCount": {
      "type": "boolean",
      "description": "Whether to calculate the total item count",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "calculate_count"
    },
    "endpointId": {
      "type": "number",
      "description": "Numeric ID of the endpoint",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "endpoint_id"
    },
    "macAddress": {
      "type": "string",
      "description": "Unique mac_address of the endpoint",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "mac_address"
    }
  },
  "definitions": {}
}