{
  "$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": "listGroups",
      "enum": [
        "listGroups",
        "createGroup",
        "showGroupDetails",
        "updateGroup",
        "deleteGroup",
        "listUsersInGroup",
        "addUserToGroup",
        "checkWhetherUserBelongsToGroup",
        "removeUserFromGroup"
      ],
      "external_name": "ph_request_type"
    },
    "domainId": {
      "type": "string",
      "description": "Filters the response by a domain ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "domain_id"
    },
    "groupId": {
      "type": "string",
      "description": "The group ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "group_id"
    },
    "passwordExpiresAt": {
      "type": "string",
      "description": "Filter results based on which user passwords have expired. The query should include an operator and a timestamp with a colon (:) separating the two, for example:",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "password_expires_at"
    },
    "userId": {
      "type": "string",
      "description": "The user ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "user_id"
    }
  },
  "definitions": {}
}