Format guide
JSON Schema
A machine-readable contract for validating the canonical dataset.
application/schema+json; charset=utf-8
Published files
1 stable URL
| Path | Media type | Size |
|---|---|---|
/v1/schemas/dataset.schema.json | application/schema+json; charset=utf-8 | 6.0 KB |
Use it
Request an asset
Browser
const response = await fetch("/v1/schemas/dataset.schema.json");
const payload = await response.json();curl
curl -fsS https://payloads.mochavi.com/v1/schemas/dataset.schema.jsonPython
from urllib.request import urlopen
with urlopen("https://payloads.mochavi.com/v1/schemas/dataset.schema.json") as response:
payload = response.read()