From 37b427445d3ec2890f629dabaa14587bcf48547a Mon Sep 17 00:00:00 2001 From: Ethan Date: Tue, 14 Apr 2026 11:50:37 -0700 Subject: [PATCH] Media Type Example Server-Sent Event Streams: data with format: int64 should be integer --- src/oas.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oas.md b/src/oas.md index 59d17a2247..dd58893f90 100644 --- a/src/oas.md +++ b/src/oas.md @@ -1632,7 +1632,7 @@ data: across two lines retry: 5 event: addInt64 -data: 1234.5678 +data: 1234 unknownField: this is ignored : This is a comment @@ -1644,7 +1644,7 @@ To more clearly see how this stream is handled, the following is the equivalent ```jsonl {"event": "addString", "data": "This data is formatted\nacross two lines", "retry": 5} -{"event": "addInt64", "data": "1234.5678"} +{"event": "addInt64", "data": "1234"} {"event": "addJSON", "data": "{\"foo\": 42}"} ```