-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathnotion_api_block_spec.yaml
154 lines (135 loc) · 2.91 KB
/
notion_api_block_spec.yaml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Notion API Objects
name: BlockBase
Extends: false
Parameters:
- object: "block"
- id: string
- type: string
- created_time: string
- last_edited_time: string
- has_children: boolean
name: ParagraphBlock
Extends: true
- name: BlockBase
Parameters:
- type: "paragraph"
- Definition:
- text: RichText[]
- children?: Block[]
name: HeadingOneBlock
Extends: true
- name: BlockBase
Parameters:
- type: "heading_1"
- Definition:
- text: RichText[]
- has_children: false
name: HeadingTwoBlock
Extends: true
- name: BlockBase
Parameters:
- type: "heading_2"
- Definition:
- text: RichText[]
- has_children: false
name: HeadingThreeBlock
Extends: true
- name: BlockBase
Parameters:
- type: "heading_3"
- Definition:
- text: RichText[]
- has_children: false
name: BulletedListItemBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "bulleted_list_item"
- Definition:
- text: RichText[]
- children?: Block[]
name: NumberedListItemBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "numbered_list_item"
- Definition:
- text: RichText[]
- children?: Block[]
name: ToDoBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "to_do"
- Definition:
- text: RichText[]
- checked: boolean
- children?: Block[]
name: ToggleBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "toggle"
- Definition:
- text: RichText[]
- children?: Block[]
name: ChildPageBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "child_page"
- Definition:
- title: "string"
name: EmbedBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "embed"
- Definition:
- url: "string"
- caption? : RichText[]
name: ExternalFileWithCaption
Extends: true
- name: ExternalFile
Parameters:
- caption?: RichText[]
name: FileWithCaption
Extends: true
- name: File
Parameters:
- caption?: RichText[]
name: ImageBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "image"
- image: ExternalFileWithCaption | FileWithCaption
name: VideoBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "video"
- image: ExternalFileWithCaption | FileWithCaption
name: FileBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "file"
- image: ExternalFileWithCaption | FileWithCaption
name: PDFBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "pdf"
- image: ExternalFileWithCaption | FileWithCaption
name: AudioBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "audio"
- image: ExternalFileWithCaption | FileWithCaption
name: UnsupportedBlock
Extends: true
- name: BaseBlock
Parameters:
- type: "unsupported"