/api/models/schema

Last updated on 26th March 2024

GET

Returns the schema and initial data associated to a particular model.

Request

Example request

curl -X GET http://localhost:8080/api/models/schema\?name=<model_name> -H 'Accept: application/json'

Status Code 200

This REST-ful call returns a schema, and data representing the simulation. By default the avro schema is not returned, if you require this include the query parameter `format=avro`. For more information on the avro schema, see here.

Status Code 404

Name Type Required
message string true

Example 404 response body

{
  "message": "SimulationRegistry: Could not find requested simulation '<model_name>'"
}