openapi: 3.1.0
info:
version: 1.0.0
title: aaa
summary: ""
servers:
- url: https://******.cybozu.com
description: ""
paths:
/k/v1/records.json:
get:
parameters:
- name: app
in: query
required: true
description: The ID of the kintone application
schema:
type: integer
summary: Your GET endpoint
operationId: receivedata
servers:
- url: https://******.cybozu.com
description: ""
responses:
"200":
description: A normal response
content:
application/json:
schema:
type: object
properties:
message:
type: string
components:
securitySchemes:
apikey:
type: apiKey
in: header
name: X-Cybozu-API-Token
security:
- apikey: []
I get an error message “In components section, schemas subsection is not an object”.
Please tell me how to resolve.