minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
807 Bytes
{
"openapi": "3.0.0",
"servers": [
{
"url": "http://localhost"
}
],
"paths": {
"/": {
"get": {
"operationId": "getRoot"
}
}
},
"components": {
"schemas": {
"MyBaseSchema": {
"properties": {
"name": {
"type": "string"
}
}
},
"MyRefSchema": {
"properties": {
"baseSchemas": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MyBaseSchema"
}
}
}
}
},
"requestBodies": {
"MyBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MyRefSchema"
}
}
}
}
}
}
}