Service - Video Feed
Jump to navigation
Jump to search
Overview
One feed instance is a single input source, which can be broken up into multiple feedChunks.
Repository
https://bitbucket.org/izara-video-feed/izara-video-feed-feeds-video-feed
objectSchemas
{
objectType: "videoFeed",
belongTo: {
serviceTag: "user",
objectType: "user"
},
storageResources:{
"xxx":{
storageType: "graph",
graphServerTag: "xx",
}
},
fieldNames: {
videoFeedId: {
type: "string",
randomOnCreate: true
},
},
identifiers: [
{
fieldName: "videoFeedId"
},
]
},
- in future consider translation for videoFeed name, or use attributeTree/objectProperty structure
relationshipSchemas
[
{
"hasFeedChunk": {
storageResources:{
"xxx":{
storageType: "graph",
graphServerTag: "xx",
}
},
links: [
{
storageResourceTags: ["xxx"],
from: {
objType: {
serviceTag: "videoFeed",
objectType: "videoFeed"
},
linkType: "one",
},
to: {
objType: {
serviceTag: "feedChunk",
objectType: "feedChunk"
},
linkType: "many",
}
}
]
}
}
]