{
  "components": {
    "schemas": {
      "ByteDirection": {
        "enum": [
          "input",
          "output"
        ],
        "type": "string"
      },
      "CommandId": {
        "maxLength": 80,
        "minLength": 1,
        "pattern": "^[A-Za-z0-9_-]+$",
        "type": "string"
      },
      "Companies": {
        "properties": {
          "can_create": {
            "type": "boolean"
          },
          "companies": {
            "items": {
              "$ref": "#/components/schemas/Company"
            },
            "type": "array"
          }
        },
        "required": [
          "companies",
          "can_create"
        ],
        "type": "object"
      },
      "Company": {
        "properties": {
          "coordinate": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "role": {
            "$ref": "#/components/schemas/Role"
          }
        },
        "required": [
          "coordinate",
          "name",
          "role"
        ],
        "type": "object"
      },
      "ConceptView": {
        "properties": {
          "counts": {
            "$ref": "#/components/schemas/Counts"
          },
          "focus": {
            "type": [
              "string",
              "null"
            ]
          },
          "graphs": {
            "$ref": "#/components/schemas/GraphSelection"
          },
          "has_more": {
            "type": "boolean"
          },
          "items": {
            "items": {
              "$ref": "#/components/schemas/Item"
            },
            "maxItems": 256,
            "type": "array"
          },
          "next_cursor": {
            "type": [
              "string",
              "null"
            ]
          },
          "occurrence": {
            "type": "string"
          },
          "program": {
            "type": "string"
          },
          "schema": {
            "$ref": "#/components/schemas/ViewProfile"
          },
          "scheme": {
            "type": "string"
          },
          "tenant": {
            "type": "string"
          },
          "total_items": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "schema",
          "program",
          "tenant",
          "occurrence",
          "scheme",
          "focus",
          "graphs",
          "counts",
          "total_items",
          "items",
          "has_more",
          "next_cursor"
        ],
        "type": "object"
      },
      "Coordinates": {
        "additionalProperties": false,
        "properties": {
          "quantity_kind": {
            "type": "string"
          },
          "selection": {
            "type": "string"
          },
          "unit": {
            "type": "string"
          }
        },
        "required": [
          "unit",
          "quantity_kind",
          "selection"
        ],
        "type": "object"
      },
      "Counts": {
        "properties": {
          "coverage_ppm": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "edges": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "exact_match_edges": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "external_concepts": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "mapped_native_concepts": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "mapping_edges": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "native_concepts": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "nodes": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "resolved_rows": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "unmapped_native_concepts": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "native_concepts",
          "mapped_native_concepts",
          "unmapped_native_concepts",
          "external_concepts",
          "mapping_edges",
          "exact_match_edges",
          "coverage_ppm",
          "resolved_rows",
          "nodes",
          "edges"
        ],
        "type": "object"
      },
      "CreateCompany": {
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "type": "object"
      },
      "DecisionNode": {
        "additionalProperties": false,
        "properties": {
          "definition_graph": {
            "type": "string"
          },
          "evidence": {
            "type": "string"
          },
          "expression": {
            "$ref": "#/components/schemas/Expression"
          },
          "id": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "definition_graph",
          "evidence",
          "expression"
        ],
        "type": "object"
      },
      "DecisionPlan": {
        "additionalProperties": false,
        "properties": {
          "data_graph": {
            "type": "string"
          },
          "definition_graph": {
            "type": "string"
          },
          "fallback": {
            "type": "string"
          },
          "hit_policy": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "nodes": {
            "items": {
              "$ref": "#/components/schemas/DecisionNode"
            },
            "type": "array"
          },
          "rules": {
            "items": {
              "$ref": "#/components/schemas/Rule"
            },
            "type": "array"
          },
          "table": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "definition_graph",
          "data_graph",
          "table",
          "hit_policy",
          "fallback",
          "nodes",
          "rules"
        ],
        "type": "object"
      },
      "Discovery": {
        "properties": {
          "has_more": {
            "type": "boolean"
          },
          "items": {
            "items": {
              "$ref": "#/components/schemas/DiscoveryItem"
            },
            "maxItems": 100,
            "type": "array"
          },
          "next_cursor": {
            "type": [
              "string",
              "null"
            ]
          },
          "provenance": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/GraphSelection"
              },
              {
                "type": "null"
              }
            ]
          },
          "revision": {
            "description": "Exact selected catalog and enrichment revision; pins all subsequent reads.",
            "type": "string"
          },
          "schema": {
            "$ref": "#/components/schemas/DiscoveryProfile"
          },
          "selected_scheme": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/SchemeSummary"
              },
              {
                "type": "null"
              }
            ]
          },
          "selection": {
            "$ref": "#/components/schemas/DiscoverySelection"
          },
          "tenant": {
            "type": "string"
          },
          "total_items": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "schema",
          "tenant",
          "revision",
          "selection",
          "items",
          "total_items",
          "has_more"
        ],
        "type": "object"
      },
      "DiscoveryItem": {
        "oneOf": [
          {
            "properties": {
              "concept_count": {
                "format": "uint",
                "minimum": 0,
                "type": "integer"
              },
              "definitions": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "id": {
                "type": "string"
              },
              "kind": {
                "const": "scheme",
                "type": "string"
              },
              "labels": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "owner": {
                "type": "string"
              },
              "source_ids": {
                "description": "Admitted reference coverage. It does not claim executable support for a standard.",
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "kind",
              "id",
              "owner",
              "labels",
              "definitions",
              "concept_count",
              "source_ids"
            ],
            "type": "object"
          },
          {
            "properties": {
              "definitions": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "id": {
                "type": "string"
              },
              "kind": {
                "const": "concept",
                "type": "string"
              },
              "labels": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "owner": {
                "type": "string"
              },
              "scheme": {
                "type": "string"
              },
              "source_ids": {
                "items": {
                  "type": "string"
                },
                "type": "array"
              }
            },
            "required": [
              "kind",
              "id",
              "scheme",
              "owner",
              "labels",
              "definitions",
              "source_ids"
            ],
            "type": "object"
          }
        ]
      },
      "DiscoveryProfile": {
        "enum": [
          "tallyup.discovery.v1"
        ],
        "type": "string"
      },
      "DiscoverySelection": {
        "additionalProperties": false,
        "properties": {
          "concept": {
            "description": "An exact concept identity within the selected scheme.",
            "type": [
              "string",
              "null"
            ]
          },
          "include": {
            "default": "meaning",
            "description": "Meaning reads native definitions only. References adds admitted source coverage; provenance also includes graph selections.",
            "enum": [
              "meaning",
              "references",
              "provenance"
            ],
            "type": "string"
          },
          "q": {
            "default": "",
            "description": "Case-insensitive text in identities, labels, definitions or mapped source evidence.",
            "maxLength": 200,
            "type": "string"
          },
          "scheme": {
            "description": "An exact native scheme identity returned by discovery. Selects its concepts.",
            "type": [
              "string",
              "null"
            ]
          },
          "source": {
            "description": "Exact source_id returned in source_ids; filters native meaning with admitted mappings.",
            "maxLength": 512,
            "minLength": 1,
            "type": [
              "string",
              "null"
            ]
          }
        },
        "type": "object"
      },
      "Expression": {
        "oneOf": [
          {
            "additionalProperties": false,
            "properties": {
              "data_graph": {
                "type": "string"
              },
              "operator": {
                "const": "https://tallyupnow.com/ns/operand#source-v2",
                "type": "string"
              },
              "value": {
                "$ref": "#/components/schemas/OperandValue"
              }
            },
            "required": [
              "operator",
              "value",
              "data_graph"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "left": {
                "type": "string"
              },
              "operator": {
                "const": "https://tallyupnow.com/ns/operand#exact-v1",
                "type": "string"
              },
              "right": {
                "type": "string"
              }
            },
            "required": [
              "operator",
              "left",
              "right"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "left": {
                "type": "string"
              },
              "operator": {
                "const": "https://tallyupnow.com/ns/operand#absolute-difference-v1",
                "type": "string"
              },
              "right": {
                "type": "string"
              }
            },
            "required": [
              "operator",
              "left",
              "right"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "left": {
                "type": "string"
              },
              "operator": {
                "const": "https://tallyupnow.com/ns/operand#less-than-or-equal-v1",
                "type": "string"
              },
              "right": {
                "type": "string"
              }
            },
            "required": [
              "operator",
              "left",
              "right"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "inputs": {
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "operator": {
                "const": "https://tallyupnow.com/ns/operand#all-v1",
                "type": "string"
              }
            },
            "required": [
              "operator",
              "inputs"
            ],
            "type": "object"
          }
        ]
      },
      "Fact": {
        "additionalProperties": false,
        "properties": {
          "aspect": {
            "type": "string"
          },
          "coordinates": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "correspondence": {
            "type": [
              "string",
              "null"
            ]
          },
          "data_graph": {
            "type": "string"
          },
          "datatype": {
            "type": "string"
          },
          "lexical": {
            "type": "string"
          }
        },
        "required": [
          "lexical",
          "datatype",
          "coordinates",
          "aspect",
          "data_graph"
        ],
        "type": "object"
      },
      "GraphSelection": {
        "properties": {
          "native_digest": {
            "type": "string"
          },
          "native_graph": {
            "type": "string"
          },
          "reflections": {
            "items": {
              "$ref": "#/components/schemas/ReflectionSelection"
            },
            "maxItems": 32,
            "type": "array"
          }
        },
        "required": [
          "native_graph",
          "native_digest",
          "reflections"
        ],
        "type": "object"
      },
      "Item": {
        "oneOf": [
          {
            "properties": {
              "definitions": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "identity": {
                "type": "string"
              },
              "kind": {
                "const": "scheme-node",
                "type": "string"
              },
              "labels": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "layer": {
                "$ref": "#/components/schemas/Layer"
              },
              "node_graph": {
                "type": "string"
              },
              "owner": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "source": {
                "anyOf": [
                  {
                    "$ref": "#/components/schemas/SourceEvidence"
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "required": [
              "kind",
              "layer",
              "identity",
              "node_graph",
              "labels",
              "definitions"
            ],
            "type": "object"
          },
          {
            "properties": {
              "definitions": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "identity": {
                "type": "string"
              },
              "kind": {
                "const": "concept-node",
                "type": "string"
              },
              "labels": {
                "items": {
                  "$ref": "#/components/schemas/Label"
                },
                "type": "array"
              },
              "layer": {
                "$ref": "#/components/schemas/Layer"
              },
              "node_graph": {
                "type": "string"
              },
              "owner": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "scheme": {
                "type": "string"
              },
              "source_description": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "source_occurrence": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "source_pointer": {
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "required": [
              "kind",
              "layer",
              "identity",
              "scheme",
              "node_graph",
              "labels",
              "definitions"
            ],
            "type": "object"
          },
          {
            "properties": {
              "assertion_graph": {
                "type": "string"
              },
              "kind": {
                "const": "edge",
                "type": "string"
              },
              "layer": {
                "$ref": "#/components/schemas/Layer"
              },
              "mapping_assertions": {
                "additionalProperties": {
                  "type": "string"
                },
                "type": "object"
              },
              "predicate": {
                "type": "string"
              },
              "source": {
                "type": "string"
              },
              "source_graph": {
                "type": "string"
              },
              "target": {
                "type": "string"
              },
              "target_graph": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "layer",
              "source",
              "source_graph",
              "predicate",
              "target",
              "target_graph",
              "assertion_graph",
              "mapping_assertions"
            ],
            "type": "object"
          }
        ],
        "properties": {
          "cursor": {
            "type": "string"
          }
        },
        "required": [
          "cursor"
        ],
        "type": "object"
      },
      "Label": {
        "properties": {
          "language": {
            "type": [
              "string",
              "null"
            ]
          },
          "value": {
            "type": "string"
          }
        },
        "required": [
          "value"
        ],
        "type": "object"
      },
      "Layer": {
        "enum": [
          "native",
          "external"
        ],
        "type": "string"
      },
      "Manifest": {
        "additionalProperties": false,
        "properties": {
          "contractDigest": {
            "type": "string"
          },
          "files": {
            "additionalProperties": {
              "type": "string"
            },
            "type": "object"
          },
          "schema": {
            "type": "string"
          },
          "sourceRevision": {
            "type": "string"
          },
          "sourceTree": {
            "type": "string"
          }
        },
        "required": [
          "schema",
          "sourceRevision",
          "sourceTree",
          "contractDigest",
          "files"
        ],
        "type": "object"
      },
      "Measure": {
        "additionalProperties": false,
        "properties": {
          "algorithm": {
            "type": "string"
          },
          "coordinates": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "identity": {
            "type": "string"
          },
          "lexical": {
            "type": "string"
          },
          "measure_kind": {
            "type": "string"
          },
          "operator": {
            "type": "string"
          },
          "parameters": {
            "type": "string"
          },
          "producer": {
            "type": "string"
          },
          "profile": {
            "type": "string"
          },
          "source_evidence": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "value_domain": {
            "type": "string"
          }
        },
        "required": [
          "identity",
          "measure_kind",
          "value_domain",
          "lexical",
          "coordinates",
          "profile",
          "source_evidence",
          "producer",
          "operator",
          "algorithm",
          "parameters"
        ],
        "type": "object"
      },
      "MeasureSpec": {
        "additionalProperties": false,
        "properties": {
          "algorithm": {
            "type": "string"
          },
          "domain": {
            "type": "string"
          },
          "kind": {
            "type": "string"
          },
          "parameters": {
            "type": "string"
          }
        },
        "required": [
          "kind",
          "domain",
          "algorithm",
          "parameters"
        ],
        "type": "object"
      },
      "NativeProgramResource": {
        "properties": {
          "commands": {
            "items": {
              "$ref": "#/components/schemas/PreparedCommand"
            },
            "type": "array"
          },
          "coordinate": {
            "type": "string"
          },
          "graph": {
            "type": "string"
          },
          "instance": {
            "type": "string"
          },
          "kind": {
            "type": "string"
          },
          "revision": {
            "type": [
              "string",
              "null"
            ]
          },
          "setup": {
            "type": [
              "string",
              "null"
            ]
          },
          "state": {
            "description": "An authorized public native graph projection, encoded as N-Quads. It\nexcludes protected grants, transport cursors and uncommitted sync pages.",
            "type": "string"
          },
          "tenant": {
            "type": "string"
          },
          "tenant_label": {
            "type": "string"
          }
        },
        "required": [
          "coordinate",
          "instance",
          "kind",
          "tenant",
          "tenant_label",
          "graph",
          "state",
          "commands"
        ],
        "type": "object"
      },
      "Occurrence": {
        "additionalProperties": false,
        "properties": {
          "axis": {
            "type": "string"
          },
          "bounds": {
            "items": {
              "type": "string"
            },
            "maxItems": 4,
            "minItems": 4,
            "type": "array"
          },
          "coordinates": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "evidence": {
            "type": "string"
          },
          "frame": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "ordinal": {
            "format": "uint32",
            "minimum": 0,
            "type": [
              "integer",
              "null"
            ]
          },
          "origin": {
            "type": "string"
          },
          "parent": {
            "type": [
              "string",
              "null"
            ]
          },
          "representation": {
            "type": "string"
          },
          "scope": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "representation",
          "scope",
          "frame",
          "coordinates",
          "axis",
          "origin",
          "bounds",
          "evidence"
        ],
        "type": "object"
      },
      "OperandNode": {
        "additionalProperties": false,
        "properties": {
          "data_graph": {
            "type": [
              "string",
              "null"
            ]
          },
          "definition_graph": {
            "type": "string"
          },
          "evidence": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "inputs": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "measure": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/MeasureSpec"
              },
              {
                "type": "null"
              }
            ]
          },
          "operator": {
            "type": "string"
          },
          "parameter": {
            "type": [
              "string",
              "null"
            ]
          },
          "source": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/OperandValue"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "required": [
          "id",
          "definition_graph",
          "evidence",
          "operator",
          "inputs"
        ],
        "type": "object"
      },
      "OperandProgram": {
        "additionalProperties": false,
        "properties": {
          "conclusion": {
            "type": "string"
          },
          "data_graph": {
            "type": "string"
          },
          "definition_graph": {
            "type": "string"
          },
          "dimensionless": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "id": {
            "type": "string"
          },
          "nodes": {
            "items": {
              "$ref": "#/components/schemas/OperandNode"
            },
            "type": "array"
          }
        },
        "required": [
          "id",
          "definition_graph",
          "data_graph",
          "conclusion",
          "dimensionless",
          "nodes"
        ],
        "type": "object"
      },
      "OperandValue": {
        "oneOf": [
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "time",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "date-time",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "datatype": {
                "type": "string"
              },
              "kind": {
                "const": "seconds",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical",
              "datatype"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "components": {
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "coordinates": {
                "$ref": "#/components/schemas/Coordinates"
              },
              "kind": {
                "const": "vector",
                "type": "string"
              }
            },
            "required": [
              "kind",
              "components",
              "coordinates"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "items": {
                "items": {
                  "type": "string"
                },
                "type": "array"
              },
              "kind": {
                "const": "set",
                "type": "string"
              }
            },
            "required": [
              "kind",
              "items"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "bounds": {
                "items": {
                  "type": "string"
                },
                "maxItems": 4,
                "minItems": 4,
                "type": "array"
              },
              "coordinates": {
                "$ref": "#/components/schemas/Coordinates"
              },
              "frame": {
                "type": "string"
              },
              "kind": {
                "const": "bounding-box",
                "type": "string"
              }
            },
            "required": [
              "kind",
              "bounds",
              "frame",
              "coordinates"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "coordinates": {
                "$ref": "#/components/schemas/Coordinates"
              },
              "kind": {
                "const": "approximate",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              },
              "profile": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical",
              "coordinates",
              "profile"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "measure",
                "type": "string"
              },
              "measure": {
                "$ref": "#/components/schemas/Measure"
              }
            },
            "required": [
              "kind",
              "measure"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "direction": {
                "$ref": "#/components/schemas/ByteDirection"
              },
              "hex": {
                "type": "string"
              },
              "kind": {
                "const": "bytes",
                "type": "string"
              }
            },
            "required": [
              "kind",
              "hex",
              "direction"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "text",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "iri",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "date",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "coordinates": {
                "$ref": "#/components/schemas/Coordinates"
              },
              "datatype": {
                "type": "string"
              },
              "kind": {
                "const": "numeric",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical",
              "datatype",
              "coordinates"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "datatype": {
                "type": "string"
              },
              "kind": {
                "const": "calendar-days",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical",
              "datatype"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "boolean",
                "type": "string"
              },
              "value": {
                "type": "boolean"
              }
            },
            "required": [
              "kind",
              "value"
            ],
            "type": "object"
          }
        ]
      },
      "Operator": {
        "enum": [
          "https://tallyupnow.com/ns/domain-reasoning#source",
          "https://tallyupnow.com/ns/domain-reasoning#add",
          "https://tallyupnow.com/ns/domain-reasoning#subtract",
          "https://tallyupnow.com/ns/domain-reasoning#multiply",
          "https://tallyupnow.com/ns/domain-reasoning#within-tolerance",
          "https://tallyupnow.com/ns/domain-reasoning#corresponds"
        ],
        "type": "string"
      },
      "PreparedCommand": {
        "properties": {
          "input": {
            "type": "string"
          },
          "operation": {
            "type": "string"
          }
        },
        "required": [
          "operation",
          "input"
        ],
        "type": "object"
      },
      "Problem": {
        "properties": {
          "detail": {
            "type": "string"
          },
          "status": {
            "format": "uint16",
            "maximum": 65535,
            "minimum": 0,
            "type": "integer"
          },
          "title": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        },
        "required": [
          "type",
          "title",
          "status",
          "detail"
        ],
        "type": "object"
      },
      "ReasoningNode": {
        "additionalProperties": false,
        "properties": {
          "definition_graph": {
            "type": "string"
          },
          "evidence": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "left": {
            "type": [
              "string",
              "null"
            ]
          },
          "operator": {
            "$ref": "#/components/schemas/Operator"
          },
          "right": {
            "type": [
              "string",
              "null"
            ]
          },
          "source": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/Fact"
              },
              {
                "type": "null"
              }
            ]
          },
          "tolerance": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "id",
          "operator",
          "definition_graph",
          "evidence"
        ],
        "type": "object"
      },
      "ReasoningOutcome": {
        "properties": {
          "evidence_digest": {
            "type": "string"
          },
          "input_digest": {
            "type": "string"
          },
          "profile": {
            "type": "string"
          },
          "refusal": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/Refusal"
              },
              {
                "type": "null"
              }
            ]
          },
          "result": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/Value"
              },
              {
                "type": "null"
              }
            ]
          },
          "status": {
            "type": "string"
          },
          "trace": {
            "items": {
              "$ref": "#/components/schemas/Step"
            },
            "type": "array"
          }
        },
        "required": [
          "profile",
          "input_digest",
          "status",
          "trace",
          "evidence_digest"
        ],
        "type": "object"
      },
      "ReasoningProgram": {
        "additionalProperties": false,
        "properties": {
          "conclusion": {
            "type": "string"
          },
          "data_graph": {
            "type": "string"
          },
          "definition_graph": {
            "type": "string"
          },
          "dimensionless": {
            "description": "Exact coordinates explicitly admitted as dimensionless by the native plan.",
            "items": {
              "$ref": "#/components/schemas/Coordinates"
            },
            "type": "array"
          },
          "id": {
            "type": "string"
          },
          "nodes": {
            "items": {
              "$ref": "#/components/schemas/ReasoningNode"
            },
            "type": "array"
          }
        },
        "required": [
          "id",
          "definition_graph",
          "data_graph",
          "conclusion",
          "nodes",
          "dimensionless"
        ],
        "type": "object"
      },
      "ReferenceEdge": {
        "additionalProperties": false,
        "properties": {
          "evidence": {
            "type": "string"
          },
          "graph": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "target": {
            "type": "string"
          }
        },
        "required": [
          "source",
          "target",
          "graph",
          "evidence"
        ],
        "type": "object"
      },
      "ReferencePlan": {
        "additionalProperties": false,
        "properties": {
          "edges": {
            "items": {
              "$ref": "#/components/schemas/ReferenceEdge"
            },
            "type": "array"
          },
          "graph": {
            "type": "string"
          },
          "start": {
            "type": "string"
          }
        },
        "required": [
          "graph",
          "start",
          "edges"
        ],
        "type": "object"
      },
      "ReflectionSelection": {
        "properties": {
          "mapping_digest": {
            "type": "string"
          },
          "mapping_graph": {
            "type": "string"
          },
          "reflection_digest": {
            "type": "string"
          },
          "reflection_graph": {
            "type": "string"
          },
          "source": {
            "$ref": "#/components/schemas/SourceEvidence"
          }
        },
        "required": [
          "mapping_graph",
          "mapping_digest",
          "reflection_graph",
          "reflection_digest",
          "source"
        ],
        "type": "object"
      },
      "Refusal": {
        "properties": {
          "code": {
            "type": "string"
          },
          "detail": {
            "type": "string"
          },
          "node": {
            "type": "string"
          }
        },
        "required": [
          "code",
          "node",
          "detail"
        ],
        "type": "object"
      },
      "Relation": {
        "additionalProperties": false,
        "properties": {
          "algorithm": {
            "type": "string"
          },
          "algorithm_version": {
            "type": "string"
          },
          "axis": {
            "type": "string"
          },
          "coordinates": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "frame": {
            "type": "string"
          },
          "identity": {
            "type": "string"
          },
          "kind": {
            "type": "string"
          },
          "measure": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/Measure"
              },
              {
                "type": "null"
              }
            ]
          },
          "origin": {
            "type": "string"
          },
          "parameters": {
            "type": "string"
          },
          "program": {
            "type": "string"
          },
          "representation": {
            "type": "string"
          },
          "scope": {
            "type": "string"
          },
          "source": {
            "type": "string"
          },
          "source_digest": {
            "type": "string"
          },
          "source_evidence": {
            "items": {
              "type": "string"
            },
            "type": "array"
          },
          "target": {
            "type": "string"
          }
        },
        "required": [
          "identity",
          "source",
          "target",
          "kind",
          "representation",
          "scope",
          "frame",
          "coordinates",
          "axis",
          "origin",
          "source_digest",
          "program",
          "algorithm",
          "algorithm_version",
          "parameters",
          "source_evidence"
        ],
        "type": "object"
      },
      "Request": {
        "oneOf": [
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "evaluate",
                "type": "string"
              },
              "plan": {
                "$ref": "#/components/schemas/ReasoningProgram"
              }
            },
            "required": [
              "kind",
              "plan"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "resolve",
                "type": "string"
              },
              "plan": {
                "$ref": "#/components/schemas/ReferencePlan"
              }
            },
            "required": [
              "kind",
              "plan"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "decide",
                "type": "string"
              },
              "plan": {
                "$ref": "#/components/schemas/DecisionPlan"
              }
            },
            "required": [
              "kind",
              "plan"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "operands",
                "type": "string"
              },
              "plan": {
                "$ref": "#/components/schemas/OperandProgram"
              }
            },
            "required": [
              "kind",
              "plan"
            ],
            "type": "object"
          },
          {
            "additionalProperties": false,
            "properties": {
              "kind": {
                "const": "spatial",
                "type": "string"
              },
              "plan": {
                "$ref": "#/components/schemas/SpatialProgram"
              }
            },
            "required": [
              "kind",
              "plan"
            ],
            "type": "object"
          }
        ]
      },
      "Role": {
        "enum": [
          "owner",
          "financial-admin",
          "reviewer",
          "viewer"
        ],
        "type": "string"
      },
      "Rule": {
        "additionalProperties": false,
        "properties": {
          "conditions": {
            "additionalProperties": {
              "type": [
                "boolean",
                "null"
              ]
            },
            "type": "object"
          },
          "disposition": {
            "type": "string"
          },
          "evidence": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "priority": {
            "format": "uint32",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "priority",
          "evidence",
          "conditions",
          "disposition"
        ],
        "type": "object"
      },
      "SchemeSummary": {
        "properties": {
          "concept_count": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "definitions": {
            "items": {
              "$ref": "#/components/schemas/Label"
            },
            "type": "array"
          },
          "id": {
            "type": "string"
          },
          "labels": {
            "items": {
              "$ref": "#/components/schemas/Label"
            },
            "type": "array"
          },
          "owner": {
            "type": "string"
          },
          "source_ids": {
            "description": "Admitted reference coverage. It does not claim executable support for a standard.",
            "items": {
              "type": "string"
            },
            "type": "array"
          }
        },
        "required": [
          "id",
          "owner",
          "labels",
          "definitions",
          "concept_count",
          "source_ids"
        ],
        "type": "object"
      },
      "SourceEvidence": {
        "properties": {
          "source_digest": {
            "type": "string"
          },
          "source_graph": {
            "type": "string"
          },
          "source_id": {
            "type": "string"
          }
        },
        "required": [
          "source_id",
          "source_digest",
          "source_graph"
        ],
        "type": "object"
      },
      "SpatialProgram": {
        "additionalProperties": false,
        "properties": {
          "adjacency_tolerance": {
            "type": "string"
          },
          "algorithm": {
            "type": "string"
          },
          "algorithm_version": {
            "type": "string"
          },
          "candidate_budget": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "data_graph": {
            "type": "string"
          },
          "definition_graph": {
            "type": "string"
          },
          "dimensionless": {
            "$ref": "#/components/schemas/Coordinates"
          },
          "evidence": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "maximum_separation": {
            "type": "string"
          },
          "occurrences": {
            "items": {
              "$ref": "#/components/schemas/Occurrence"
            },
            "type": "array"
          },
          "parameters": {
            "type": "string"
          },
          "relationship_budget": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "id",
          "definition_graph",
          "data_graph",
          "evidence",
          "algorithm",
          "algorithm_version",
          "parameters",
          "dimensionless",
          "maximum_separation",
          "adjacency_tolerance",
          "candidate_budget",
          "relationship_budget",
          "occurrences"
        ],
        "type": "object"
      },
      "Step": {
        "properties": {
          "evidence": {
            "type": "string"
          },
          "node": {
            "type": "string"
          },
          "result": {
            "$ref": "#/components/schemas/Value"
          }
        },
        "required": [
          "node",
          "evidence",
          "result"
        ],
        "type": "object"
      },
      "Topology": {
        "additionalProperties": false,
        "properties": {
          "candidate_pairs": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "direction_refusals": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "possible_pairs": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "predicate_evaluations": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          },
          "relations": {
            "items": {
              "$ref": "#/components/schemas/Relation"
            },
            "type": "array"
          },
          "structural_refusals": {
            "format": "uint",
            "minimum": 0,
            "type": "integer"
          }
        },
        "required": [
          "relations",
          "possible_pairs",
          "candidate_pairs",
          "predicate_evaluations",
          "direction_refusals",
          "structural_refusals"
        ],
        "type": "object"
      },
      "Value": {
        "oneOf": [
          {
            "properties": {
              "kind": {
                "const": "topology",
                "type": "string"
              },
              "value": {
                "$ref": "#/components/schemas/Topology"
              }
            },
            "required": [
              "kind",
              "value"
            ],
            "type": "object"
          },
          {
            "properties": {
              "kind": {
                "const": "operand",
                "type": "string"
              },
              "value": {
                "$ref": "#/components/schemas/OperandValue"
              }
            },
            "required": [
              "kind",
              "value"
            ],
            "type": "object"
          },
          {
            "properties": {
              "identity": {
                "type": "string"
              },
              "kind": {
                "const": "disposition",
                "type": "string"
              },
              "rule": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "table": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "identity",
              "table"
            ],
            "type": "object"
          },
          {
            "properties": {
              "aspect": {
                "type": "string"
              },
              "coordinates": {
                "$ref": "#/components/schemas/Coordinates"
              },
              "correspondence": {
                "type": [
                  "string",
                  "null"
                ]
              },
              "datatype": {
                "type": "string"
              },
              "kind": {
                "const": "numeric",
                "type": "string"
              },
              "lexical": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "lexical",
              "datatype",
              "coordinates",
              "aspect"
            ],
            "type": "object"
          },
          {
            "properties": {
              "kind": {
                "const": "boolean",
                "type": "string"
              },
              "value": {
                "type": "boolean"
              }
            },
            "required": [
              "kind",
              "value"
            ],
            "type": "object"
          },
          {
            "properties": {
              "kind": {
                "const": "reference",
                "type": "string"
              },
              "target": {
                "type": "string"
              }
            },
            "required": [
              "kind",
              "target"
            ],
            "type": "object"
          }
        ]
      },
      "ViewProfile": {
        "enum": [
          "tallyup.concept-view.v2"
        ],
        "type": "string"
      }
    },
    "securitySchemes": {
      "nativeApiKey": {
        "description": "Existing native credential selection; current tenant membership and permission still required",
        "scheme": "bearer",
        "type": "http"
      },
      "tenantBearer": {
        "bearerFormat": "JWT",
        "description": "Host-selected identity plus current native tenant membership and permission",
        "scheme": "bearer",
        "type": "http"
      }
    }
  },
  "info": {
    "description": "Discover schemes and concepts, traverse native meaning and removable provider/standard references, and evaluate explicit graph programs. Tenant requests select meaning within an authorized host-selected snapshot; they cannot select privileged database scopes or mint graph authority.",
    "title": "TallyUp semantic SPOG boundary",
    "version": "4.0.0"
  },
  "jsonSchemaDialect": "https://json-schema.org/draft/2020-12/schema",
  "openapi": "3.1.2",
  "paths": {
    "/client/manifest.json": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Manifest"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read manifest.json",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/client/package.json": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read package.json",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/client/paths.d.ts": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read paths.d.ts",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/client/tallyup-api-client.d.ts": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read tallyup-api-client.d.ts",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/client/tallyup-api-client.mjs": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/javascript": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read tallyup-api-client.mjs",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/docs": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read index.html",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/docs.css": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/css": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read docs.css",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/docs.mjs": {
      "get": {
        "description": "Available when the host loads a digest-verified publication matching this contract.",
        "responses": {
          "200": {
            "content": {
              "text/javascript": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Exact publication bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read docs.mjs",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/openapi.json": {
      "get": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            },
            "description": "Schemas generated from the native semantic carriers"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read the transport contract",
        "tags": [
          "Publication artifacts"
        ]
      }
    },
    "/v1/companies": {
      "get": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Companies"
                }
              }
            },
            "description": "Current native memberships and company creation availability"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          }
        ],
        "summary": "List your companies",
        "tags": [
          "Companies"
        ]
      },
      "post": {
        "description": "Creates a new company and its owner membership under the selected native onboarding policy. The signed-in person receives the policy's initial role. Provider apps and credentials remain operator-owned. Reuse the same idempotency key and name after interruption; a changed request with that key is refused.",
        "parameters": [
          {
            "in": "header",
            "name": "idempotency-key",
            "required": true,
            "schema": {
              "$ref": "#/components/schemas/CommandId"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateCompany"
              }
            }
          },
          "required": true,
          "x-max-bytes": 2048
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Company"
                }
              }
            },
            "description": "Admitted company, available through the ordinary tenant program paths"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          }
        ],
        "summary": "Create a company workspace",
        "tags": [
          "Companies"
        ]
      }
    },
    "/v1/contracts/reasoning-result": {
      "get": {
        "responses": {
          "200": {
            "content": {
              "application/n-quads": {
                "schema": {
                  "type": "string"
                }
              }
            },
            "description": "Native SHACL in its explicit named graph"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Read the result graph contract",
        "tags": [
          "Graph reasoning"
        ]
      }
    },
    "/v1/reasoning": {
      "post": {
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Request"
              }
            }
          },
          "required": true,
          "x-max-bytes": 1048576
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReasoningOutcome"
                }
              }
            },
            "description": "Exact or explicitly selected operand result and evidence trace; no database admission"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReasoningOutcome"
                }
              },
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Malformed explicit program or transport refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ReasoningOutcome"
                }
              }
            },
            "description": "Semantic program refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "summary": "Evaluate an explicit graph program",
        "tags": [
          "Graph reasoning"
        ]
      }
    },
    "/v1/tenants/{tenant}/programs": {
      "get": {
        "description": "Read authorized resource instances and commands selected by the host. Empty selections provide no execution capability. State is an explicit native N-Quads projection; protected material is excluded.",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "items": {
                    "$ref": "#/components/schemas/NativeProgramResource"
                  },
                  "type": "array"
                }
              }
            },
            "description": "Authorized native resources"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Read selected native resources",
        "tags": [
          "Native programs"
        ],
        "x-max-response-bytes": 16777216
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        }
      ]
    },
    "/v1/tenants/{tenant}/programs/{coordinate}": {
      "get": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NativeProgramResource"
                }
              }
            },
            "description": "Current retained state and freshly permitted commands"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Read a selected native resource",
        "tags": [
          "Native programs"
        ],
        "x-max-response-bytes": 16777216
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        },
        {
          "in": "path",
          "name": "coordinate",
          "required": true,
          "schema": {
            "pattern": "^[A-Za-z0-9_-]{1,64}$",
            "type": "string"
          }
        }
      ],
      "post": {
        "description": "Supply the returned command's bounded RDF input. The host selects its implementation, authority, state and outputs. A durable claim precedes a provider effect. After any interruption, read retained state before continuing; replay never authorizes another one-use exchange.",
        "parameters": [
          {
            "in": "header",
            "name": "idempotency-key",
            "required": true,
            "schema": {
              "$ref": "#/components/schemas/CommandId"
            }
          },
          {
            "description": "The last observed retained revision as one quoted strong entity tag. Omit only for a resource with no revision.",
            "in": "header",
            "name": "if-match",
            "required": false,
            "schema": {
              "maxLength": 128,
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/n-quads": {
              "schema": {
                "maxLength": 8192,
                "minLength": 1,
                "type": "string"
              }
            }
          },
          "required": true,
          "x-max-bytes": 8192
        },
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/NativeProgramResource"
                }
              }
            },
            "description": "Retained progress after one bounded acquisition step"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Execute an admitted native command",
        "tags": [
          "Native programs"
        ],
        "x-max-response-bytes": 16777216
      }
    },
    "/v1/tenants/{tenant}/programs/{coordinate}/evidence/{digest}": {
      "get": {
        "description": "Original provider response bytes selected by the retained resource, with fresh native read permission and exact storage digest validation. Consumers should retain the original text to preserve decimal lexemes.",
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "additionalProperties": true,
                  "type": "object"
                }
              }
            },
            "description": "Exact retained JSON source bytes"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Read retained source evidence",
        "tags": [
          "Native programs"
        ],
        "x-max-response-bytes": 16777216
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        },
        {
          "in": "path",
          "name": "coordinate",
          "required": true,
          "schema": {
            "pattern": "^[A-Za-z0-9_-]{1,64}$",
            "type": "string"
          }
        },
        {
          "in": "path",
          "name": "digest",
          "required": true,
          "schema": {
            "pattern": "^[a-f0-9]{64}$",
            "type": "string"
          }
        }
      ]
    },
    "/v1/tenants/{tenant}/schemes": {
      "get": {
        "description": "Search native schemes, select an exact returned scheme to page concepts, or select a concept for its definition. include=references adds admitted provider/standard correspondence; include=provenance exposes the selected named graphs. Revision and cursor pin the selection. Reference coverage does not imply executable support.",
        "parameters": [
          {
            "description": "Opaque continuation bound to tenant, revision and selection; never a graph coordinate.",
            "in": "query",
            "name": "after",
            "required": false,
            "schema": {
              "description": "Opaque continuation bound to tenant, revision and selection; never a graph coordinate.",
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "An exact concept identity within the selected scheme.",
            "in": "query",
            "name": "concept",
            "required": false,
            "schema": {
              "description": "An exact concept identity within the selected scheme.",
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "Meaning reads native definitions only. References adds admitted source coverage; provenance also includes graph selections.",
            "in": "query",
            "name": "include",
            "required": false,
            "schema": {
              "default": "meaning",
              "description": "Meaning reads native definitions only. References adds admitted source coverage; provenance also includes graph selections.",
              "enum": [
                "meaning",
                "references",
                "provenance"
              ],
              "type": "string"
            }
          },
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "page_size",
            "required": false,
            "schema": {
              "default": 25,
              "format": "uint16",
              "maximum": 100,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Case-insensitive text in identities, labels, definitions or mapped source evidence.",
            "in": "query",
            "name": "q",
            "required": false,
            "schema": {
              "default": "",
              "description": "Case-insensitive text in identities, labels, definitions or mapped source evidence.",
              "maxLength": 200,
              "type": "string"
            }
          },
          {
            "description": "Pin the revision returned by a previous page. Only the host-selected snapshot is readable.",
            "in": "query",
            "name": "revision",
            "required": false,
            "schema": {
              "description": "Pin the revision returned by a previous page. Only the host-selected snapshot is readable.",
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "An exact native scheme identity returned by discovery. Selects its concepts.",
            "in": "query",
            "name": "scheme",
            "required": false,
            "schema": {
              "description": "An exact native scheme identity returned by discovery. Selects its concepts.",
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "Exact source_id returned in source_ids; filters native meaning with admitted mappings.",
            "in": "query",
            "name": "source",
            "required": false,
            "schema": {
              "description": "Exact source_id returned in source_ids; filters native meaning with admitted mappings.",
              "maxLength": 512,
              "minLength": 1,
              "type": [
                "string",
                "null"
              ]
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Discovery"
                }
              }
            },
            "description": "One authorized native catalog and its removable evidence"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Discover schemes and concepts",
        "tags": [
          "Schemes and concepts"
        ]
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        }
      ]
    },
    "/v1/tenants/{tenant}/schemes/view": {
      "get": {
        "description": "Read bounded nodes and edges for an explicit scheme, occurrence and focus. Native, mapping and source graphs remain distinct; external evidence never supplies native authority.",
        "parameters": [
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "after",
            "required": false,
            "schema": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "focus",
            "required": false,
            "schema": {
              "type": [
                "string",
                "null"
              ]
            }
          },
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "occurrence",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "page_size",
            "required": true,
            "schema": {
              "format": "uint16",
              "maximum": 256,
              "minimum": 1,
              "type": "integer"
            }
          },
          {
            "description": "Semantic selection",
            "in": "query",
            "name": "scheme",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ConceptView"
                }
              }
            },
            "description": "Selected concept relationships with exact graph provenance"
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Traverse a selected concept",
        "tags": [
          "Schemes and concepts"
        ]
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        }
      ]
    },
    "/v1/tenants/{tenant}/schemes/{revision}/query": {
      "get": {
        "description": "SPARQL Protocol SELECT/ASK profile. GET carries query parameters; POST carries UTF-8 application/sparql-query or an application/x-www-form-urlencoded body. Current authorization and execution share one PostgreSQL snapshot. Only the host-selected named graph is available; the default graph is empty. Writes, dataset substitution and remote SERVICE are refused. The service caps results at 256 rows and bounds bytes, database work and time; a limit failure returns no partial results. W3C SPARQL Results JSON is unwrapped; head.link contains self-contained PROV RDF in a data:application/n-triples;base64 URI. No persistence or OWL inference is implied.",
        "externalDocs": {
          "url": "https://www.w3.org/TR/sparql11-protocol/"
        },
        "parameters": [
          {
            "in": "query",
            "name": "query",
            "required": true,
            "schema": {
              "maxLength": 16384,
              "minLength": 1,
              "type": "string"
            }
          },
          {
            "description": "Optional exact host-selected native named graph. The default graph is empty; other datasets are refused.",
            "in": "query",
            "name": "named-graph-uri",
            "required": false,
            "schema": {
              "maxLength": 2048,
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "content": {
              "application/sparql-results+json": {
                "schema": {
                  "additionalProperties": true,
                  "description": "https://www.w3.org/TR/sparql11-results-json/",
                  "type": "object"
                }
              }
            },
            "description": "W3C SELECT/ASK results and linked RDF provenance. Decode with a standard SPARQL results parser."
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Query an exact native graph revision",
        "tags": [
          "Schemes and concepts"
        ]
      },
      "parameters": [
        {
          "in": "path",
          "name": "tenant",
          "required": true,
          "schema": {
            "pattern": "^ten_[A-Za-z0-9_-]{6,64}$",
            "type": "string"
          }
        },
        {
          "description": "Exact SHA-256 native graph revision from discovery provenance, without the sha256: prefix. The host must still select this revision.",
          "in": "path",
          "name": "revision",
          "required": true,
          "schema": {
            "pattern": "^[a-f0-9]{64}$",
            "type": "string"
          }
        }
      ],
      "post": {
        "description": "SPARQL Protocol SELECT/ASK profile. GET carries query parameters; POST carries UTF-8 application/sparql-query or an application/x-www-form-urlencoded body. Current authorization and execution share one PostgreSQL snapshot. Only the host-selected named graph is available; the default graph is empty. Writes, dataset substitution and remote SERVICE are refused. The service caps results at 256 rows and bounds bytes, database work and time; a limit failure returns no partial results. W3C SPARQL Results JSON is unwrapped; head.link contains self-contained PROV RDF in a data:application/n-triples;base64 URI. No persistence or OWL inference is implied.",
        "externalDocs": {
          "url": "https://www.w3.org/TR/sparql11-protocol/"
        },
        "parameters": [
          {
            "description": "Optional exact host-selected native named graph. The default graph is empty; other datasets are refused.",
            "in": "query",
            "name": "named-graph-uri",
            "required": false,
            "schema": {
              "maxLength": 2048,
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/sparql-query": {
              "schema": {
                "maxLength": 16384,
                "minLength": 1,
                "type": "string"
              }
            },
            "application/x-www-form-urlencoded": {
              "schema": {
                "minLength": 1,
                "type": "string"
              }
            }
          },
          "required": true,
          "x-max-bytes": 131072
        },
        "responses": {
          "200": {
            "content": {
              "application/sparql-results+json": {
                "schema": {
                  "additionalProperties": true,
                  "description": "https://www.w3.org/TR/sparql11-results-json/",
                  "type": "object"
                }
              }
            },
            "description": "W3C SELECT/ASK results and linked RDF provenance. Decode with a standard SPARQL results parser."
          },
          "400": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "401": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "403": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "404": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "405": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "406": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "408": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "409": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "413": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "414": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "415": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "422": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "500": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          },
          "503": {
            "content": {
              "application/problem+json": {
                "schema": {
                  "$ref": "#/components/schemas/Problem"
                }
              }
            },
            "description": "Transport or authorized semantic-selection refusal"
          }
        },
        "security": [
          {
            "tenantBearer": []
          },
          {
            "nativeApiKey": []
          }
        ],
        "summary": "Query an exact native graph revision",
        "tags": [
          "Schemes and concepts"
        ]
      }
    }
  },
  "tags": [
    {
      "description": "Your native company memberships and self-service workspace creation.",
      "name": "Companies",
      "x-docs-id": "companies"
    },
    {
      "description": "Native meaning and removable provider/standard evidence within the current tenant selection.",
      "name": "Schemes and concepts",
      "x-docs-id": "meaning"
    },
    {
      "description": "Bounded computation over explicitly supplied graph programs. Evaluation does not admit or persist facts.",
      "name": "Graph reasoning",
      "x-docs-id": "reasoning"
    },
    {
      "description": "Read selected durable native resources, execute their admitted commands, and inspect retained source evidence. Current native authorization governs every effect and read.",
      "name": "Native programs",
      "x-docs-id": "native-programs"
    },
    {
      "description": "Exact schemas, generated client and documentation.",
      "name": "Publication artifacts",
      "x-docs-id": "publication"
    }
  ],
  "x-engine-source-digest": "sha256:f881e544f8c8a4ae3036dc6ddd929d829994f51d0892cbdb4f9e4f3b032d8d0a"
}