28 lines
		
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			591 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| openapi: 3.0.0
 | |
| 
 | |
| info:
 | |
|   version: 0.0.1
 | |
|   title: Mocked Service
 | |
|   description: Service for creating your own mocked enpoints
 | |
| 
 | |
| tags:
 | |
|   - name: "MockedMessage"
 | |
|   - name: "MessageHistory"
 | |
| 
 | |
| paths:
 | |
|   /:
 | |
|     get:
 | |
|       summary: Returns homepage
 | |
|       tags:
 | |
|         - "MockedMessage"
 | |
|       description: Returns html file
 | |
|       operationId: showHome
 | |
|       responses:
 | |
|         "200":
 | |
|           description: Html file received
 | |
|           content:
 | |
|             text/html:
 | |
|               schema:
 | |
|                 type: document
 | |
|                 items:
 | |
|                   $ref: "/resources/static/html/mock.html" |