JSON sample file
json_structured_events_sample.json
1.0 KB
application/json
SHA256 verified
File details
Filename
json_structured_events_sample.jsonSize1.0 KB (1057 bytes)
MIME type
application/jsonExtension
.jsonSHA256
61f85bd1b166c0827c7ba29982a51b57862deb340be1c5d2f38ac3b5178805a5Download commands
Use in scripts and tests
curl -L -o json_structured_events_sample.json \
https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/
wget -O json_structured_events_sample.json \
https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/
import requests
url = "https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/"
resp = requests.get(url)
with open("json_structured_events_sample.json", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("json_structured_events_sample.json", buf);
# Download and verify SHA256
curl -L -o json_structured_events_sample.json https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/
echo "61f85bd1b166c0827c7ba29982a51b57862deb340be1c5d2f38ac3b5178805a5 json_structured_events_sample.json" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/log/json/json_structured_events_sample.json/").content
assert hashlib.sha256(data).hexdigest() == "61f85bd1b166c0827c7ba29982a51b57862deb340be1c5d2f38ac3b5178805a5"
More JSON files
Other JSON Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
json_sample_file_1MB.json |
1.0 MB | c503bbb92e3e48fa… |
Download |
json_sample_file_200KB.json |
201.4 KB | 1416394492fc67e3… |
Download |
json_sample_file_500KB.json |
507.8 KB | 3472105a4d8399a0… |
Download |
json_sample_file_50KB.json |
56.5 KB | f27996624ff23ab2… |
Download |
Learn more