{
	"operationId": "createStream",
	"summary": "Create a new Stream",
	"tags": ["Streams"],
	"requestBody": {
		"description": "Stream to Create",
		"required": true,
		"content": {
			"application/json": {
				"schema": "{{schema.CreateStream}}"
			}
		}
	},
	"responses": {
		"201": {
			"description": "201 response",
			"content": {
				"application/json": {
					"schema": {
						"required": ["result"],
						"properties": {
							"result": {
								"$ref": "#/components/schemas/StreamObject"
							}
						}
					},
					"examples": {
						"default": {
							"value": {
								"result": "TODO"
							}
						}
					}
				}
			}
		}
	}
}