{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamCloudEventContext", "title": "EventStreamCloudEventContext", "type": "object", "description": "Information about the context in which the event was produced. This may include things like\nHTTP request details, client information, connection information, etc.\n\nNote: This field may not be present on all events, depending on the event type and the\ncontext in which it was generated.", "additionalProperties": false, "required": [ "tenant" ], "properties": { "client": { "$ref": "#/components/schemas/EventStreamCloudEventContextClient" }, "connection": { "$ref": "#/components/schemas/EventStreamCloudEventContextConnection" }, "request": { "$ref": "#/components/schemas/EventStreamCloudEventContextRequest" }, "tenant": { "$ref": "#/components/schemas/EventStreamCloudEventContextTenant" } } }