v1.0.0
Example of an OpenAPI document different schemas
ID: getCircularReference
Get a parent
GET
/circular-reference
Example of a JSON object with a circular reference.
Responses
A parent with a childSchema JSON JSON
application/json
{
"id": "string",
"child": {
"id": "string",
"parent": "[Circular Reference]"
}
}
GET
/circular-reference
Samples
curl http://localhost/circular-reference \
--header 'Content-Type: application/json'
fetch('http://localhost/circular-reference', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://localhost/circular-reference",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://localhost/circular-reference"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: getMultipleLevels
Get the root object
GET
/multiple-levels
Example of a JSON object with multiple levels.
Responses
Example of a deeply nested structureSchema JSON JSON
application/json
{
"id": "string",
"level2": {
"id": "string",
"level3": {
"id": "string",
"level4": {
"id": "string",
"level5": {
"id": "string",
"level6": {
"id": "string",
"level7": {
"id": "string",
"level8": {
"id": "string",
"level9": {
"id": "string",
"level10": {
"id": "string",
"level11": {
"id": "string",
"level12": {
"id": "string",
"level13": {
"id": "string",
"level14": {
"id": "string",
"level15": {
"id": "string",
"level16": {
"id": "string",
"level17": {
"id": "string",
"level18": {
"id": "string",
"level19": {
"id": "string",
"level20": {
"id": "string",
"finalValue": "string"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
GET
/multiple-levels
Samples
curl http://localhost/multiple-levels \
--header 'Content-Type: application/json'
fetch('http://localhost/multiple-levels', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://localhost/multiple-levels",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://localhost/multiple-levels"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: getPrimitiveString
Get a string
GET
/primitive-string
Example of a JSON object with a string.
Responses
A stringSchema JSON JSON
application/json
"Hello, World!"
GET
/primitive-string
Samples
curl http://localhost/primitive-string \
--header 'Content-Type: application/json'
fetch('http://localhost/primitive-string', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://localhost/primitive-string",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://localhost/primitive-string"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: getPrimitiveNumber
Get a number
GET
/primitive-number
Example of a JSON object with a number.
Responses
A numberSchema JSON JSON
application/json
42
GET
/primitive-number
Samples
curl http://localhost/primitive-number \
--header 'Content-Type: application/json'
fetch('http://localhost/primitive-number', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://localhost/primitive-number",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://localhost/primitive-number"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())
ID: getPrimitiveBoolean
Get a boolean
GET
/primitive-boolean
Example of a JSON object with a boolean.
Responses
A booleanSchema JSON JSON
application/json
true
GET
/primitive-boolean
Samples
curl http://localhost/primitive-boolean \
--header 'Content-Type: application/json'
fetch('http://localhost/primitive-boolean', {
headers: {
'Content-Type': 'application/json'
}
})
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "http://localhost/primitive-boolean",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
import requests
url = "http://localhost/primitive-boolean"
headers = {"Content-Type": "application/json"}
response = requests.get(url, headers=headers)
print(response.json())