Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

requestBody:
required: true
content:
application/json:
schema:
type: string
examples:
       dataSample:
$ref: 'components.yml#/components/examples/dataSample'

Examples for composite components:

DataAccessRequest:
type: object
properties:
operation:
type: string
enum: [ read, create, update, delete ]
example: create
dataType:
type: string
example: dataTypeValue
data:
type: string
example: data
cmHandleProperties:
$ref: '#/components/schemas/cmHandleProperties'

cmHandleProperties:
type: object
additionalProperties:
type: string
example:
- prop1: value
prop2: value


Schema Type for Request and Response


At present most of the requests are defined as schema type String for Request body json. These could be updated to object type. This will introduce below changes:

...