This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
many2many.yaml
167 lines (163 loc) · 3.85 KB
/
many2many.yaml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
openapi: "3.0.0"
info:
version: 2.0.0
title: Blog prototype for test migrations. Modify columns, remove log_records table, added tags, post_tag tables
license:
name: MIT
servers:
- url: http://blog.dummy.io/v2
paths:
/posts:
get:
summary: dummy path
operationId: showDummy
responses:
'200':
$ref: '#/components/responses/PostListResponse'
components:
schemas:
Post:
x-table: posts
description: A blog post
required:
- id
- title
properties:
id:
type: integer
format: int64
readOnly: True
title:
type: string
tags:
type: array
items:
$ref: '#/components/schemas/Tag'
attaches:
type: array
items:
$ref: '#/components/schemas/Photo'
posts_attaches:
type: array
items:
$ref: '#/components/schemas/junction_PostsAttaches'
posts_gallery:
type: array
items:
$ref: '#/components/schemas/junction_PostsGallery'
posts_photos:
type: array
items:
$ref: '#/components/schemas/junction_Photos2Posts'
Tag:
x-table: tags
required:
- id
- name
properties:
id:
type: integer
format: int64
readOnly: True
name:
type: string
posts:
type: array
items:
$ref: '#/components/schemas/Post'
Photo:
x-table: photo
required:
- id
- filename
properties:
id:
type: integer
format: int64
readOnly: True
filename:
type: string
targets:
type: array
items:
$ref: '#/components/schemas/Post'
posts_attaches:
type: array
items:
$ref: '#/components/schemas/junction_PostsAttaches'
posts_gallery:
type: array
items:
$ref: '#/components/schemas/junction_PostsGallery'
photos_posts:
type: array
items:
$ref: '#/components/schemas/junction_Photos2Posts'
junction_Photos2Posts:
x-table: photos2posts
required:
- id
properties:
id:
type: integer
format: int64
readOnly: True
photo:
$ref: '#/components/schemas/Photo'
post:
$ref: '#/components/schemas/Post'
junction_PostsGallery:
x-table: posts_gallery
properties:
image:
$ref: '#/components/schemas/Photo'
article:
$ref: '#/components/schemas/Post'
is_cover:
type: bool
junction_PostsAttaches:
x-table: posts_attaches
properties:
id:
type: integer
format: int64
readOnly: True
attach:
$ref: '#/components/schemas/Photo'
target:
$ref: '#/components/schemas/Post'
_PostResource:
type: object
properties:
id:
type: integer
example: 1
type:
type: string
attributes:
$ref: '#/components/schemas/Post'
links:
type: object
relationships:
type: object
responses:
PostResponse:
description: Single post info
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/_PostResource'
PostListResponse:
description: Posts List
content:
application/vnd.api+json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/_PostResource'