feat: Generate Schema Files - 18113073 (no-changelog) (#12927)

Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
Jon
2025-01-30 14:59:04 +00:00
committed by GitHub
parent cdfa22593b
commit 9d027339fd
661 changed files with 76670 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
{
"type": "object",
"properties": {
"text": {
"type": "string"
},
"edit_history_tweet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"id": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,8 @@
{
"type": "object",
"properties": {
"deleted": {
"type": "boolean"
}
}
}

View File

@@ -0,0 +1,56 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"edit_history_tweet_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"text": {
"type": "string"
},
"public_metrics": {
"type": "object",
"properties": {
"retweet_count": {
"type": "integer"
},
"reply_count": {
"type": "integer"
},
"like_count": {
"type": "integer"
},
"quote_count": {
"type": "integer"
},
"bookmark_count": {
"type": "integer"
},
"impression_count": {
"type": "integer"
}
},
"required": [
"retweet_count",
"reply_count",
"like_count",
"quote_count",
"bookmark_count",
"impression_count"
]
},
"author_id": {
"type": "string"
}
},
"required": [
"id",
"edit_history_tweet_ids",
"text"
]
}

View File

@@ -0,0 +1,14 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"username": {
"type": "string"
}
}
}