{
  "$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": "createVariable",
      "enum": [
        "createVariable",
        "listVariables",
        "updateVariables",
        "deleteVariables"
      ],
      "external_name": "ph_request_type"
    },
    "filterWorkspaceName": {
      "type": "string",
      "description": "Optional The name of one workspace to list variables for. If included, you must also include the organization name filter.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "filter[workspace][name]"
    },
    "filterOrganizationName": {
      "type": "string",
      "description": "Optional The name of the organization that owns the desired workspace. If included, you must also included the workspace name filter.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "filter[organization][name]"
    },
    "variableId": {
      "type": "string",
      "description": "The ID of the variable to be deleted.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "variable_id"
    }
  },
  "definitions": {}
}