我是 Open API 规范的新手(ia m 使用 3.0)。我正在使用 swagger Editor 在线工具,我收到一个奇怪的错误:
“不应该有额外的属性附加属性:Data1,Data2”
这是我正在使用的 YAML 文件的示例:
paths:
/api/assignment:
post:
tags:
- Assignment
summary: "Endpoint to create Resources in system"
description: "This endpoint will create blah blah"
operationId: CreateResource
parameters:
- name: assignment
in: body
description: "This is an object to be sent"
required: true
schema:
type: object
properties:
Ganesh:
type: integer
Test:
type: string
RefClaim:
Data1:
FirstName:
type: string
LastName:
type: string
Data2:
FirstName2:
type: string
LastName2:
type: string
我已经看到所有提出的问题并尝试过这些问题,但我无法得到答案。 注意:我使用的是 Open Api 规范 3.0.1