{
  "$id": "token_response_example",
  "type": "object",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "translate": true,
  "dynamicfields": false,
  "properties": {
    "ph_request_type": {
      "type": "string",
      "description": "type of request (internal to adapter)",
      "default": "getToken",
      "enum": [
        "getToken"
      ],
      "external_name": "ph_request_type"
    },
    "token": {
      "type": "string",
      "description": "the token returned from system",
      "parse": false,
      "encode": false,
      "placement": "BODY",
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "token"
    },
    "expires": {
      "type": "string",
      "description": "when the token will expire",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "expires"
    }
  },
  "definitions": {}
}
