EXPRESS
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: EXPRESS data modeling language, ISO 10303-11
Provenance: commit 3a0a1c41b7 · authored 2026-03-17T04:07:59+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Automobile Schema
Provenance: commit 3a0a1c41b7 · authored 2026-03-17T04:07:59+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
SCHEMA automobile_schema;
ENTITY automobile;
make : STRING;
model : STRING;
year : INTEGER;
DERIVE
age : INTEGER := 2000 - SELF.year;
WHERE
validation : year > 1900;
END_ENTITY;
END_SCHEMA;