We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MikeORed/catalog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
dataset-field.ts•609 B
import { FieldName } from '../value-objects/field-name.js';
import { FieldType } from '../value-objects/field-type.js';
/**
* Represents a field definition within a dataset schema
*/
export interface DatasetField {
/** Field name (must be unique within the dataset) */
name: FieldName;
/** Field data type */
type: FieldType;
/** Valid enum values (required when type is Enum, must be non-empty) */
enumValues?: string[];
/** Whether this field serves as the primary key */
isKey: boolean;
/** Whether this field can be used for lookup operations */
isLookupKey: boolean;
}