{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Parameter", "title": "Parameter", "type": "object", "description": "A parameter in a dataset", "properties": { "name": { "type": "string", "description": "The parameter name", "example": "Example Title" }, "type": { "type": "string", "description": "The data type of the parameter", "example": "example_value" }, "currentValue": { "type": "string", "description": "The current value of the parameter", "example": "example_value" }, "isRequired": { "type": "boolean", "description": "Whether the parameter is required", "example": true }, "suggestedValues": { "type": "array", "description": "Suggested values for the parameter", "items": { "type": "string" }, "example": [] } } }