Skip to content

Commit 9d410a7

Browse files
authored
feat: release v0.9.12 (#102)
Signed-off-by: Jarvis <jarvis@api7.ai>
1 parent 92b1ea2 commit 9d410a7

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package = "jsonschema"
2+
version = "0.9.12-0"
3+
source = {
4+
url = "git+https://github.com/api7/jsonschema.git",
5+
tag = "v0.9.12",
6+
}
7+
8+
description = {
9+
summary = "JSON Schema data validator",
10+
detailed = [[
11+
This module is a data validator that implements JSON Schema drafts 4, 6, and 7.
12+
Given a JSON schema, it will generate a validator function that can be used
13+
to validate any kind of data (not limited to JSON).
14+
15+
Based on https://github.com/jdesgats/ljsonschema .
16+
]],
17+
homepage = "https://github.com/api7/jsonschema",
18+
license = "Apache License 2.0",
19+
}
20+
21+
dependencies = {
22+
"net-url",
23+
"lrexlib-pcre = 2.9.1-1",
24+
}
25+
26+
build = {
27+
type = "builtin",
28+
modules = {
29+
["jsonschema"] = "lib/jsonschema.lua",
30+
["jsonschema.store"] = "lib/jsonschema/store.lua",
31+
}
32+
}

0 commit comments

Comments
 (0)