1
Fork 0
mirror of https://github.com/thegeneralist01/twitter-openapi synced 2026-01-11 23:50:26 +01:00
Signed-off-by: ふぁ <yuki@yuki0311.com>
This commit is contained in:
ふぁ 2023-04-26 20:22:49 +09:00
parent 8594830875
commit 01eee8484d
No known key found for this signature in database
GPG key ID: 83A8A5E74872A8AA
7 changed files with 1330 additions and 4 deletions

60
dist/dart/schemas/post.yaml vendored Normal file
View file

@ -0,0 +1,60 @@
components:
schemas:
CreateRetweet:
properties:
result:
items:
$ref: '#/components/schemas/Retweet'
type: object
required:
- result
CreateTweet:
properties:
result:
items:
$ref: ./tweet.yaml#/components/schemas/Tweet
type: object
required:
- result
DeleteRetweet:
properties:
result:
items:
$ref: '#/components/schemas/Retweet'
type: object
required:
- result
DeleteTweet:
properties:
nullable: true
type: object
FavoriteTweet:
properties:
favorite_tweet:
type: string
required:
- favorite_tweet
Retweet:
properties:
legacy:
items:
properties:
full_text:
type: string
type: object
rest_id:
type: string
required:
- rest_id
- legacy
UnfavoriteTweet:
properties:
unfavorite_tweet:
type: string
required:
- unfavorite_tweet
info:
title: Twitter OpenAPI
version: 0.0.1
openapi: 3.0.3
paths: {}