{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MonitoredApplication", "description": "MonitoredApplication schema from Palo Alto Networks Autonomous DEM API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/autonomous-dem-api-monitored-application-schema.json", "type": "object", "properties": { "app_id": { "type": "string", "description": "Unique application identifier." }, "name": { "type": "string", "description": "Application name." }, "category": { "type": "string", "description": "Application category (e.g., Collaboration, Productivity, Security)." }, "type": { "type": "string", "enum": [ "saas", "internal" ], "description": "Whether the application is a SaaS or internal application." }, "url": { "type": "string", "description": "Primary URL for the application." }, "test_count": { "type": "integer", "description": "Number of synthetic tests configured for this application." }, "monitored_users": { "type": "integer", "description": "Number of users with active monitoring for this application." }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when the application was added to monitoring." } } }