{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/appdynamics/refs/heads/main/json-structure/appdynamics-analytics-event-structure.json", "name": "AppDynamics Analytics Event", "description": "Schema representing a custom analytics event and its schema definition for the AppDynamics Events Service.", "type": "object", "properties": { "schemaName": { "description": "The name of the custom event schema.", "minLength": 1, "maxLength": 255, "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$", "type": "string" }, "schema": { "$ref": "#/$defs/EventSchema", "description": "The schema definition for this event type.", "type": null }, "events": { "description": "Array of event data objects conforming to the schema.", "items": { "type": "object" }, "type": "array" } } }