1 files changed, 6 insertions(+), 6 deletions(-)
M schema.bare
M schema.bare => schema.bare +6 -6
@@ 5,29 5,29 @@ type Message (MessageV1)
type MessageV1 {
created: Timestamp
generator: string
- feeds: []Feed
+ feeds: []FeedV1
}
-type Feed {
+type FeedV1 {
feed: string
title: string
description: string
link: string
updated: optional<Timestamp>
- items: []Item
+ items: []ItemV1
}
-type Item {
+type ItemV1 {
link: string
title: string
content: string
read: bool
favorite: bool
date: Timestamp
- media: optional<Media>
+ media: optional<MediaV1>
}
-type Media {
+type MediaV1 {
location: string
mimetype: string
length: i64