1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
openapi: "3.0.0"
info:
title: Read Only Write Only AllOf Test API
version: "1.0"
paths: {}
components:
schemas:
Timestamps:
type: object
properties:
created_at:
type: string
format: date-time
readOnly: true
updated_at:
type: string
format: date-time
readOnly: true
Credentials:
type: object
properties:
password:
type: string
writeOnly: true
api_key:
type: string
writeOnly: true
User:
allOf:
- $ref: "#/components/schemas/Timestamps"
- $ref: "#/components/schemas/Credentials"
- type: object
required:
- id
- name
properties:
id:
type: integer
readOnly: true
name:
type: string
email:
type: string
|