Tool · Converter
Parse an SDC file and output structured JSON or YAML for tool integration, scripting, dashboards and audits. Same parser the checker uses, so what you convert is what you validate.
In plain words
Your SDC is text. Sometimes you need it as data: to feed an in-house dashboard, run a script over every constraint, or keep a machine-readable inventory for audits. The converter makes that one command.
$ rta convert top.sdc --format json
{
"commands": [
{
"command": "create_clock",
"flags": {"-name": "clk",
"-period": 10.0},
"objects": ["sys_clk"],
"line": 3
}
]
}
Try it