{
  "openapi": "3.0.4",
  "info": {
    "title": "Authentication.v1",
    "description": "Authentication and Authorization. Authentication is provided via JWT tokens with TokenService. Authorization is done via AccessRoles defined in users at UserService.<br /><br />This endpoint collection is transcoded from the gRPC service contract. The Protobuf file can be retrieved via gRPC Server Reflection on the base URI. Use of gRPC is more preferable because of better performance and native streaming capabilities",
    "termsOfService": "https://www.bergstein.com/privacy-policy-2/",
    "contact": {
      "name": "support@bergstein.com",
      "url": "https://bergstein.com",
      "email": "support@bergstein.com"
    },
    "version": "v1.4.0.0"
  },
  "paths": {
    "/authentication_module/v1/module_info": {
      "get": {
        "tags": [
          "AuthenticationModuleInfoService"
        ],
        "operationId": "GETauthentication_module_v1_module_info",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ModuleInfoReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/feature_flags": {
      "get": {
        "tags": [
          "AuthenticationModuleInfoService"
        ],
        "operationId": "GETauthentication_module_v1_feature_flags",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.FeatureFlagsReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/release_notes": {
      "get": {
        "tags": [
          "AuthenticationModuleInfoService"
        ],
        "operationId": "GETauthentication_module_v1_release_notes",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ReleaseNotesReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/health_checks": {
      "get": {
        "tags": [
          "AuthenticationModuleInfoService"
        ],
        "operationId": "GETauthentication_module_v1_health_checks",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthChecksReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/permission": {
      "get": {
        "tags": [
          "PermissionService"
        ],
        "operationId": "GETauthentication_module_v1_permission",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/permission/{id}": {
      "get": {
        "tags": [
          "PermissionService"
        ],
        "operationId": "GETauthentication_module_v1_permission_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/role_permission": {
      "post": {
        "tags": [
          "RolePermissionService"
        ],
        "operationId": "POSTauthentication_module_v1_role_permission",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRolePermissionRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRolePermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "RolePermissionService"
        ],
        "operationId": "GETauthentication_module_v1_role_permission",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.roleId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Role.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permissionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.Permission.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.roleId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Role.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permissionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.Permission.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListRolePermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "RolePermissionService"
        ],
        "operationId": "PATCHauthentication_module_v1_role_permission",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRolePermissionRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRolePermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/role_permission/{id}": {
      "get": {
        "tags": [
          "RolePermissionService"
        ],
        "operationId": "GETauthentication_module_v1_role_permission_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetRolePermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "RolePermissionService"
        ],
        "operationId": "DELETEauthentication_module_v1_role_permission_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/role": {
      "post": {
        "tags": [
          "RoleService"
        ],
        "operationId": "POSTauthentication_module_v1_role",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRoleRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "RoleService"
        ],
        "operationId": "GETauthentication_module_v1_role",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "RoleService"
        ],
        "operationId": "PATCHauthentication_module_v1_role",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRoleRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/role/{id}": {
      "get": {
        "tags": [
          "RoleService"
        ],
        "operationId": "GETauthentication_module_v1_role_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "RoleService"
        ],
        "operationId": "DELETEauthentication_module_v1_role_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/access": {
      "post": {
        "tags": [
          "TokenService"
        ],
        "operationId": "POSTauthentication_module_v1_token_access",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateAccessTokenRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateAccessTokenReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/refresh": {
      "post": {
        "tags": [
          "TokenService"
        ],
        "operationId": "POSTauthentication_module_v1_token_refresh",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RefreshTokenRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RefreshTokenReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "TokenService"
        ],
        "operationId": "GETauthentication_module_v1_token_refresh",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.issuedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.expirationDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.sessionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.clientId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userAgent",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.ipAddress",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.revoked",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.revokedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.rotatedFromId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.issuedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.expirationDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.sessionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.clientId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userAgent",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.ipAddress",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.revoked",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.revokedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.rotatedFromId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRefreshTokenReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/refresh/{id}": {
      "get": {
        "tags": [
          "TokenService"
        ],
        "operationId": "GETauthentication_module_v1_token_refresh_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserRefreshTokenReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "TokenService"
        ],
        "operationId": "DELETEauthentication_module_v1_token_refresh_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/refresh_for_user": {
      "get": {
        "tags": [
          "TokenService"
        ],
        "operationId": "GETauthentication_module_v1_token_refresh_for_user",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.issuedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.expirationDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.sessionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.clientId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userAgent",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.ipAddress",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.revoked",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.revokedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.rotatedFromId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.issuedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.expirationDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.sessionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.clientId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userAgent",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.ipAddress",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.revoked",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.revokedDateTime",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.rotatedFromId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRefreshTokenForUserReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/refresh/revoke/{id}": {
      "patch": {
        "tags": [
          "TokenService"
        ],
        "operationId": "PATCHauthentication_module_v1_token_refresh_revoke_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RevokeUserRefreshTokenRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/token/refresh/revoke_for_user/{id}": {
      "patch": {
        "tags": [
          "TokenService"
        ],
        "operationId": "PATCHauthentication_module_v1_token_refresh_revoke_for_user_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RevokeUserRefreshTokenForUserRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user_permission": {
      "post": {
        "tags": [
          "UserPermissionService"
        ],
        "operationId": "POSTauthentication_module_v1_user_permission",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserPermissionRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "UserPermissionService"
        ],
        "operationId": "GETauthentication_module_v1_user_permission",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permissionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.permission.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permissionId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.Key",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.permission.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "UserPermissionService"
        ],
        "operationId": "PATCHauthentication_module_v1_user_permission",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPermissionRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user_permission/{id}": {
      "get": {
        "tags": [
          "UserPermissionService"
        ],
        "operationId": "GETauthentication_module_v1_user_permission_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserPermissionReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "UserPermissionService"
        ],
        "operationId": "DELETEauthentication_module_v1_user_permission_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user_role": {
      "post": {
        "tags": [
          "UserRoleService"
        ],
        "operationId": "POSTauthentication_module_v1_user_role",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRoleRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "UserRoleService"
        ],
        "operationId": "GETauthentication_module_v1_user_role",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.roleId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.role.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.userId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.roleId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.user.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.user.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.role.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "UserRoleService"
        ],
        "operationId": "PATCHauthentication_module_v1_user_role",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRoleRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user_role/{id}": {
      "get": {
        "tags": [
          "UserRoleService"
        ],
        "operationId": "GETauthentication_module_v1_user_role_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserRoleReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "UserRoleService"
        ],
        "operationId": "DELETEauthentication_module_v1_user_role_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user": {
      "post": {
        "tags": [
          "UserService"
        ],
        "operationId": "POSTauthentication_module_v1_user",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.NewUserReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "UserService"
        ],
        "operationId": "GETauthentication_module_v1_user",
        "parameters": [
          {
            "name": "paging.pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.pageNumber",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          },
          {
            "name": "paging.includeTotalSize",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "descending",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "order.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "order.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.id",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.name",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.firstName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.middleName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.lastName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.email",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.mustResetPassword",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          },
          {
            "name": "filter.audit.CreatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.CreatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedByUserName",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "filter.audit.UpdatedDateTimeUtc",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "patch": {
        "tags": [
          "UserService"
        ],
        "operationId": "PATCHauthentication_module_v1_user",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user/{id}": {
      "get": {
        "tags": [
          "UserService"
        ],
        "operationId": "GETauthentication_module_v1_user_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "UserService"
        ],
        "operationId": "DELETEauthentication_module_v1_user_{id}",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user/password": {
      "patch": {
        "tags": [
          "UserService"
        ],
        "operationId": "PATCHauthentication_module_v1_user_password",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPasswordRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Empty"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    },
    "/authentication_module/v1/user/event/user_password_updated": {
      "post": {
        "tags": [
          "UserService"
        ],
        "operationId": "POSTauthentication_module_v1_user_event_user_password_updated",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.SubscribeOnUserPasswordUpdate"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPasswordUpdatedReply"
                }
              }
            }
          },
          "default": {
            "description": "Error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Google.Rpc.Status"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.FeatureFlag": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.FeatureFlagsReply": {
        "type": "object",
        "properties": {
          "featureFlags": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.FeatureFlag"
            }
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthCheck": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "status": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthStatus"
          },
          "moduleName": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthChecksReply": {
        "type": "object",
        "properties": {
          "healthChecks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthCheck"
            }
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.HealthStatus": {
        "enum": [
          "UNKNOWN",
          "HEALTHY",
          "DEGRADED",
          "UNHEALTHY",
          "HEALTHCHECKDISABLED"
        ],
        "type": "string"
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.Module": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "version": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.Version"
          },
          "shortDescription": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "protobuf": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ProtoBuf"
            }
          },
          "openapi": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ModuleInfoReply": {
        "type": "object",
        "properties": {
          "module": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.Module"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ProtoBuf": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "contents": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.ReleaseNotesReply": {
        "type": "object",
        "properties": {
          "releaseNote": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.ModuleInfo.Protos.V1.Version": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "major": {
            "type": "integer",
            "format": "int32"
          },
          "minor": {
            "type": "integer",
            "format": "int32"
          },
          "revision": {
            "type": "integer",
            "format": "int32"
          },
          "build": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit": {
        "type": "object",
        "properties": {
          "CreatedByUserName": {
            "type": "string"
          },
          "CreatedDateTimeUtc": {
            "type": "string"
          },
          "UpdatedByUserName": {
            "type": "string"
          },
          "UpdatedDateTimeUtc": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateAccessTokenReply": {
        "type": "object",
        "properties": {
          "accessToken": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Token"
          },
          "refreshToken": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Token"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateAccessTokenRequest": {
        "type": "object",
        "properties": {
          "userName": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRolePermissionReply": {
        "type": "object",
        "properties": {
          "rolePermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRolePermissionRequest": {
        "type": "object",
        "properties": {
          "RolePermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRoleReply": {
        "type": "object",
        "properties": {
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateRoleRequest": {
        "type": "object",
        "properties": {
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserPermissionReply": {
        "type": "object",
        "properties": {
          "userPermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserPermissionRequest": {
        "type": "object",
        "properties": {
          "userPermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRequest": {
        "type": "object",
        "properties": {
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRoleReply": {
        "type": "object",
        "properties": {
          "userRole": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.CreateUserRoleRequest": {
        "type": "object",
        "properties": {
          "userRole": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetPermissionReply": {
        "type": "object",
        "properties": {
          "permission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Permission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetRolePermissionReply": {
        "type": "object",
        "properties": {
          "rolePermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetRoleReply": {
        "type": "object",
        "properties": {
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserPermissionReply": {
        "type": "object",
        "properties": {
          "userPermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserRefreshTokenReply": {
        "type": "object",
        "properties": {
          "userRefreshToken": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRefreshToken"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserReply": {
        "type": "object",
        "properties": {
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.GetUserRoleReply": {
        "type": "object",
        "properties": {
          "userRole": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListPermissionReply": {
        "type": "object",
        "properties": {
          "permissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Permission"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListRolePermissionReply": {
        "type": "object",
        "properties": {
          "rolePermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListRoleReply": {
        "type": "object",
        "properties": {
          "roles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserPermissionReply": {
        "type": "object",
        "properties": {
          "userPermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRefreshTokenForUserReply": {
        "type": "object",
        "properties": {
          "userRefreshTokens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRefreshToken"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRefreshTokenReply": {
        "type": "object",
        "properties": {
          "userRefreshTokens": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRefreshToken"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserReply": {
        "type": "object",
        "properties": {
          "users": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.ListUserRoleReply": {
        "type": "object",
        "properties": {
          "userRoles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
            }
          },
          "paging": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.NewUserReply": {
        "type": "object",
        "properties": {
          "temporaryPassword": {
            "type": "string"
          },
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Permission": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "Key": {
            "type": "string"
          },
          "userPermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
            }
          },
          "rolePermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
            }
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RefreshTokenReply": {
        "type": "object",
        "properties": {
          "accessToken": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Token"
          },
          "refreshToken": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Token"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RefreshTokenRequest": {
        "type": "object",
        "properties": {
          "userName": {
            "type": "string"
          },
          "refreshToken": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RevokeUserRefreshTokenForUserRequest": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RevokeUserRefreshTokenRequest": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "userRoles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
            }
          },
          "rolePermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
            }
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "roleId": {
            "type": "string"
          },
          "Role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          },
          "permissionId": {
            "type": "string"
          },
          "Permission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Permission"
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.SubscribeOnUserPasswordUpdate": {
        "type": "object",
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Token": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string"
          },
          "issuedDateTime": {
            "type": "string"
          },
          "expirationDateTime": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRolePermissionReply": {
        "type": "object",
        "properties": {
          "rolePermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRolePermissionRequest": {
        "type": "object",
        "properties": {
          "rolePermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.RolePermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRoleReply": {
        "type": "object",
        "properties": {
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateRoleRequest": {
        "type": "object",
        "properties": {
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPasswordRequest": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "oldPassword": {
            "type": "string"
          },
          "newPassword": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPermissionReply": {
        "type": "object",
        "properties": {
          "userPermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserPermissionRequest": {
        "type": "object",
        "properties": {
          "userPermission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserReply": {
        "type": "object",
        "properties": {
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRequest": {
        "type": "object",
        "properties": {
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRoleReply": {
        "type": "object",
        "properties": {
          "userRole": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UpdateUserRoleRequest": {
        "type": "object",
        "properties": {
          "userRole": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "middleName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "mustResetPassword": {
            "type": "boolean"
          },
          "userPermissions": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission"
            }
          },
          "userRoles": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole"
            }
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPasswordUpdatedReply": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserPermission": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "userId": {
            "type": "string"
          },
          "permissionId": {
            "type": "string"
          },
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          },
          "permission": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Permission"
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRefreshToken": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "userId": {
            "type": "string"
          },
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          },
          "issuedDateTime": {
            "type": "string"
          },
          "expirationDateTime": {
            "type": "string"
          },
          "sessionId": {
            "type": "string"
          },
          "clientId": {
            "type": "string"
          },
          "userAgent": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "revoked": {
            "type": "boolean"
          },
          "revokedDateTime": {
            "type": "string"
          },
          "rotatedFromId": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.UserRole": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "userId": {
            "type": "string"
          },
          "roleId": {
            "type": "string"
          },
          "user": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.User"
          },
          "role": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Authentication.Protos.V1.Role"
          },
          "audit": {
            "$ref": "#/components/schemas/Bergstein.Digi.Shared.Interfaces.PrintManager.Audit.Protos.V1.Audit"
          }
        },
        "additionalProperties": false
      },
      "Bergstein.Digi.Shared.Interfaces.PrintManager.Paging.Protos.V1.PagingReply": {
        "type": "object",
        "properties": {
          "totalSize": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      },
      "Google.Protobuf.WellKnownTypes.Any": {
        "required": [
          "@type"
        ],
        "type": "object",
        "properties": {
          "@type": {
            "type": "string"
          }
        },
        "additionalProperties": {
          "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Value"
        }
      },
      "Google.Protobuf.WellKnownTypes.Empty": {
        "type": "object",
        "additionalProperties": false
      },
      "Google.Protobuf.WellKnownTypes.ListValue": {
        "type": "object",
        "properties": {
          "values": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Value"
            },
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Google.Protobuf.WellKnownTypes.NullValue": {
        "enum": [
          0
        ],
        "type": "integer",
        "format": "int32"
      },
      "Google.Protobuf.WellKnownTypes.Struct": {
        "type": "object",
        "properties": {
          "fields": {
            "type": "object",
            "additionalProperties": {
              "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Value"
            },
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "Google.Protobuf.WellKnownTypes.Value": {
        "type": "object",
        "properties": {
          "nullValue": {
            "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.NullValue"
          },
          "hasNullValue": {
            "type": "boolean",
            "readOnly": true
          },
          "numberValue": {
            "type": "number",
            "format": "double"
          },
          "hasNumberValue": {
            "type": "boolean",
            "readOnly": true
          },
          "stringValue": {
            "type": "string",
            "nullable": true
          },
          "hasStringValue": {
            "type": "boolean",
            "readOnly": true
          },
          "boolValue": {
            "type": "boolean"
          },
          "hasBoolValue": {
            "type": "boolean",
            "readOnly": true
          },
          "structValue": {
            "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Struct"
          },
          "listValue": {
            "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.ListValue"
          },
          "kindCase": {
            "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Value.KindOneofCase"
          }
        },
        "additionalProperties": false
      },
      "Google.Protobuf.WellKnownTypes.Value.KindOneofCase": {
        "enum": [
          0,
          1,
          2,
          3,
          4,
          5,
          6
        ],
        "type": "integer",
        "format": "int32"
      },
      "Google.Rpc.Status": {
        "type": "object",
        "properties": {
          "code": {
            "type": "integer",
            "format": "int32"
          },
          "message": {
            "type": "string"
          },
          "details": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Google.Protobuf.WellKnownTypes.Any"
            }
          }
        },
        "additionalProperties": false
      }
    },
    "securitySchemes": {
      "Bearer": {
        "type": "http",
        "description": "Please enter a valid token!",
        "scheme": "Bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "security": [
    {
      "Bearer": [ ]
    }
  ],
  "tags": [
    {
      "name": "AuthenticationModuleInfoService"
    },
    {
      "name": "PermissionService"
    },
    {
      "name": "RolePermissionService"
    },
    {
      "name": "RoleService"
    },
    {
      "name": "TokenService"
    },
    {
      "name": "UserPermissionService"
    },
    {
      "name": "UserRoleService"
    },
    {
      "name": "UserService"
    }
  ]
}