kwalify_to_json_schema 0.1.2 → 0.1.3
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18d110d9d28e8bd0a1231dd65df8f8f52063c8bf01e96069a74d577c717ec886
|
|
4
|
+
data.tar.gz: 1fd58dd04f1e30d48540f7b55a7f10d75aafd186e75e6ce0b9b6f932ec1f5b6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5989d6935db5941cb5950e4d8db007fbe1a54bbca5b89e48b27f4e67f3b0747a52d0f95b67ca3c11bb57dcbf07d62a047fff57ef75e7342ffbf5c4652a0d3e2
|
|
7
|
+
data.tar.gz: 2acbfa4dd347768e076c02629de054b4c9ddfc5adbbb931ad0fdad9354e105f039e24658ffb1781204a55f1b1032412bc497535a00b323ec3f053bed96d3ec0b
|
|
@@ -152,7 +152,7 @@ module KwalifyToJsonSchema
|
|
|
152
152
|
end
|
|
153
153
|
end
|
|
154
154
|
|
|
155
|
-
new_issue
|
|
155
|
+
new_issue UNIQUE_NOT_SUPPORTED if kelem["unique"]
|
|
156
156
|
|
|
157
157
|
target
|
|
158
158
|
end
|
|
@@ -173,6 +173,4 @@ module KwalifyToJsonSchema
|
|
|
173
173
|
@issues << description
|
|
174
174
|
end
|
|
175
175
|
end
|
|
176
|
-
|
|
177
|
-
|
|
178
176
|
end
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
module KwalifyToJsonSchema
|
|
2
|
-
# Enumeration of known implementation
|
|
2
|
+
# Enumeration of known implementation limitations
|
|
3
3
|
module Limitations
|
|
4
4
|
DATE_TYPE_NOT_IMPLEMENTED = "Kwalify 'date' type is not supported and is ignored"
|
|
5
5
|
TIME_TYPE_NOT_IMPLEMENTED = "Kwalify 'time' type is not supported and is ignored"
|
|
6
6
|
TIMESTAMP_TYPE_NOT_IMPLEMENTED = "Kwalify 'timestamp' type is not supported and is ignored"
|
|
7
|
+
UNIQUE_NOT_SUPPORTED = "Kwalify 'unique' is not supported by JSON Schema and is ignored"
|
|
7
8
|
end
|
|
8
9
|
end
|