From 74b97beab177383152ceee39c979b63bff26a17f Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 30 Dec 2024 11:48:27 +1300 Subject: [PATCH 1/2] Minor tweaks to README.md --- README.md | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f1acfb8..feb7f46 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,17 @@ -# JSONSchema +# JSONSchema.jl -_JSON instance validation using JSON Schemas_ - -[![Build Status](https://github.com/fredo-dedup/JSONSchema.jl/workflows/CI/badge.svg?branch=master)](https://github.com/fredo-dedup/JSONSchema.jl/actions?query=workflow%3ACI) +[![Build Status](https://github.com/fredo-dedup/JSONSchema.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/fredo-dedup/JSONSchema.jl/actions?query=workflow%3ACI) [![codecov](https://codecov.io/gh/fredo-dedup/JSONSchema.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/fredo-dedup/JSONSchema.jl) ## Overview [JSONSchema.jl](https://github.com/fredo-dedup/JSONSchema.jl) is a JSON -validation package for the [julia](https://julialang.org/) programming language. -Given a [validation schema](http://json-schema.org/specification.html) this -package can verify if any JSON instance meets all the assertions defining a +validation package for the [Julia](https://julialang.org/) programming language. +Given a [validation schema](http://json-schema.org/specification.html), this +package can verify if any JSON instance meets all the assertions that define a valid document. -This package has been validated with the +This package has been tested with the [JSON Schema Test Suite](https://github.com/json-schema-org/JSON-Schema-Test-Suite) for draft v4 and v6. From 77beb29a2ed2dcd024c0b9a45b881cc7142091e4 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 30 Dec 2024 13:57:02 +1300 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index feb7f46..8e118f7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [JSONSchema.jl](https://github.com/fredo-dedup/JSONSchema.jl) is a JSON validation package for the [Julia](https://julialang.org/) programming language. Given a [validation schema](http://json-schema.org/specification.html), this -package can verify if any JSON instance meets all the assertions that define a +package can verify if a JSON instance meets all the assertions that define a valid document. This package has been tested with the