Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add articleType and attachment for non-text articles #56

Merged
merged 2 commits into from
Jan 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion schema/articles.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = '1.1.0';
export const VERSION = '1.2.0';

export default {
properties: {
Expand Down Expand Up @@ -97,5 +97,11 @@ export default {
updatedAt: { type: 'date' },
},
},

articleType: { type: 'keyword' }, // TEXT, IMAGE, VIDEO, AUDIO

// There will be an attachment describing the file when articleType is not TEXT
attachmentUrl: { type: 'keyword' }, // URL stores the original file
attachmentHash: { type: 'keyword' }, // hash (Perceptual Hash) for identifying two similar file
},
};