Apache Shiro · Schema

UserList

List of users

AuthenticationAuthorizationCryptographyJavaSecurityApacheOpen Source

Properties

Name Type Description
users array
total integer
View JSON Schema on GitHub

JSON Schema

apache-shiro-user-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-shiro/refs/heads/main/json-schema/apache-shiro-user-list-schema.json",
  "title": "UserList",
  "description": "List of users",
  "type": "object",
  "properties": {
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/User"
      }
    },
    "total": {
      "type": "integer"
    }
  }
}