{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-structure/log-api-common-block-structure.json", "name": "CommonBlock", "description": "Shared attributes applied to all log records in this batch", "type": "object", "properties": { "timestamp": { "type": "int32", "description": "Default Unix timestamp in milliseconds for all logs in the batch", "example": 1718153645993 }, "attributes": { "type": "object", "description": "Key-value attributes applied to all logs in this batch", "additionalProperties": { "oneOf": [ { "type": "string" }, { "type": "double" }, { "type": "boolean" } ] }, "example": { "customAttribute": "example_value" } } } }