-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yml
More file actions
67 lines (67 loc) · 1.85 KB
/
openapi.yml
File metadata and controls
67 lines (67 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
openapi: 3.0.0
components:
schemas:
Vehicle:
type: object
properties:
id:
type: string
description: ID único del vehículo
name:
type: string
description: Nombre del vehículo
model:
type: string
description: Modelo del vehículo
vehicle_class:
type: string
description: Clase del vehículo
manufacturer:
type: string
description: Fabricante del vehículo
length:
type: string
description: Longitud del vehículo
cost_in_credits:
type: string
description: Costo del vehículo en créditos
crew:
type: string
description: Tripulación del vehículo
passengers:
type: string
description: Capacidad de pasajeros
max_atmosphering_speed:
type: string
description: Velocidad máxima en la atmósfera
cargo_capacity:
type: string
description: Capacidad de carga del vehículo
consumables:
type: string
description: Tiempo de operación con suministros
films:
type: array
items:
type: string
description: Películas en las que aparece el vehículo
pilots:
type: array
items:
type: string
description: Pilotos del vehículo
url:
type: string
description: URL del recurso
created:
type: string
description: Fecha de creación del recurso
edited:
type: string
description: Fecha de última edición del recurso
securitySchemes: {}
info:
title: API de Vehículos SWAPI
description: Documentación de la API de Vehículos basada en Swagger
version: '1'
paths: {}