Service - Operation: Difference between revisions
Jump to navigation
Jump to search
Created page with "= Overview = A user can create or manage many operations, each operation has it's independent set of feeds. = Repository = ... = Object Schemas = ; Additional Information: Per Service Schemas == operation == <syntaxhighlight lang="JavaScript"> { objectType: "operation", canDelete: false, addOnDataStructure: [ { type: "propertyValue" }, { type:"versionedData", versionedDataLabel: "Detail", storageResourceTag : "myGraph", fieldNames: {..." |
No edit summary |
||
| Line 5: | Line 5: | ||
= Repository = | = Repository = | ||
.. | http://git.izara.io/SvenTheBarbarian/IzaraVideoFeeds-Operation-Operation | ||
= Object Schemas = | = Object Schemas = | ||
Latest revision as of 05:10, 4 August 2026
Overview
A user can create or manage many operations, each operation has it's independent set of feeds.
Repository
http://git.izara.io/SvenTheBarbarian/IzaraVideoFeeds-Operation-Operation
Object Schemas
- Additional Information
- Per Service Schemas
operation
{
objectType: "operation",
canDelete: false,
addOnDataStructure: [
{
type: "propertyValue"
},
{
type:"versionedData",
versionedDataLabel: "Detail",
storageResourceTag : "myGraph",
fieldNames: {
"operationName":{
type: "string",
requiredOnCreate: true,
canUpdate: true,
userCanUpdate: true,
},
}
},
],
storageResources: {
myGraph: {
storageType: "graph",
graphServerTag: "GraphHandler"
}
},
fieldNames: {
operationId: {
type: "string",
randomOnCreate: true,
storageResourceTags: ['myGraph']
},
},
identifiers: [
{
type: "identifier",
fieldName: "operationId"
}
]
}
Relationships
...