{
	"info": {
		"_postman_id": "94b69c3a-87d6-4425-9458-f4d276990431",
		"name": "Demo Data",
		"description": "Demo data API\n\nContact Support:\n Email: kai@kretschmann.consulting",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
	},
	"item": [
		{
			"name": "get random numbers",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{baseUrl}}/numbers/amount-{{amount}}/from-{{from}}/to-{{to}}",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"numbers",
						"amount-{{amount}}",
						"from-{{from}}",
						"to-{{to}}"
					]
				},
				"description": "get them"
			},
			"response": [
				{
					"name": "bad input parameter",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/numbers/amount-{{amount}}/from-{{from}}/to-{{to}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"numbers",
								"amount-{{amount}}",
								"from-{{from}}",
								"to-{{to}}"
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "text",
					"header": [
						{
							"key": "Content-Type",
							"value": "text/plain"
						}
					],
					"cookie": [],
					"body": ""
				},
				{
					"name": "the resulting random numbers",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/numbers/amount-{{amount}}/from-{{from}}/to-{{to}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"numbers",
								"amount-{{amount}}",
								"from-{{from}}",
								"to-{{to}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "[\n 1,\n 12,\n 7\n]"
				}
			]
		},
		{
			"name": "get lorem ipsum text",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{baseUrl}}/loremipsum/amount-{{amount}}",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"loremipsum",
						"amount-{{amount}}"
					]
				},
				"description": "get the dummy text"
			},
			"response": [
				{
					"name": "the resulting dummy text",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/loremipsum/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"loremipsum",
								"amount-{{amount}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "text",
					"header": [
						{
							"key": "Content-Type",
							"value": "text/plain"
						}
					],
					"cookie": [],
					"body": "Lorem ipsum dolor sit amet"
				},
				{
					"name": "bad input parameter",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/loremipsum/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"loremipsum",
								"amount-{{amount}}"
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "text",
					"header": [
						{
							"key": "Content-Type",
							"value": "text/plain"
						}
					],
					"cookie": [],
					"body": ""
				}
			]
		},
		{
			"name": "get random process names",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{baseUrl}}/processnames/amount-{{amount}}",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"processnames",
						"amount-{{amount}}"
					]
				},
				"description": "get the names"
			},
			"response": [
				{
					"name": "the resulting names",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/processnames/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"processnames",
								"amount-{{amount}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "[\n \"sshd\",\n \"mysql\"\n]"
				},
				{
					"name": "bad input parameter",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/processnames/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"processnames",
								"amount-{{amount}}"
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "text",
					"header": [
						{
							"key": "Content-Type",
							"value": "text/plain"
						}
					],
					"cookie": [],
					"body": ""
				}
			]
		},
		{
			"name": "get random ISBN numbers",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "{{baseUrl}}/isbn/amount-{{amount}}",
					"host": [
						"{{baseUrl}}"
					],
					"path": [
						"isbn",
						"amount-{{amount}}"
					]
				},
				"description": "get the ISBN numbers"
			},
			"response": [
				{
					"name": "bad input parameter",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/isbn/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"isbn",
								"amount-{{amount}}"
							]
						}
					},
					"status": "Bad Request",
					"code": 400,
					"_postman_previewlanguage": "text",
					"header": [
						{
							"key": "Content-Type",
							"value": "text/plain"
						}
					],
					"cookie": [],
					"body": ""
				},
				{
					"name": "the resulting numbers",
					"originalRequest": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "{{baseUrl}}/isbn/amount-{{amount}}",
							"host": [
								"{{baseUrl}}"
							],
							"path": [
								"isbn",
								"amount-{{amount}}"
							]
						}
					},
					"status": "OK",
					"code": 200,
					"_postman_previewlanguage": "json",
					"header": [
						{
							"key": "Content-Type",
							"value": "application/json"
						}
					],
					"cookie": [],
					"body": "[\n \"111-22-33333-44-5\"\n]"
				}
			]
		}
	],
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"id": "54c5a9e0-0e9c-42e2-88c8-1576015330a5",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"id": "239bc772-6911-4b9d-a147-c483b276dffe",
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	],
	"variable": [
		{
			"id": "8a27f498-04c6-4414-a525-293ea982700f",
			"key": "baseUrl",
			"value": "https://api.demodata.eu/v1"
		},
		{
			"id": "cddd6764-b0b7-43bf-86c6-239f8c53dc5b",
			"key": "amount",
			"value": "5"
		},
		{
			"id": "d8254070-b94f-4d5c-991d-1e89ea5eaffc",
			"key": "from",
			"value": ""
		},
		{
			"id": "de65266b-717b-4b3c-93a1-1b1fb38041c2",
			"key": "to",
			"value": ""
		}
	],
	"protocolProfileBehavior": {}
}