{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MBeanDetail", "title": "MBeanDetail", "type": "object", "properties": { "objectName": { "type": "string", "example": "example_value" }, "className": { "type": "string", "example": "example_value" }, "description": { "type": "string", "example": "A sample description." }, "attributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "description": { "type": "string" }, "readable": { "type": "boolean" }, "writable": { "type": "boolean" } } }, "example": [] }, "operations": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "returnType": { "type": "string" }, "parameters": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "type": { "type": "string" }, "description": { "type": "string" } } } }, "impact": { "type": "string", "enum": [ "ACTION", "ACTION_INFO", "INFO", "UNKNOWN" ] } } }, "example": [] }, "notifications": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "description": { "type": "string" }, "notifTypes": { "type": "array", "items": { "type": "string" } } } }, "example": [] } } }