changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "claim_panel": {
+ "additionalProperties": false,
+ "description": "OPTIONAL owner handoff (present only when the consent bridge is enabled).",
+ "properties": {
+ "claim_url": {
+ "description": "One-click claim link — share ONLY with your owner.",
+ "type": "string"
+ },
+ "expires_at_ms": {
+ "description": "Epoch ms when the unclaimed panel is hard-deleted.",
+ "type": "number"
+ },
+ "marker_count": {
+ "type": "number"
+ },
+ "note": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "claim_url",
+ "expires_at_ms",
+ "marker_count",
+ "note"
+ ],
+ "type": "object"
+ },
+ "flags": {
+ "description": "Range flags for each recognized biomarker.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "description": "Biomarker name as PRISM recognizes it.",
+ "type": "string"
+ },
+ "pillar": {
+ "description": "Clinical pillar.",
+ "type": "string"
+ },
+ "status": {
+ "description": "One of: within / above / below longevity-optimized range.",
+ "type": "string"
+ },
+ "unit": {
+ "description": "Measurement unit.",
+ "type": "string"
+ },
+ "value": {
+ "description": "The submitted value.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "value",
+ "unit",
+ "pillar",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "full_report": {
+ "additionalProperties": false,
+ "description": "How the agent's owner can get a complete PRISM report.",
+ "properties": {
+ "agent_docs_url": {
+ "type": "string"
+ },
+ "data_rule": {
+ "type": "string"
+ },
+ "get_full_report_url": {
+ "description": "Signup link (free account) for the agent's owner.",
+ "type": "string"
+ },
+ "what_a_full_report_adds": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "what_a_full_report_adds",
+ "get_full_report_url",
+ "agent_docs_url",
+ "data_rule"
+ ],
+ "type": "object"
+ },
+ "note": {
+ "description": "Scope disclaimer — quick flags, not a diagnosis or full analysis.",
+ "type": "string"
+ },
+ "unmatched": {
+ "description": "Submitted names not in the 51-marker catalog.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "flags",
+ "note",
+ "full_report"
+ ],
+ "type": "object"
+}