{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://local-frontier.dev/schemas/bounds-result.schema.json", "title": "Local Frontier Bounds Result", "type": "object", "additionalProperties": true, "required": [ "engine_version", "schema_version", "status_code", "profile_resolution", "inputs", "trace", "ceilings", "usable_batch", "warnings" ], "properties": { "engine_version": { "type": "string" }, "schema_version": { "const": "1.0.0" }, "status_code": { "enum": [ "ok", "unsupported_profile", "resident_not_fit", "no_session_capacity", "no_floor" ] }, "profile_resolution": { "type": "object" }, "inputs": { "type": "object" }, "trace": { "type": "object" }, "ceilings": { "type": "object" }, "usable_batch": { "type": "object" }, "warnings": { "type": "array", "items": { "type": "string" } } } }