{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/log-api-log-data-object-schema.json", "title": "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" ] }