Some checks failed
Node.js CI / build (push) Failing after 2s
Node.js CI / e2e-tests (+(a11y|security|bugs)/**/*cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/!(o|d|m)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/+(o|d)*.cy.js) (push) Failing after 2s
Node.js CI / e2e-tests (features/**/m*.cy.js) (push) Failing after 2s
CodeQL / Analyze (javascript) (push) Failing after 1m15s
Security scan for docker image / build (push) Failing after 46s
86 lines
1.7 KiB
YAML
Executable File
86 lines
1.7 KiB
YAML
Executable File
openapi: 3.0.4
|
|
info:
|
|
description: Test API
|
|
version: v1
|
|
title: Test API
|
|
tags:
|
|
- name: Test
|
|
description: Test API
|
|
servers:
|
|
- url: /v1
|
|
paths:
|
|
/test:
|
|
post:
|
|
tags:
|
|
- Test
|
|
summary: Test endpoint
|
|
description: Test
|
|
operationId: postTest
|
|
responses:
|
|
'200':
|
|
description: Returns response
|
|
content:
|
|
application/xml:
|
|
schema:
|
|
$ref: '#/components/schemas/test'
|
|
components:
|
|
schemas:
|
|
test:
|
|
type: object
|
|
properties:
|
|
a:
|
|
type: string
|
|
b:
|
|
type: integer
|
|
c:
|
|
type: array
|
|
items:
|
|
$ref: '#/components/schemas/Things'
|
|
d:
|
|
type: array
|
|
items:
|
|
anyOf:
|
|
- $ref: '#/components/schemas/TextObject'
|
|
- $ref: '#/components/schemas/ImageObject'
|
|
|
|
|
|
Things:
|
|
type: object
|
|
oneOf:
|
|
- $ref: '#/components/schemas/TextObject'
|
|
- $ref: '#/components/schemas/ImageObject'
|
|
|
|
TextObject:
|
|
required:
|
|
- data
|
|
type: object
|
|
properties:
|
|
objectType:
|
|
type: string
|
|
example: Text
|
|
xml:
|
|
name: ObjectType
|
|
data:
|
|
type: string
|
|
example: This is a text
|
|
xml:
|
|
name: Data
|
|
description: Contains a text
|
|
|
|
ImageObject:
|
|
required:
|
|
- data
|
|
type: object
|
|
properties:
|
|
objectType:
|
|
type: string
|
|
example: image
|
|
xml:
|
|
name: ObjectType
|
|
data:
|
|
type: string
|
|
example: This is a image
|
|
xml:
|
|
name: Data
|
|
description: Contains a image
|