minhhungg's picture
feat: initial upload for AutoRestTest Track A datasets
6c50d1f
Raw
History Blame Contribute Delete
1.01 kB
{
"openapi": "3.0.0",
"info": {
"title": "title",
"version": "0.1"
},
"servers": [
{
"url": "http://localhost"
}
],
"paths": {
"/": {
"get": {
"operationId": "getRoot",
"responses": {
"default": {
"description": "Default response"
}
}
}
}
},
"components": {
"schemas": {
"SimpleString": {
"type": "string",
"maxLength": 10
},
"SimpleStringS": {
"items": {
"$ref": "#/components/schemas/SimpleString"
}
},
"SimpleStringSAlias": {
"$ref": "#/components/schemas/SimpleStringS"
},
"Person": {
"type": "object",
"properties": {
"firstNames": {
"items": {
"$ref": "#/components/schemas/SimpleString"
}
},
"lastNames": {
"$ref": "#/components/schemas/SimpleStringS"
}
}
}
}
}
}