{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommonBlock", "title": "CommonBlock", "type": "object", "description": "Shared attributes applied to all log records in this batch", "properties": { "timestamp": { "type": "integer", "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": "number" }, { "type": "boolean" } ] }, "example": { "customAttribute": "example_value" } } } }