openapi: 3.0.0 info: description: 'This is the Ceramic API for working with streams and events ' version: 0.58.0 title: Ceramic Config Debug API license: name: MIT url: https://mit-license.org/ servers: - url: /ceramic tags: - name: Debug paths: /debug/heap: options: summary: cors responses: '200': description: cors tags: - Debug get: summary: Get the heap statistics of the Ceramic node responses: '200': description: success content: application/octet-stream: schema: type: string format: binary '400': description: bad request content: application/json: schema: $ref: '#/components/schemas/BadRequestResponse' '500': description: Internal server error content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' tags: - Debug components: schemas: BadRequestResponse: title: Response to a bad request (400) description: Bad request (input error) type: object required: - message properties: message: type: string description: Message describing the error ErrorResponse: title: Error response description: Error response type: object required: - message properties: message: type: string description: Error message