Service - Video Feed: Difference between revisions
Jump to navigation
Jump to search
Created page with "= 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 = <syntaxhighlight lang="JavaScript"> { objectType: "videoFeed", belongTo: { serviceTag: "user", objectType: "user" }, storageResources:{ "xxx":{ storageType: "graph", graphServerTag: "xx", } }, fieldNames: { videoFeedId: { type:..." |
No edit summary |
||
| Line 12: | Line 12: | ||
{ | { | ||
objectType: "videoFeed", | objectType: "videoFeed", | ||
belongTo: { | belongTo: { | ||
serviceTag: " | serviceTag: "Operation", | ||
objectType: " | objectType: "operation" | ||
}, | }, | ||
storageResources:{ | storageResources:{ | ||
Latest revision as of 01:06, 4 August 2026
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: "Operation",
objectType: "operation"
},
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",
}
}
]
}
}
]