Estou tomando um erro no editor:
'Schemas with "type array", requires a sibling "items: " field'
Alguém tem alguma dica?
definitions:
Cliente:
type: object
properties:
id:
type: integer
format: int64
example: 234
titular:
type: string
example: Janete Silva
cpf:
type: string
minLength: 11
maxLength: 11
example: 01234567890
senha:
type: string
format: password
example: senha123
contas:
type: array
items:
$ref: '#/definitions/Conta'