The “modelversions” command
- Last Updated: May 13, 2026
- 1 minute read
- Semaphore
- Documentation
Returns a list of models and the stored versions (see here for details that are available in this SES instance.
| Request | XML output | JSON output |
|---|---|---|
| REST request: | http://localhost:8983/ses/modelversions |
http://localhost:8983/ses/modelversions.json |
| CGI request: | Not available | Not available |
Additional Parameter Options
Response
XML
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<SEMAPHORE>
<MODEL name="SpaceMissions">
<VERSION>Version-5.1</VERSION>
<VERSION>Version-5</VERSION>
</MODEL>
<MODEL name="Subjects"/>
</SEMAPHORE>
JSON
{
"models" : [ {
"versions" : [ "Version-5.1", "Version-5" ],
"name" : "SpaceMissions"
}, {
"versions" : [ ],
"name" : "Subjects"
} ]
}