{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-structure/log-api-log-data-object-structure.json", "name": "LogDataObject", "description": "A batch of log records with optional shared attributes", "type": "object", "properties": { "common": { "$ref": "#/components/schemas/CommonBlock" }, "logs": { "type": "array", "description": "Array of individual log records", "items": { "$ref": "#/components/schemas/LogRecord" }, "example": [ { "timestamp": 1718153645993, "message": "Operation completed successfully", "level": "FATAL", "logtype": "standard", "attributes": { "customAttribute": "example_value" } } ] } }, "required": [ "logs" ] }