
PortalJS Define Schema
FreeEffortlessly define and manage dataset metadata profiles.
Free · Opens the source repo
What PortalJS Define Schema does
PortalJS Define Schema is a skill designed for defining and managing metadata profiles for datasets, specifically tailored for use with the PortalJS framework. This skill allows users to infer a Frictionless Table Schema from the dataset's data, which includes identifying fields, types, and constraints. Additionally, it facilitates the addition of essential Data Package metadata such as licenses, sources, and keywords, which are crucial for dataset cataloging and presentation. The output is written into the datasets.json file, enabling the showcase to render a detailed typed field table instead of a simple preview.
The skill operates on a profile ladder with four levels, providing flexibility based on the complexity of the dataset. Level 0 is the default, suitable for standard tabular datasets, while higher levels (L1 to L3) allow for additional descriptive fields and custom validation rules. This tiered approach ensures that users can start with basic schema definitions and expand as their needs evolve.
An interactive component enhances the user experience by prompting for necessary inputs and confirming inferred schemas, making it accessible even for those who may not be deeply familiar with data profiling. The skill is particularly useful for data publishers who need to prepare datasets for public access, ensuring that all necessary metadata is captured and structured correctly before publication.
This skill is ideal for developers and data professionals working within the PortalJS ecosystem who require a systematic approach to dataset metadata management. It streamlines the process of preparing datasets for display and ensures compliance with metadata standards, ultimately improving the quality and usability of published datasets.
When to use it
Use this skill when you need to define or update the metadata profile of a registered dataset in PortalJS, especially before publishing it.
When not to use it
This skill is not suitable for datasets that do not require metadata definitions or for users not utilizing the PortalJS framework.
What you can build with it
Defining a Schema for a New Dataset
Use the skill to define the metadata profile for a newly registered dataset, ensuring it meets publication standards.
Updating Metadata for Existing Datasets
Leverage the skill to update or refine the metadata of existing datasets, adding necessary fields and constraints.
Creating Custom Validation for Specialized Datasets
Utilize the skill's advanced profile options to create custom validation rules for datasets with unique requirements.
How to install PortalJS Define Schema
View source1. Install with the skills CLI
npx skills add jeremylongshore/claude-code-plugins-plus-skills/portaljs-define-schema --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by jeremylongshorePortalJS — Define Schema
Overview
Define a dataset's metadata profile — the authoring skill for the metadata-profile
contract (lib/metadata). Where portaljs-add-dataset registers that a dataset exists,
this skill describes what its data means: infer a Frictionless Table Schema (fields,
types, constraints) from sampled data, add the Data Package fields a catalog surfaces
(title, licenses, sources, keywords), and write them onto the dataset's entry in
datasets.json. The showcase at /@<namespace>/<slug> then renders a typed field table
instead of a bare preview. The model is Frictionless-native; DCAT is a serialization layer
built on top later, not authored here.
The skill runs on a profile ladder — reach for higher levels only when needed:
| Level | What it is | When |
|---|---|---|
| L0 | Default frictionless-tabular profile; declare schema + metadata. | Default. Standard tabular CSV/TSV. |
| L1 | L0 plus extra descriptive package fields. | Extra metadata, standard validation is fine. |
| L2 | Fully custom profile (own schema template + validate()). | A dataset type needing custom validation rules. |
| L3 | Multiple registered profiles, resolved per dataset. | A portal mixing dataset types. |
The skill is interactive and never dead-ends: if input is thin it interviews in short rounds, infers defaults from the data, echoes the schema for confirmation, and accepts "use defaults" to proceed with the inferred schema as-is.
Prerequisites
- A scaffolded PortalJS portal with the metadata contract (
lib/metadata/types.ts,pages/[owner]/[slug].tsx); seeportaljs-new-portal. - The target dataset already registered in
datasets.json(seeportaljs-add-dataset). - For tabular schema inference, the dataset's CSV/TSV file present under
PORTAL_DIR/public/data/. JSON/GeoJSON datasets get package metadata only — nofields. - Node 18+;
tsxoptional, used for the schema-validation check.
Instructions
The canonical, full step-by-step workflow is
.claude/commands/portaljs-define-schema.md —
the single source of truth. Read and follow it when executing. Summary:
- Gather
PORTAL_DIR,DATASET(slug ornamespace/slug), andLEVEL(defaultL0) from input; ifDATASETis missing, list the portal's slugs and ask. - Validate the portal has the metadata contract (
datasets.json,lib/metadata/types.ts, the showcase route); proceed anyway iflib/metadata/predates the contract. - For tabular datasets, sample the header and ~50 rows from
public/data/<file>and infer each field's type, constraints (required,unique,pattern), and a primary key. - Echo the inferred schema as a table for confirmation; offer to go beyond L0 only if warranted.
- Ask for optional Data Package metadata: license, source(s), keywords, version.
- Write the schema and metadata onto the dataset's entry in
datasets.jsonin place, preserving all other fields; for L2/L3, scaffold and register a custom profile module. - Optionally validate the schema against the data's rows via the profile's
validate(). - Verify with
npx next build; fix malformed JSON or an invalidFieldTypebefore reporting success. - Report the profile, fields, metadata set, and the showcase URL.
Output
- Modified:
datasets.json(target entry gainsprofile,schema,licenses,sources,keywords,version— unset fields omitted). - Created (L2/L3 only):
lib/metadata/<profile-id>.ts;lib/metadata/registry.tsupdated with aregisterProfile(...)call. - Verified:
npx next buildsucceeds. - Result:
/@<namespace>/<slug>renders a typed field table in place of a bare preview.
Error Handling
| Symptom | Cause | Fix |
|---|---|---|
Dataset not found in datasets.json | Wrong slug or missing namespace/ prefix | List available slugs and re-prompt. |
lib/metadata/ missing | Portal predates the metadata-profile contract | Proceed anyway — schema fields are optional and ignored by older showcases. |
No fields schema produced | Dataset is JSON/GeoJSON, not tabular | Expected — capture Data Package metadata only. |
| Validation reports type errors | Sampled values don't coerce to the inferred type | Relax the type or drop the offending required/pattern constraint. |
next build fails on datasets.json | Stray comma or a type outside FieldType | Fix the JSON/type and rebuild before reporting success. |
Examples
Example 1 — Default L0 schema for a CSV dataset
/portaljs-define-schema population-2022
Infers fields (e.g. country: string, population: integer), drafts titles, asks for a
license and source, and writes the schema under the default frictionless-tabular profile.
Example 2 — Metadata only for a GeoJSON dataset
/portaljs-define-schema neighborhoods-geo
GeoJSON has no tabular fields; the skill captures license, sources, and keywords onto the
entry and skips schema inference.
Example 3 — Custom L2 profile with its own validation
/portaljs-define-schema co2-emissions level=L2
Scaffolds lib/metadata/co2-emissions-profile.ts with a custom validate(), registers it
in lib/metadata/registry.ts, and sets "profile": "co2-emissions-profile" on the entry.
Resources
- Full workflow:
.claude/commands/portaljs-define-schema.md - Field-type and troubleshooting reference:
references/reference.md - Related skills:
portaljs-add-dataset,portaljs-add-dcat,portaljs-check-data-quality - Frictionless Table Schema specification: https://datapackage.org/standard/table-schema/
Frequently asked questions about PortalJS Define Schema
Similar skills
Single-Cell RNA-seq QC
Automate quality control for single-cell RNA-seq data.
Instrument Data to Allotrope Converter
Standardize lab data for seamless integration.
SQL Server Table Reconciliation
Efficiently compare SQL Server tables across instances.
Data Cleaning and Variable Screening
Streamline credit risk data preprocessing for modeling.
Arize Dataset
Manage and query Arize datasets efficiently.
Spreadsheet Management
Efficiently create, edit, and analyze spreadsheet files.
