Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zweidenker/jsonschema
Implementation of JSON schema for pharo
https://github.com/zweidenker/jsonschema
json json-schema pharo smalltalk
Last synced: about 7 hours ago
JSON representation
Implementation of JSON schema for pharo
- Host: GitHub
- URL: https://github.com/zweidenker/jsonschema
- Owner: zweidenker
- License: mit
- Created: 2018-09-10T12:14:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-06T13:32:54.000Z (6 months ago)
- Last Synced: 2024-05-07T15:07:15.586Z (6 months ago)
- Topics: json, json-schema, pharo, smalltalk
- Language: Smalltalk
- Size: 808 KB
- Stars: 16
- Watchers: 6
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JSONSchema
[![Build Status](https://travis-ci.org/zweidenker/JSONSchema.svg?branch=master)](https://travis-ci.org/zweidenker/JSONSchema)
[![Test Status](https://api.bob-bench.org/v1/badgeByUrl?branch=master&hosting=github&ci=travis-ci&repo=zweidenker%2FJSONSchema&subNumber=1)](https://bob-bench.org/r/gh/zweidenker/JSONSchema)This is an implementation of [JSON Schema](https://json-schema.org/) for the [pharo](http://pharo.org) language. It is used to define the structure and values of a JSON string and to validate it. The schema itself can be externalized for being consumed by a third party.
**DISCLAIMER**: This is not a full implementation of the json schema spec. Basic types and constraints should work. If you need support for something not implemented you are invited to provide a pull request for it. If you cannot develop it you still can open a ticket in this repository
It can be loaded by downloading it in pharo via
```
Metacello new
repository: 'github://zweidenker/JSONSchema';
baseline: #JSONSchema;
load
```
## Defining a schemaThese are the expression to create a schema model inside pharo.
```
schema := {
#name -> JSONSchema string.
#dateAndTime -> (JSONSchema stringWithFormat: 'date-time').
#numberOfPets -> JSONSchema number } asJSONSchema.```
defines as schema that can parse the following JSON:
```
jsonString := '{
"name" : "John Doe",
"dateAndTime" : "1970-01-01T14:00:00",
"numberOfPets" : 3
}'.
```## Reading/Writing a value using a schema
To parse the value from JSON we only need to invoke:
```
value := schema readString: jsonString
```The object in ```value``` will have name as a string, dateAndTime as a DateAndTime object and numberOfPets as a SmallInteger object.
The schema can also be used to write out the value as JSON. This is especially useful if we want to ensure that only valid JSON is written. For this invoke
```
jsonString := schema write: value.
```## Serialize/Materialize a schema
Addtionally to reading and writing objects a schema can be serialized to string.
```
schemaString := NeoJSONWriter toStringPretty: schema.
```gives
```
{
"type" : "object",
"properties" : {
"name" : {
"type" : "string"
},
"numberOfPets" : {
"type" : "number"
},
"dateAndTime" : {
"type" : "string",
"format" : "date-time"
}
}
}
```If we would get a schema as string we can instantiate by invoking
```
schema := JSONSchema fromString: schemaString.
```## Nested schemas
Schemas can be nested in any depth. And it can be specified by using the literal Array syntax.
```
schema := {
#name -> JSONSchema string.
#address -> {
#street -> JSONSchema string.
#number -> JSONSchema number
} } asJSONSchema
```## Constraints
JSON Schema has a defined set of constraints that can be specified. E.g. for a number the inerval of the value can be specified by
```
numberSchema := JSONSchema number.
numberSchema interval
minimum: 1;
exclusiveMaximum: 100
```
constraining the number value to be greater or equal to 1 and smaller than 100.