Apache Shiro · Schema
Session
Shiro session information
AuthenticationAuthorizationCryptographyJavaSecurityApacheOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Session identifier |
| startTimestamp | string | Session creation time |
| lastAccessTime | string | Last access time |
| timeout | integer | Session timeout in milliseconds |
| host | string | Host of the session initiator |
| expired | boolean | Whether the session has expired |
JSON Schema
{
"$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-session-schema.json",
"title": "Session",
"description": "Shiro session information",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Session identifier"
},
"startTimestamp": {
"type": "string",
"format": "date-time",
"description": "Session creation time"
},
"lastAccessTime": {
"type": "string",
"format": "date-time",
"description": "Last access time"
},
"timeout": {
"type": "integer",
"format": "int64",
"description": "Session timeout in milliseconds"
},
"host": {
"type": "string",
"description": "Host of the session initiator"
},
"expired": {
"type": "boolean",
"description": "Whether the session has expired"
}
}
}