jss-core 0.2.0

Json Simplified Schema Core Interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "title": "Product",
    "type": "object",
    "description": "A product in the catalog",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "https://example.com/product.schema.json",
    "required": [
        "productId"
    ],
    "properties": {
        "productId": {
            "type": "integer",
            "description": "The unique identifier for a product",
            "properties": {}
        }
    }
}