// JSON schema for getting a list of units { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "units": { "type": "array", "items": { "$ref": "unit.json" }, "unique": true } }, "additionalProperties": false, "required": ["units"] }