Update: the api schema
This commit is contained in:
parent
84bf8b079a
commit
1f75b1bf17
1 changed files with 113 additions and 208 deletions
321
schema.yml
321
schema.yml
|
@ -123,162 +123,22 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
$ref: '#/components/schemas/CreatorDetails'
|
$ref: '#/components/schemas/CreatorDetails'
|
||||||
description: ''
|
description: ''
|
||||||
/api/images/:
|
|
||||||
get:
|
|
||||||
operationId: images_list
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
description: ''
|
|
||||||
post:
|
|
||||||
operationId: images_create
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
application/x-www-form-urlencoded:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
multipart/form-data:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
required: true
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'201':
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
description: ''
|
|
||||||
/api/images/{id}/:
|
|
||||||
get:
|
|
||||||
operationId: images_retrieve
|
|
||||||
parameters:
|
|
||||||
- in: path
|
|
||||||
name: id
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
description: A unique integer value identifying this image.
|
|
||||||
required: true
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
description: ''
|
|
||||||
put:
|
|
||||||
operationId: images_update
|
|
||||||
parameters:
|
|
||||||
- in: path
|
|
||||||
name: id
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
description: A unique integer value identifying this image.
|
|
||||||
required: true
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
application/x-www-form-urlencoded:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
multipart/form-data:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
required: true
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
description: ''
|
|
||||||
patch:
|
|
||||||
operationId: images_partial_update
|
|
||||||
parameters:
|
|
||||||
- in: path
|
|
||||||
name: id
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
description: A unique integer value identifying this image.
|
|
||||||
required: true
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/PatchedImage'
|
|
||||||
application/x-www-form-urlencoded:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/PatchedImage'
|
|
||||||
multipart/form-data:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/PatchedImage'
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/Image'
|
|
||||||
description: ''
|
|
||||||
delete:
|
|
||||||
operationId: images_destroy
|
|
||||||
parameters:
|
|
||||||
- in: path
|
|
||||||
name: id
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
description: A unique integer value identifying this image.
|
|
||||||
required: true
|
|
||||||
tags:
|
|
||||||
- images
|
|
||||||
security:
|
|
||||||
- cookieAuth: []
|
|
||||||
- jwtAuth: []
|
|
||||||
- {}
|
|
||||||
responses:
|
|
||||||
'204':
|
|
||||||
description: No response body
|
|
||||||
/api/posts/:
|
/api/posts/:
|
||||||
get:
|
get:
|
||||||
operationId: posts_list
|
operationId: posts_list_all
|
||||||
|
parameters:
|
||||||
|
- name: page
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: A page number within the paginated result set.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
- name: page_size
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: Number of results to return per page.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
tags:
|
tags:
|
||||||
- posts
|
- posts
|
||||||
security:
|
security:
|
||||||
|
@ -289,13 +149,11 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
$ref: '#/components/schemas/PaginatedPostPreviewList'
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/PostPreview'
|
|
||||||
description: ''
|
description: ''
|
||||||
/api/posts/{post_id}/:
|
/api/posts/{post_id}/:
|
||||||
get:
|
get:
|
||||||
operationId: posts_retrieve
|
operationId: posts_retrieve_by_id
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: post_id
|
name: post_id
|
||||||
|
@ -316,8 +174,20 @@ paths:
|
||||||
description: ''
|
description: ''
|
||||||
/api/posts/{source_site}/:
|
/api/posts/{source_site}/:
|
||||||
get:
|
get:
|
||||||
operationId: posts_list_2
|
operationId: posts_list_by_source
|
||||||
parameters:
|
parameters:
|
||||||
|
- name: page
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: A page number within the paginated result set.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
- name: page_size
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: Number of results to return per page.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
- in: path
|
- in: path
|
||||||
name: source_site
|
name: source_site
|
||||||
schema:
|
schema:
|
||||||
|
@ -333,19 +203,29 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
$ref: '#/components/schemas/PaginatedPostPreviewList'
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/PostPreview'
|
|
||||||
description: ''
|
description: ''
|
||||||
/api/posts/{source_site}/{creator_slug_or_id}/:
|
/api/posts/{source_site}/{creator_slug_or_id}/:
|
||||||
get:
|
get:
|
||||||
operationId: posts_list_3
|
operationId: posts_list_by_source_and_creator
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: creator_slug_or_id
|
name: creator_slug_or_id
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
|
- name: page
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: A page number within the paginated result set.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
- name: page_size
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: Number of results to return per page.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
- in: path
|
- in: path
|
||||||
name: source_site
|
name: source_site
|
||||||
schema:
|
schema:
|
||||||
|
@ -361,13 +241,11 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
$ref: '#/components/schemas/PaginatedPostPreviewList'
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/PostPreview'
|
|
||||||
description: ''
|
description: ''
|
||||||
/api/posts/{source_site}/{creator_slug_or_id}/{category}:
|
/api/posts/{source_site}/{creator_slug_or_id}/{category}:
|
||||||
get:
|
get:
|
||||||
operationId: posts_list_4
|
operationId: posts_list_by_source_creator_and_category
|
||||||
parameters:
|
parameters:
|
||||||
- in: path
|
- in: path
|
||||||
name: category
|
name: category
|
||||||
|
@ -379,6 +257,18 @@ paths:
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
required: true
|
required: true
|
||||||
|
- name: page
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: A page number within the paginated result set.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
- name: page_size
|
||||||
|
required: false
|
||||||
|
in: query
|
||||||
|
description: Number of results to return per page.
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
- in: path
|
- in: path
|
||||||
name: source_site
|
name: source_site
|
||||||
schema:
|
schema:
|
||||||
|
@ -394,21 +284,39 @@ paths:
|
||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
type: array
|
$ref: '#/components/schemas/PaginatedPostPreviewList'
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/PostPreview'
|
|
||||||
description: ''
|
description: ''
|
||||||
/api/protected/:
|
/api/posts/{source_site}/{creator_slug_or_id}/{post_id}/:
|
||||||
get:
|
get:
|
||||||
operationId: protected_retrieve
|
operationId: posts_retrieve_by_site_creator_id
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: creator_slug_or_id
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
- in: path
|
||||||
|
name: post_id
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
- in: path
|
||||||
|
name: source_site
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
tags:
|
tags:
|
||||||
- protected
|
- posts
|
||||||
security:
|
security:
|
||||||
- cookieAuth: []
|
- cookieAuth: []
|
||||||
- jwtAuth: []
|
- jwtAuth: []
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: No response body
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/Post'
|
||||||
|
description: ''
|
||||||
/api/user/profile/:
|
/api/user/profile/:
|
||||||
get:
|
get:
|
||||||
operationId: user_profile_retrieve
|
operationId: user_profile_retrieve
|
||||||
|
@ -559,9 +467,11 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
avatar_url:
|
avatar_url:
|
||||||
type: string
|
type: string
|
||||||
|
nullable: true
|
||||||
readOnly: true
|
readOnly: true
|
||||||
banner_url:
|
banner_url:
|
||||||
type: string
|
type: string
|
||||||
|
nullable: true
|
||||||
readOnly: true
|
readOnly: true
|
||||||
required:
|
required:
|
||||||
- avatar_url
|
- avatar_url
|
||||||
|
@ -571,27 +481,6 @@ components:
|
||||||
- name
|
- name
|
||||||
- slug
|
- slug
|
||||||
- source_site
|
- source_site
|
||||||
Image:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: integer
|
|
||||||
readOnly: true
|
|
||||||
title:
|
|
||||||
type: string
|
|
||||||
maxLength: 255
|
|
||||||
image:
|
|
||||||
type: string
|
|
||||||
format: uri
|
|
||||||
uploaded_at:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
readOnly: true
|
|
||||||
required:
|
|
||||||
- id
|
|
||||||
- image
|
|
||||||
- title
|
|
||||||
- uploaded_at
|
|
||||||
Logout:
|
Logout:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
@ -599,22 +488,29 @@ components:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
- refresh
|
- refresh
|
||||||
PatchedImage:
|
PaginatedPostPreviewList:
|
||||||
type: object
|
type: object
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- results
|
||||||
properties:
|
properties:
|
||||||
id:
|
count:
|
||||||
type: integer
|
type: integer
|
||||||
readOnly: true
|
example: 123
|
||||||
title:
|
next:
|
||||||
type: string
|
|
||||||
maxLength: 255
|
|
||||||
image:
|
|
||||||
type: string
|
type: string
|
||||||
|
nullable: true
|
||||||
format: uri
|
format: uri
|
||||||
uploaded_at:
|
example: http://api.example.org/accounts/?page=4
|
||||||
|
previous:
|
||||||
type: string
|
type: string
|
||||||
format: date-time
|
nullable: true
|
||||||
readOnly: true
|
format: uri
|
||||||
|
example: http://api.example.org/accounts/?page=2
|
||||||
|
results:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: '#/components/schemas/PostPreview'
|
||||||
PatchedUser:
|
PatchedUser:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
@ -644,8 +540,11 @@ components:
|
||||||
type: string
|
type: string
|
||||||
maxLength: 128
|
maxLength: 128
|
||||||
title:
|
title:
|
||||||
type: string
|
type: object
|
||||||
maxLength: 64
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
nullable: true
|
||||||
|
readOnly: true
|
||||||
description:
|
description:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
|
@ -660,6 +559,7 @@ components:
|
||||||
type: object
|
type: object
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
nullable: true
|
||||||
readOnly: true
|
readOnly: true
|
||||||
date:
|
date:
|
||||||
type: object
|
type: object
|
||||||
|
@ -699,7 +599,8 @@ components:
|
||||||
type: boolean
|
type: boolean
|
||||||
title:
|
title:
|
||||||
type: string
|
type: string
|
||||||
maxLength: 64
|
nullable: true
|
||||||
|
readOnly: true
|
||||||
description:
|
description:
|
||||||
type: string
|
type: string
|
||||||
nullable: true
|
nullable: true
|
||||||
|
@ -727,6 +628,9 @@ components:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
media_count:
|
||||||
|
type: integer
|
||||||
|
readOnly: true
|
||||||
media:
|
media:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
|
@ -745,6 +649,7 @@ components:
|
||||||
- date
|
- date
|
||||||
- description
|
- description
|
||||||
- media
|
- media
|
||||||
|
- media_count
|
||||||
- post_id
|
- post_id
|
||||||
- source_site
|
- source_site
|
||||||
- tags
|
- tags
|
||||||
|
|
Loading…
Add table
Reference in a new issue