{
	"singletest" : "single action",
	"objecttest" : {
		"prob" : 0.10,
		"action" : "single action"
	},
	"listtest" : {
		"prob" : 0.25,
		"selector" : true,
		"actions" : [
			"single action",
			"second action",
			"third action"
		]
	},
	"arraytest" : [
		"single action",
		"another single action",
		"and a third one"
	],
  
	"complex array action" : [
		"simple action", 
    {
			"prob" : 0.33,
			"selector" : false,
			"actions" : [
				"nested action",
				"nested action 2"
			]
		}, 
    {
			"prob" : 0.5,
			"action" : "single action"
		}
	],
  
  	"complex array action2" : [
		"simple action", 
    {
			"prob" : 0.33,
			"selector" : false,
			"actions" : [
				"nested action",
        {
          "prob" : 0.33,
          "actions" : [
            "nested action",
            "nested action 2"
          ]
          
        }
			]
		}, 
    {
			"prob" : 0.5,
			"action" : "single action"
		}
	]
}

