Service - Work In Progress Manager

From Izara Wiki
Revision as of 14:41, 21 January 2026 by Sven the Barbarian (talk | contribs) (Created page with "= Overview = Different types of WorkInProgress elements can be connected to a manufactureOperation. = Repository = .... = Object Schemas = ; Additional Information: Per Service Schemas == objType == === workInProgress === <syntaxhighlight lang="JavaScript"> { objectType: "workInProgress", canDelete: false, belongTo: { serviceTag: "Business", objectType: "business" }, addOnDataStructure: [], storageResources: { myGraph: { storageType: "graph",...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Overview

Different types of WorkInProgress elements can be connected to a manufactureOperation.

Repository

....

Object Schemas

Additional Information
Per Service Schemas

objType

workInProgress

{
	objectType: "workInProgress",
	canDelete: false,
	belongTo: { 
		serviceTag: "Business",
		objectType: "business"
	},
	addOnDataStructure: [],
	storageResources: {
		myGraph: {
			storageType: "graph",
			graphServerTag: "GraphHandler"
		}
		"dynamo": {
			"storageType": "dynamoDB",
			"tableName": "workInProgress",
		}  
    },
    fieldNames: {
		workInProgressId: {
			type: "string",
			randomOnCreate: true,
			storageResourceTags: ['myGraph', 'dynamo']
		},
    },
    identifiers: [
		{
			type: "identifier",
			fieldName: "workInProgressId"
		}
    ]
}

flowSchemas

Working documents

Work In Progress Manager