summaryrefslogtreecommitdiffstats
path: root/api/schemas
diff options
context:
space:
mode:
authorAndrew Godwin2022-12-11 11:22:06 -0700
committerAndrew Godwin2022-12-12 11:56:49 -0700
commitfc8a21fc5c6809ea115092eeec57e09e984cdd76 (patch)
tree9ca40c9d9b192040875b9442c965e855df3bd052 /api/schemas
parent3e062aed360ca54c26733b175d00d0d4671f3591 (diff)
downloadtakahe-fc8a21fc5c6809ea115092eeec57e09e984cdd76.tar.gz
takahe-fc8a21fc5c6809ea115092eeec57e09e984cdd76.tar.bz2
takahe-fc8a21fc5c6809ea115092eeec57e09e984cdd76.zip
More API read coverage
Diffstat (limited to 'api/schemas')
-rw-r--r--api/schemas/__init__.py108
1 files changed, 0 insertions, 108 deletions
diff --git a/api/schemas/__init__.py b/api/schemas/__init__.py
deleted file mode 100644
index cc0660c..0000000
--- a/api/schemas/__init__.py
+++ /dev/null
@@ -1,108 +0,0 @@
-from typing import Literal, Optional, Union
-
-from ninja import Field, Schema
-
-
-class Application(Schema):
- id: str
- name: str
- website: str | None
- client_id: str
- client_secret: str
- redirect_uri: str = Field(alias="redirect_uris")
-
-
-class CustomEmoji(Schema):
- shortcode: str
- url: str
- static_url: str
- visible_in_picker: bool
- category: str
-
-
-class AccountField(Schema):
- name: str
- value: str
- verified_at: str | None
-
-
-class Account(Schema):
- id: str
- username: str
- acct: str
- url: str
- display_name: str
- note: str
- avatar: str
- avatar_static: str
- header: str
- header_static: str
- locked: bool
- fields: list[AccountField]
- emojis: list[CustomEmoji]
- bot: bool
- group: bool
- discoverable: bool
- moved: Union[None, bool, "Account"]
- suspended: bool
- limited: bool
- created_at: str
- last_status_at: str | None = Field(...)
- statuses_count: int
- followers_count: int
- following_count: int
-
-
-class MediaAttachment(Schema):
- id: str
- type: Literal["unknown", "image", "gifv", "video", "audio"]
- url: str
- preview_url: str
- remote_url: str | None
- meta: dict
- description: str | None
- blurhash: str | None
-
-
-class StatusMention(Schema):
- id: str
- username: str
- url: str
- acct: str
-
-
-class StatusTag(Schema):
- name: str
- url: str
-
-
-class Status(Schema):
- id: str
- uri: str
- created_at: str
- account: Account
- content: str
- visibility: Literal["public", "unlisted", "private", "direct"]
- sensitive: bool
- spoiler_text: str
- media_attachments: list[MediaAttachment]
- mentions: list[StatusMention]
- tags: list[StatusTag]
- emojis: list[CustomEmoji]
- reblogs_count: int
- favourites_count: int
- replies_count: int
- url: str | None = Field(...)
- in_reply_to_id: str | None = Field(...)
- in_reply_to_account_id: str | None = Field(...)
- reblog: Optional["Status"] = Field(...)
- poll: None = Field(...)
- card: None = Field(...)
- language: None = Field(...)
- text: str | None = Field(...)
- edited_at: str | None
- favourited: bool | None
- reblogged: bool | None
- muted: bool | None
- bookmarked: bool | None
- pinned: bool | None