minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
517 Bytes
{
"openapi": "3.0.0",
"servers": [
{
"url": "http://localhost"
}
],
"paths": {
"/": {
"get": {
"operationId": "getRoot"
}
}
},
"components": {
"schemas": {
"MyBaseSchema": {
"properties": {
"name": {
"type": "string"
}
}
},
"MyReferredSchema": {
"properties": {
"baseSchema": {
"$ref": "#/components/schemas/MyBaseSchema"
}
}
}
}
}
}