Apache Tomcat · JSON Structure

Tomcat Application Structure

Apache Tomcat deployed web application status structure

Type: Properties: 0
Application ServerJavaServlet ContainerWeb ServerOpen SourceApache

TomcatApplication is a JSON Structure definition published by Apache Tomcat.

Meta-schema:

JSON Structure

Raw ↑
{
  "name": "TomcatApplication",
  "description": "Apache Tomcat deployed web application status structure",
  "properties": [
    { "name": "path", "type": "string", "required": true, "description": "Application context path (e.g., /myapp)" },
    { "name": "status", "type": "string", "required": true, "description": "running | stopped | unknown" },
    { "name": "sessions", "type": "integer", "required": false, "description": "Active session count" },
    { "name": "name", "type": "string", "required": false, "description": "Application directory or WAR name" }
  ]
}