blob: 62dbec363ac1d996d435491d4c874e0de0cccc9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
name: "DriveFile"
desc:
ja: "ドライブのファイル。"
en: "A file of Drive."
props:
id:
type: "id"
optional: false
desc:
ja: "ファイルID"
en: "The ID of this file"
createdAt:
type: "date"
optional: false
desc:
ja: "アップロード日時"
en: "The upload date of this file"
userId:
type: "id(User)"
optional: false
desc:
ja: "所有者ID"
en: "The ID of the owner of this file"
user:
type: "entity(User)"
optional: true
desc:
ja: "所有者"
en: "The owner of this file"
name:
type: "string"
optional: false
desc:
ja: "ファイル名"
en: "The name of this file"
md5:
type: "string"
optional: false
desc:
ja: "ファイルのMD5ハッシュ値"
en: "The md5 hash value of this file"
type:
type: "string"
optional: false
desc:
ja: "ファイルの種類"
en: "The type of this file"
datasize:
type: "number"
optional: false
desc:
ja: "ファイルサイズ(bytes)"
en: "The size of this file (bytes)"
url:
type: "string"
optional: false
desc:
ja: "ファイルのURL"
en: "The URL of this file"
folderId:
type: "id(DriveFolder)"
optional: true
desc:
ja: "フォルダID"
en: "The ID of the folder of this file"
folder:
type: "entity(DriveFolder)"
optional: true
desc:
ja: "フォルダ"
en: "The folder of this file"
isSensitive:
type: "boolean"
optional: true
desc:
ja: "このメディアが「閲覧注意」(NSFW)かどうか"
en: "Whether this media is NSFW"
|