-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
101 lines (101 loc) · 2.56 KB
/
Copy pathsample.json
File metadata and controls
101 lines (101 loc) · 2.56 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"testMIB": {
"name": "testMIB",
"oid": "1.3.6.1.4.1.99999",
"class": "moduleidentity",
"revisions": [
"2026-01-01 00:00"
],
"lastupdated": "202601010000Z",
"organization": "Integ",
"contactinfo": "support@integ.co.za",
"description": "A small test MIB."
},
"testScalar": {
"name": "testScalar",
"oid": "1.3.6.1.4.1.99999.1",
"class": "objecttype",
"syntax": {
"type": "Integer32"
},
"maxaccess": "read-only",
"status": "current",
"description": "A scalar.",
"nodetype": "scalar"
},
"testTable": {
"name": "testTable",
"oid": "1.3.6.1.4.1.99999.2",
"class": "objecttype",
"syntax": {
"type": "TestEntry"
},
"maxaccess": "not-accessible",
"status": "current",
"description": "A table.",
"nodetype": "table"
},
"testEntry": {
"name": "testEntry",
"oid": "1.3.6.1.4.1.99999.2.1",
"class": "objecttype",
"syntax": {
"type": "TestEntry"
},
"maxaccess": "not-accessible",
"status": "current",
"description": "A row.",
"indices": [
{
"object": "testIndex",
"implied": false
}
],
"nodetype": "row"
},
"testIndex": {
"name": "testIndex",
"oid": "1.3.6.1.4.1.99999.2.1.1",
"class": "objecttype",
"syntax": {
"type": "Integer32"
},
"maxaccess": "not-accessible",
"status": "current",
"description": "Row index.",
"nodetype": "column"
},
"testValue": {
"name": "testValue",
"oid": "1.3.6.1.4.1.99999.2.1.2",
"class": "objecttype",
"syntax": {
"type": "OCTET STRING",
"constraints": {
"size": [
{
"min": 0,
"max": 255
}
]
}
},
"maxaccess": "read-write",
"status": "current",
"description": "Row value.",
"nodetype": "column"
},
"testTrap": {
"name": "testTrap",
"oid": "1.3.6.1.4.1.99999.3",
"class": "notificationtype",
"objects": [
{
"module": "TEST-MIB",
"object": "testScalar"
}
],
"status": "current",
"description": "Something happened."
}
}