Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- swagger: '2.0'
- info:
- version: 0.0.0
- title: ObjectSpec
- definitions:
- ObjectMeta:
- properties:
- createdOn:
- type: string
- format: date-time
- readOnly: true
- Object:
- allOf:
- - $ref: '#/definitions/ObjectMeta'
- type: object
- properties:
- objectId:
- type: string
- paths:
- '/objects':
- get:
- operationId: getObject
- produces:
- - application/json
- consumes:
- - application/json
- responses:
- '200':
- description: successful operation
- schema:
- $ref: '#/definitions/Object'
Advertisement
Add Comment
Please, Sign In to add comment