{
  "$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": "getEntriesForServiceId",
      "enum": [
        "getEntriesForServiceId",
        "getServiceEventCounts",
        "getServiceEvent"
      ],
      "external_name": "ph_request_type"
    },
    "filterCategory": {
      "type": "array",
      "description": "(Optional) Category filter values as a comma separated list. Filter values are provided in the response. **Example**: foo, bar",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "filter_category"
    },
    "filterEventName": {
      "type": "array",
      "description": "(Optional) Event filter values as a comma separated list. Filter values are provided in the response. **Example**: foo, bar",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "filter_eventName"
    },
    "filterUserName": {
      "type": "array",
      "description": "(Optional) User filter values as a comma separated list. Filter values are provided in the response. **Example**: foo, bar",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "filter_userName"
    }
  },
  "definitions": {}
}