/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
12.0-dev
zerver/openapi/testing.yaml
107 строк
3 KB
Anders Kaseorg
test_openapi: Make testing.yml a full conformant specification.
14 янв 2022, 01:34
14 янв 2022, 01:34
86c39e5
Код
Авторство
О чём код?
openapi: 3.0.1 info: title: Test API version: 1.0.0 servers: - url: "http://localhost:9991/api/v1" paths: /test1: get: responses: "200": description: OK content: application/json: schema: type: object additionalProperties: false properties: top_array: type: array items: oneOf: - type: object properties: obj: oneOf: - type: array items: type: string - type: object properties: str3: type: string - type: array items: type: object properties: str1: type: string str2: type: string /test2: get: responses: "200": description: OK content: application/json: schema: type: object additionalProperties: false properties: top_array: type: array items: oneOf: - type: object properties: obj: oneOf: - type: array items: type: string - type: object additionalProperties: false properties: str3: type: string - type: array items: type: object properties: str1: type: string str2: type: string /test3: get: responses: "200": description: OK content: application/json: schema: type: object additionalProperties: false properties: top_array: type: array items: oneOf: - type: object properties: obj: oneOf: - type: array items: type: string - type: object - type: array items: type: object properties: str1: type: string str2: type: string