{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/kmdouglass/kpal/master/resources/schemas/library.schema.json", "title": "Library", "description": "A shared library file containing a peripheral driver", "type": "object", "properties": { "id" : { "description": "The unique identifier for the library", "type": "integer" }, "name": { "description": "The name of the shared library", "type": "string" } }, "required": [ "id", "name" ] }