Create test model
[sdc.git] / integration-tests / src / main / resources / import / tosca / models / init / README.md
1 This folder purpose is to contain any models that needs to be created during the first 
2 initialization of the system (install).
3
4 ```bash
5 ├── init
6 │   ├── <model_1_to_create>
7 │   │   ├── payload.json
8 │   │   ├── imports
9 │   │   │   ├── **/*.yaml
10 [...]
11 │   ├── <model_n_to_create>
12 │   │   ├── payload.json
13 │   │   ├── imports
14 │   │   │   ├── **/*.yaml
15 ```
16
17 The model folder name is irrelevant to indicate which model should be created. This information must
18 be provided in the payload.json contained within the model folder.
19
20 The content of the payload.json for the model with name "ETSI SOL001 v2.5.1" is expected to be:
21 ```json
22 {
23   "name": "ETSI SOL001 v2.5.1"
24 }
25 ```
26