v1

latestOpenAPI 3.0.32026-07-1710820.0 KB
Evaluation

Evaluate ad-hoc expression

Evaluate an ad-hoc FUME expression. The request body can be a JSON object with fume (required), input, and contentType fields.

post/

Query parameters

verbosestring

When set to true (case-insensitive) or 1, returns the full evaluation report instead of the raw result.

Request body

fumestring required

FUME expression to evaluate

{"stackTrail":"paths:/:post:requestBody:content:application/json:schema:properties:input","oasType":"schema","type":"unknown","description":"Input data for the expression","example":{"resourceType":"Patient","id":"123"}}
contentTypestring

Content type for input conversion

Example request

{
  "fume": "{ resourceType: id }",
  "input": {
    "resourceType": "Patient",
    "id": "123"
  },
  "contentType": "application/json"
}

Response

Evaluation result

{"stackTrail":"paths:/:post:responses:200:content:application/json:schema","oasType":"schema","type":"unknown"}