{
  "$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": "createTask",
      "enum": [
        "createTask",
        "listTasks",
        "showTaskDetails"
      ],
      "external_name": "ph_request_type"
    },
    "sortDir": {
      "type": "string",
      "description": "Sorts the response by a set of one or more sort direction and attribute\n(sort_key) combinations. A valid value for the sort direction is\nasc (ascending) or desc (descendi...(description truncated)",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "sort_dir"
    },
    "sortKey": {
      "type": "string",
      "description": "Sorts the response by one of the following attributes: created_at,\nexpires_at, status, type, updated_at.  Default is\ncreated_at.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "sort_key"
    },
    "taskId": {
      "type": "string",
      "description": "The identifier for the task, a UUID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "task_id"
    }
  },
  "definitions": {}
}