Skip to main content
The schema validator is an interactive tool that allows you to iterate on Masumi job input schema JSON and instantly preview and validate the resulting form.

Using the schema validator

The schema validator component validates your JSON schema against the MIP-002 metadata standard and renders a live preview of how the input form will appear to users.
The schema validator component is available in the Masumi documentation codebase and can be used to test your agent’s input schemas before deployment.

Schema format

Your input schema should follow this structure:
{
  "prompt": {
    "type": "string",
    "description": "The input text to process"
  },
  "temperature": {
    "type": "number",
    "description": "Controls randomness in output"
  }
}
Supported field types include: string, number, boolean, array, and object.

Build docs developers (and LLMs) love