All notable changes to the cc.json
-schema will be documented in this file.
- An additional optional property
edges
has been added to thecc.json
- Defines an array of edges between buildings
- Use SCMLogParser (SVN or Git) to generate edges
export interface Edge {
fromNodeName: string
toNodeName: string
attributes: KeyValuePair
}
- An additional optional property
fixedPosition
has been added to thecc.json
- Property can be set to direct children of the root-folder
- Define
left
andtop
as the top-left corner of the folder - Define
width
andheight
for the length in x and y-direction - Folders can't overlap and must be defined in range of
[0-100]
export interface Fixed {
left: number
top: number
width: number
height: number
}
- An additional property
checksum
has been added to thecc.json
- All known properties are wrapped in the
data
property checksum
contains the MD5 hash calculated through the content ofdata
{
"checksum": "a30746ae9d919c891992ab1dea88471b",
"data": {
"projectName": "bar",
"apiVersion": "1.3",
"nodes": [],
"edges": [],
"attributeTypes": {},
"blacklist": []
}
}