1
Fork 0
mirror of https://github.com/thegeneralist01/twitter-openapi synced 2026-01-11 23:50:26 +01:00

Merge pull request #10 from thecodrr/feature/threads

add schema for self_thread in tweets
This commit is contained in:
ふぁ 2023-06-15 13:48:48 +09:00 committed by GitHub
commit 9f7d85172b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -200,6 +200,14 @@ components:
id_str:
type: string
pattern: "^[0-9]+$"
self_thread:
type: object
required:
- "id_str"
properties:
id_str:
type: string
pattern: "^[0-9]+$"
extended_entities:
$ref: "#/components/schemas/ExtendedEntities"