/
servlamo
/
cue
Обзор
Документация
Войти
/
servlamo
/
cue
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
encoding/openapi/testdata/refs.json
60 строк
1 KB
Marcel van Lohuizen
encoding/openapi: update tests
18 июн 2020, 19:06
18 июн 2020, 19:06
d3c0096
Код
Авторство
О чём код?
{ "openapi": "3.0.0", "info": { "title": "test", "version": "v1" }, "paths": {}, "components": { "schemas": { "BaseType": { "type": "object", "required": [ "b" ], "properties": { "b": { "type": "string" } } }, "Keep": { "type": "object", "required": [ "excludedStruct", "excludedInt" ], "properties": { "excludedStruct": { "description": "This comment is included", "type": "object", "required": [ "A" ], "properties": { "A": { "type": "integer" } } }, "excludedInt": { "type": "integer" } } }, "Type": { "type": "object", "properties": { "a": { "type": "string" } }, "allOf": [ { "$ref": "#/components/schemas/BaseType" } ] } } } }