{
  "$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": "listUsers",
      "enum": [
        "listUsers",
        "createUser",
        "showUserDetails",
        "updateUser",
        "deleteUser",
        "listGroupsToWhichAUserBelongs",
        "listProjectsForUser",
        "changePasswordForUser"
      ],
      "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"
    },
    "idpId": {
      "type": "string",
      "description": "Filters the response by an identity provider ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "idp_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"
    },
    "protocolId": {
      "type": "string",
      "description": "Filters the response by a protocol ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "protocol_id"
    },
    "uniqueId": {
      "type": "string",
      "description": "Filters the response by a unique ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "unique_id"
    },
    "userId": {
      "type": "string",
      "description": "The user ID.",
      "parse": false,
      "encode": false,
      "encrypt": {
        "type": "AES",
        "key": ""
      },
      "external_name": "user_id"
    }
  },
  "definitions": {}
}