Skip to content

Commit

Permalink
Cleaned up the dictionary documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
joelrosario committed Oct 6, 2024
1 parent 5672d3e commit b9e1fa6
Showing 1 changed file with 0 additions and 53 deletions.
53 changes: 0 additions & 53 deletions documentation/service_virtualization_tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -924,59 +924,6 @@ Let's see how this works.
title: Employees
version: '1.0'
servers: []
paths:
'/employees':
patch:
summary: ''
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/EmployeeDetails'
responses:
'200':
description: Employee Created Response
content:
application/json:
schema:
$ref: '#/components/schemas/Employee'
components:
schemas:
Employee:
type: object
required:
- id
- name
- department
- designation
properties:
id:
type: integer
employeeCode:
type: string
name:
type: string
department:
type: string
designation:
type: string
EmployeeDetails:
type: object
required:
- name
- department
- designation
properties:
name:
type: string
employeeCode:
type: string
openapi: 3.0.0
info:
title: Employees
version: '1.0'
servers: []
paths:
'/employees':
patch:
Expand Down

0 comments on commit b9e1fa6

Please sign in to comment.