Get system by ID
Retrieve a specific system by ID.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The ID of the system to retrieve.
"12345678-0a8b-4f66-b6f3-2ddcfa097257"
Response
A System Under Test (SUT) defines the interface to a component or service you want to evaluate.
It specifies three contracts through schemas:
- inputSchema: The structure of data the system accepts.
- outputSchema: The structure of data the system produces.
- configSchema: The parameters that modify system behavior.
This abstraction lets you evaluate any system as a black box, focusing on its interface rather than implementation details. It's particularly useful for systems with variable outputs or complex internal state.
Systems are templates - to run evaluations, pair them with a SystemConfig that provides specific parameter values.
The ID of the system.
The name of the system.
The description of the system.
The schema of the system's inputs.
The schema of the system's outputs.
The schema of the system's configuration.