mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 13:43:09 +00:00
d6f6fa6b6c
Bring in example taxonomy and gitignore changes from topic branch for WTD-614 into open-source-friendly branch, in preparation to merge.
29 lines
810 B
JSON
29 lines
810 B
JSON
{
|
|
"name": "Example taxonomy",
|
|
"description": "Example illustrating the addition of a static top-level hierarchy",
|
|
"extensions": {
|
|
"roots": [
|
|
{
|
|
"id": "exampleTaxonomy",
|
|
"model": {
|
|
"type": "folder",
|
|
"name": "Stub Subsystems",
|
|
"composition": [
|
|
"examplePacket0",
|
|
"examplePacket1",
|
|
"examplePacket2"
|
|
]
|
|
}
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"provides": "modelService",
|
|
"type": "provider",
|
|
"implementation": "ExampleTaxonomyModelProvider.js",
|
|
"depends": [ "$q" ]
|
|
}
|
|
]
|
|
|
|
}
|
|
} |