{ "definitions": {}, "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://example.com/root.json", "type": "array", "items": { "$id": "#/items", "type": "object", "required": [ "id", "noDepot", "nom", "nomComplet", "sigle" ], "properties": { "id": { "$id": "#/items/properties/id", "type": "integer", "examples": [ 400201 ] }, "noDepot": { "$id": "#/items/properties/noDepot", "type": "integer", "examples": [ 1 ] }, "nom": { "$id": "#/items/properties/nom", "type": "string", "examples": [ "UDC" ], "pattern": "^(.*)$" }, "nomComplet": { "$id": "#/items/properties/nomComplet", "type": "string", "examples": [ "UDC GENÈVE" ], "pattern": "^(.*)$" }, "sigle": { "$id": "#/items/properties/sigle", "type": "string", "examples": [ "UDC" ], "pattern": "^(.*)$" } } } }