rapipdf
Version:
RapiPdf - Generate PDF from Open API spec
53 lines • 1.32 kB
JSON
{
"openapi": "3.0.2",
"info": {
"title": "example API",
"version": "TODO",
"description": "TODO"
},
"paths": {
"/groups/": {
"post": {
"operationId": "createGroup",
"parameters": [],
"requestBody": {
"content": {
"application/json": {
"schema": {
"required": [
"members"
],
"properties": {
"id": {
"type": "integer",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 100
},
"members": {
"type": "array",
"items": {
"required": [],
"properties": {
"id": {
"type": "integer",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 100
}
}
}
}
}
}
}
}
}
}
}
}
}