{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Member list", "description": "List of all members of the Computer Science Club of the University of Waterloo", "type": "object", "properties": { "members": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "id": { "type": "string" }, "program": { "type": "string" } } } } } }