rsmp_schema 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/rsmp_schema/version.rb +1 -1
- data/schemas/core/3.2/rsmp.json +1 -1
- data/schemas/core/3.2/status_update.json +30 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: da6aa7917da1551ed490189b8b6d782c9ae6c6d4baf4b46adabcc21cc801cc19
|
|
4
|
+
data.tar.gz: a916a1d6fbc64fcdc050f1be7a4d6c2a603497c54e73baa58c7d775c8c39c803
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 675151863b4bbbffa9d6598e833dcda25d48cf0ce332c9ce05e035fe7f6567269e1b180032182335eeeaf2ae915fc78a75478116f21fcfa496809cffdbeeaf49
|
|
7
|
+
data.tar.gz: baf90db70f6950c2a7c20bec201d4b347fd478e5716f71fdef263db690edf8423df45ad0531fef3a26b8ade57eec0eacfb3ac1004dde88420f197a9740345285
|
data/Gemfile.lock
CHANGED
data/lib/rsmp_schema/version.rb
CHANGED
data/schemas/core/3.2/rsmp.json
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title" : "StatusUpdate",
|
|
3
|
+
"description" : "Status update",
|
|
4
|
+
"properties" : {
|
|
5
|
+
"mId" : { "$ref": "../3.1.1/definitions.json#/message_id" },
|
|
6
|
+
"cId" : { "$ref": "../3.1.1/definitions.json#/component_id" },
|
|
7
|
+
"sTs" : { "$ref": "../3.1.1/definitions.json#/timestamp" },
|
|
8
|
+
"sS" : {
|
|
9
|
+
"description" : "Status update arguments",
|
|
10
|
+
"type" : "array",
|
|
11
|
+
"minItems": 1,
|
|
12
|
+
"items" : {
|
|
13
|
+
"type" : "object",
|
|
14
|
+
"properties": {
|
|
15
|
+
"sCI" : { "$ref": "../3.1.1/definitions.json#/status_code" },
|
|
16
|
+
"n" : { "description" : "Unique reference of the value", "type" : "string" },
|
|
17
|
+
"s" : { "description" : "Value", "type" : ["string","array"] }, // array is allowed from 3.2
|
|
18
|
+
"q" : {
|
|
19
|
+
"description" : "Value",
|
|
20
|
+
"type" : "string",
|
|
21
|
+
"enum" : [ "recent", "old", "undefined", "unknown" ]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"required" : [ "sCI", "n", "s", "q" ],
|
|
25
|
+
"additionalProperties": false
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"required" : [ "mId", "cId", "sTs", "sS" ]
|
|
30
|
+
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsmp_schema
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emil Tin
|
|
@@ -156,6 +156,7 @@ files:
|
|
|
156
156
|
- schemas/core/3.2/core.json
|
|
157
157
|
- schemas/core/3.2/rsmp.json
|
|
158
158
|
- schemas/core/3.2/status_response.json
|
|
159
|
+
- schemas/core/3.2/status_update.json
|
|
159
160
|
- schemas/tlc/1.0.10/alarms/A0001.json
|
|
160
161
|
- schemas/tlc/1.0.10/alarms/A0002.json
|
|
161
162
|
- schemas/tlc/1.0.10/alarms/A0003.json
|