blob: 7b631f3e59e8854152f732a66b821509844bdce0 [file] [log] [blame]
{
"responses": {
"petResponse": {
"description": "pet response",
"schema": {
"$ref": "#/definitions/pet"
}
},
"stringResponse": {
"descripion": "string response",
"schema": {
"type": "string"
}
},
"circularB": {
"$ref": "#/responses/circularC"
},
"circularC": {
"$ref": "../all-the-things.json#/responses/circularA"
},
"anotherPet": {
"$ref": "#/responses/petResponse"
}
},
"definitions": {
"pet": {
"required": ["id", "name"],
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
"tag": {
"type": "string"
}
}
}
}
}