---
title: "REST API JSON Schema"
description: "REST API JSON Schema"
keywords: "REST API JSON Schema"
url: "https://www.myrapidi.com/wiki/rest_api_json_schema"
locale: "en"
published: "2017-09-28T10:21:17Z"
modified: "2023-04-03T08:14:15Z"
---

**JSON Schema** &nbsp;is a vocabulary that allows you to&nbsp; **annotate** &nbsp;and&nbsp; **validate** &nbsp;JSON documents.

#### The JSON Schema

- describes your existing data format
- clear, human- and machine-readable documentation
- complete structural validation, useful for
  - automated testing
  - validating client-submitted data

#### Display the JSON Schema

```
curl -v -H "Accept: application/json" https://api.myrapidi.com/api/v2/schema
```

You can find more information on [http://json-schema.org](http://json-schema.org "JSON Schema")
