Service - Operation

From Izara Wiki
Revision as of 01:04, 4 August 2026 by Sven the Barbarian (talk | contribs) (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: {...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

{
	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

...

Working documents

Operation