diff options
author | 2021-05-15 09:23:32 -0700 | |
---|---|---|
committer | 2021-05-15 09:23:32 -0700 | |
commit | d18843ab949e803e25c48f514b4e25244477c731 (patch) | |
tree | 7330e16f6228b990cee0ad58c74fafeaeaaa59c8 /src/models/tests | |
parent | d11ac3c9ba709eb4a0691224601088252e49b61d (diff) | |
download | notion-d18843ab949e803e25c48f514b4e25244477c731.tar.gz notion-d18843ab949e803e25c48f514b4e25244477c731.tar.zst notion-d18843ab949e803e25c48f514b4e25244477c731.zip |
pages
Diffstat (limited to 'src/models/tests')
-rw-r--r-- | src/models/tests/page.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/models/tests/page.json b/src/models/tests/page.json new file mode 100644 index 0000000..572bb75 --- /dev/null +++ b/src/models/tests/page.json @@ -0,0 +1,58 @@ +{ + "object": "page", + "id": "b55c9c91-384d-452b-81db-d1ef79372b75", + "created_time": "2020-03-17T19:10:04.968Z", + "last_edited_time": "2020-03-17T21:49:37.913Z", + "archived": false, + "parent": { + "type": "workspace" + }, + "properties": { + "Name": { + "type": "title", + "id": "some-property-id", + "title": [ + { + "type": "text", + "plain_text": "Stuff", + "text": { + "content": "Stuff" + } + }, + { + "type": "text", + "plain_text": "some", + "text": { + "content": "some" + }, + "annotations": { + "italic": true + } + } + ] + }, + "Description": { + "type": "rich_text", + "id": "some-property-id2", + "rich_text": [ + { + "type": "text", + "plain_text": "Stuff", + "text": { + "content": "Stuff" + } + }, + { + "type": "text", + "plain_text": "some", + "text": { + "content": "some" + }, + "annotations": { + "italic": true + } + } + ] + } + } +} |