| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "openapi": "3.1.0",
- "info": {
- "title": "Pastebin API",
- "description": "Create pastes programmatically.",
- "version": "v1.0.0"
- },
- "servers": [
- {
- "url": "https://pastebin.example.com"
- }
- ],
- "paths": {
- "/pastes": {
- "post": {
- "operationId": "createPaste",
- "summary": "Create a new paste entry",
- "requestBody": {
- "required": true,
- "content": {
- "application/json": {
- "schema": {
- "type": "object",
- "properties": {
- "title": {
- "type": "string"
- },
- "content": {
- "type": "string"
- },
- "visibility": {
- "type": "string",
- "enum": [
- "public",
- "unlisted",
- "private"
- ]
- }
- },
- "required": [
- "title",
- "content",
- "visibility"
- ]
- }
- }
- }
- },
- "description": "Create a new paste entry"
- }
- }
- }
- }
|