{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ComponentSet", "type": "object", "description": "A component set groups variants of a component together. Useful for organizing different states or configurations of a design element.", "properties": { "key": { "type": "string", "description": "The globally unique key of the component set." }, "name": { "type": "string", "description": "Name of the component set." }, "description": { "type": "string", "description": "The description of the component set as entered in the editor." }, "documentationLinks": { "type": "array", "description": "Documentation links attached to this component set." }, "remote": { "type": "boolean", "description": "Whether this is a remote component set." } } }