Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
{
  	"type": "service | daemon | custom | resource | static | config",
	"name": "itemName",
  	"description": "Item description",
  	"configuration": {
		...
	},
	"versions" : [
		{
			"version": "1",
			"profile": {
				//free object to add whatever you see fit
			}
			...
		}
	],
	"metadata": {
		"tags": [],
    	"attributes": {
			"att1": [],
			...
		},
    	"program": []
	},
 	"ui": {
		"main": "",
		"sub": ""
	},
	"settings": {
		"acl": {},
		"recipes" : [],
		"environments :{}
	},
	"src": {
		"provider": "github | bitbucket | bitbucket_enterprise | manual",
		...
	},
	"deploy": {
		"dev" : [
			{
				"version": "1"
				...
			}
		]
	}
}

...