IP_13_Playing_Cards/docs/openapi.yml

25 lines
556 B
YAML
Raw Normal View History

2023-11-07 19:39:30 +01:00
openapi: 3.0.0
info:
title: Card Recognition API
version: 1.0.0
paths:
/cardinfo:
get:
summary: Alle Karten Informationen
responses:
'200':
description: Erfolgreiche Anfrage
/card/{id}:
get:
2023-11-09 11:10:35 +01:00
summary: Ruft Informationen von einer bestimmte Karte
2023-11-07 19:39:30 +01:00
parameters:
- in: path
name: id
required: true
schema:
type: integer
responses:
'200':
description: Erfolgreiche Anfrage
'404':
2023-11-09 11:10:35 +01:00
description: Karte nicht gefunden