JSON/partner_sample.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
    "Sections":
    [
        {
            "title": "Network Settings",
            "comment": "",
            "SubSections":
            [
                {
                    "title": "OEM-Solution Management",
                    "comment": "Enter the settings needed for the OEM Management Application.\nThis information will be used for something really important, so make sure you double-check it for accuracy!",
                    "properties": {
                        "Number of Widgets": {
                            "type": "string",
                            "maxlength": 2
                        },
                        "Mgmt Server IPv4 Address": {
                            "type": "string",
                            "maxlength": 15
                        },
                      "Service Speed": {
                        "type": "list",
                        "data": [ "Slow", "Fast", "Ludicrous" ]
                      }
                    }
                },
                {
                    "title": "Management Network",
                    "comment": "Enter subnet information for the Management Network.",
                    "properties": {
                        "Mgmt Subnet IPv4 Address": {
                            "type": "string",
                            "maxlength": 15
                        },
                        "Mgmt Subnet Mask": {
                            "type": "string",
                            "maxlength": 15
                        },
                        "Mgmt Subnet Gateway": {
                            "type": "string",
                            "maxlength": 15
                        }
                    }
                }
            ]
        },
        {
            "title": "Contact Information",
            "comment": "Enter the primary contact information for support escalations.",
            "properties": {
                "Support Contact": {
                    "type": "string"
                },
                "Contact email": {
                    "type": "string",
                    "maxlength": 40
                },
                "Contact phone": {
                    "type": "string",
                    "maxlength": 20
                },
                "Contact Preference": {
                    "type": "list",
                    "data": ["phone", "email", "telepathy"]
                }
            }
        }
    ]
}