Skip to content

Commit e4a911b

Browse files
authored
Merge pull request ocaml#28094 from tmattio/release-jsonschema-0.1.0
[new release] jsonschema (0.1.0)
2 parents a3acf64 + 4b62f09 commit e4a911b

File tree

1 file changed

+45
-0
lines changed
  • packages/jsonschema/jsonschema.0.1.0

1 file changed

+45
-0
lines changed
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis: "JSON Schema validator for OCaml"
3+
description:
4+
"A comprehensive JSON Schema validator implementation for OCaml supporting drafts 4, 6, 7, 2019-09, and 2020-12. This library provides full validation of JSON documents against JSON Schema definitions with detailed error reporting, support for all standard validation keywords, format validators, and content encoding/decoding. It includes features like remote schema resolution, custom format validators, and multiple output formats for validation results."
5+
maintainer: ["Thibaut Mattio <[email protected]>"]
6+
authors: ["Thibaut Mattio <[email protected]>"]
7+
license: "ISC"
8+
tags: ["json" "jsonschema"]
9+
homepage: "https://github.com/tmattio/ocaml-jsonschema"
10+
bug-reports: "https://github.com/tmattio/ocaml-jsonschema/issues"
11+
depends: [
12+
"ocaml" {>= "4.13"}
13+
"dune" {>= "3.19"}
14+
"re" {>= "1.7.2"}
15+
"yojson"
16+
"ppx_deriving_yojson"
17+
"base64" {>= "3.0.0"}
18+
"uri"
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
# "@runtest" {with-test} # requires updating git submodules, but this is not supported
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/tmattio/ocaml-jsonschema.git"
36+
x-maintenance-intent: ["(latest)"]
37+
url {
38+
src:
39+
"https://github.com/tmattio/ocaml-jsonschema/releases/download/0.1.0/jsonschema-0.1.0.tbz"
40+
checksum: [
41+
"sha256=21a3ff475202fe598f639c4dc5b03355f169d9d77b4f17ecd5a1aca9b475b93e"
42+
"sha512=ce90853ca15dfe5e52289f4fb5ce92275dcde931114312f77fd6e817c0727708ebb006546a6b5ce05332a9c1a49c07d7c6a8131e54a02085cc999a6d823a06e8"
43+
]
44+
}
45+
x-commit-hash: "30de41f2c0a58d57424c2b2d46304274adfd3cf3"

0 commit comments

Comments
 (0)