Skip to content

Instantly share code, notes, and snippets.

@chamons
Created May 27, 2021 17:35
Show Gist options
  • Save chamons/56487bf0c7d0aa7c96927d377976f644 to your computer and use it in GitHub Desktop.
Save chamons/56487bf0c7d0aa7c96927d377976f644 to your computer and use it in GitHub Desktop.
{
"openapi": "3.0.1",
"info": {
"title": "API",
"description": "API",
"version": "v1.0"
},
"paths": {
"/api/requests/custom-files": {
"post": {
"operationId": "LaunchFileTask",
"requestBody": {
"content": {
"multipart/form-data": {
"schema": {
"type": "object",
"properties": {
"DataWindow": {
"type": "integer",
"format": "int32",
"nullable": true
}
}
}
}
}
},
"responses": {
"200": {
"description": "Success"
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment