{
	events:{
		start:{
			se: {
				name:“Receive order”,
				type: message
			}
		},
		end:{
			ee: “End”
		}
	},
	activities:{
		a: {
			name: “Check credit”,
			activityType: call,
			markers: [subprocess]
		},
		b:{
			name:“Prepare and give order”
		}
	},
	flow:{
		f1: [se,a],
		f2: [a,b],
		f3: [b, ee]
	}
}