{
	"openapi": "3.1.0",
	"servers": [
		{
			"url": "http://localhost/v2"
		}
	],
	"security": [
		{
			"skipped": []
		}
	],
	"paths": {
		"/pathParam/{id}": {
			"get": {
				"operationId": "getPathParam",
				"summary": "Test path parameters",
				"parameters": [
					{
						"name": "id",
						"in": "path",
						"required": true,
						"schema": {
							"type": "integer"
						}
					}
				],
				"responses": {
					"200": {
						"description": "ok"
					}
				}
			}
		}
	}
}
