Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

OpenOntologyLite

OpenOntologyLite makes organizational meaning portable across AI models, agent frameworks, databases, and vendors.

Status

Ready for public alpha release preparation with documented limitations.

Alpha Warning

OpenOntologyLite is 0.1.0a3 alpha software. The format may evolve before stable 1.0, and diff classifications are conservative rule-based guidance rather than legal, operational, or authorization guarantees.

Why It Exists

Organizations increasingly describe their work inside AI systems, agent frameworks, RAG stores, policy engines, and vendor platforms. OpenOntologyLite asks a practical question: can an organization move operational knowledge between systems without rebuilding the meaning of its business?

Core Capabilities

  • YAML and JSON ontology loading with safe parsers.
  • Typed entities, properties, relationships, actions, permissions, and preconditions.
  • Structural and semantic validation with stable machine-readable codes.
  • Deterministic canonical JSON and SHA-256 digest generation.
  • Cycle analysis for relationships and reference properties.
  • JSON Schema 2020-12, Mermaid, Markdown documentation, inspection, and diff exports.
  • Typed AI System Maps for workload risk, model routes, review, escalation, audit, and cost expectations.
  • Local-first operation with no telemetry, network calls, database, server, cloud account, or AI model requirement.

Installation

python -m pip install openontologylite

For development:

python -m pip install -e ".[dev]"

Quick Start

openontology validate examples/customer_support.yaml
openontology inspect examples/customer_support.yaml
openontology digest examples/customer_support.yaml
openontology export-json-schema examples/customer_support.yaml --output build/customer-support.schema.json
openontology export-mermaid examples/customer_support.yaml --output build/customer-support.mmd
openontology docs examples/customer_support.yaml --output build/customer-support.md

AI workload mapping:

openontology ai-map validate examples/ai_system_map/customer_support_ai.yaml
openontology ai-map report examples/ai_system_map/customer_support_ai.yaml --output build/customer-support-ai.md
openontology ai-map render examples/ai_system_map/customer_support_ai.yaml --format mermaid --output build/customer-support-ai.mmd

Use --strict or --fail-on-warning when warnings must also produce a nonzero exit. See AI System Maps for the format and control rules.

Example Ontology

schema_version: "1.0"
ontology:
  id: customer-service
  name: Customer Service Ontology
  version: "1.0.0"
  namespace: example.customer_service
entities:
  Customer:
    properties:
      customer_id:
        type: string
        required: true
      account_status:
        type: string
        required: true
        enum: [active, suspended, closed]

Python API

from open_ontology_lite import load_ontology, validate_ontology, ontology_digest

ontology = load_ontology("examples/customer_support.yaml")
report = validate_ontology(ontology)
print(report.ok)
print(ontology_digest(ontology))

Validation Example

Validation returns stable codes, messages, logical paths, suggestions, and context. Strict permission validation is the default; undeclared permissions fail unless non-strict mode is requested.

openontology validate tests/fixtures/invalid/undeclared_permission.yaml --json

Diff Example

openontology diff tests/fixtures/diff/customer-support-v1.yaml tests/fixtures/diff/customer-support-v2.yaml

Diff exit behavior:

  • 0: no breaking changes detected;
  • 1: breaking changes detected;
  • 2: invalid input or execution error.

JSON Schema Export

OpenOntologyLite exports deterministic JSON Schema 2020-12 documents. Some ontology semantics, such as actions, permissions, and relationship intent, are lossy in JSON Schema and are documented rather than represented as perfect round-trip data.

Mermaid Export

The Mermaid command emits source text only. It does not require Mermaid to be installed.

AI System Maps

An AI System Map records the portable business meaning of AI work: named tasks and entities, risk levels, permitted model routes, human-review and escalation requirements, expected audit events, expected cost/outcome metrics, and integration patterns. It is a declarative artifact, not a runtime router, compliance certification, or policy enforcement engine.

The route vocabulary is intentionally small: candidate_model, baseline_model, human_review, and blocked_or_escalate. Risk levels are low, medium, high, regulated, and unknown.

schema_version: "1.0"
system:
  name: Customer Support AI
  risk_profile: medium
tasks:
  - name: PasswordReset
    risk_level: low
    allowed_routes: [candidate_model, baseline_model]
    expected_audit_events: [route_selected]
    expected_metrics: [estimated_cost, resolution_outcome]

Ecosystem Position

OpenOntologyLite is designed to stand alone in the 0.1.0 alpha line. AI System Map integration entries describe portable integration patterns for AgentForge, PrivateAIStack, ModelSwapBench, AgentPolicyPack, AIAuditLog, and AIMeter OSS; they do not claim verified live integrations.

Security Model

Ontology and AI System Map files are untrusted input. The package uses bounded regular-file reads, safe YAML loading, duplicate-key rejection, parsed-node and nesting limits, non-executing preconditions, deterministic serialization, sanitized diagnostics, and escaping for terminal, Markdown, and Mermaid outputs. CLI export commands validate inputs before generating derived artifacts. OpenOntologyLite does not resolve remote schema references or execute expressions.

Limitations

  • No full RDF or OWL compatibility.
  • No SPARQL.
  • No general-purpose inference engine.
  • No database synchronization.
  • No graphical editor.
  • No action execution.
  • No authorization enforcement.
  • Preconditions are declarative text only.
  • No remote schema resolution.
  • No hosted service.
  • AI System Maps document intended controls but do not execute routing, review, audit, or cost enforcement.
  • Diff classification is rule-based and conservative.
  • JSON Schema export may be lossy for ontology-specific semantics.
  • Relationship cycles are reported but not automatically invalid.
  • Format may evolve before stable 1.0.

Roadmap

Current alpha, 0.1.0a3:

  • Added typed AI System Maps for tasks, entities, risk, model routes, review, escalation, audit, and cost/outcome expectations.
  • Added deterministic Markdown reports, Mermaid rendering, canonical digesting, and public Python APIs.
  • Added openontology ai-map validate, report, and render.
  • Added a fictional customer-support AI workload example.
  • Hardened bounded loading, duplicate-key handling, diagnostics, terminal output, and validation issue retention.

Next alpha:

  • Additional exporters.
  • Stronger resource-limit configuration.
  • More detailed migration hints.
  • Forge adapter.
  • ModelSwapBench fixtures.
  • PrivateAIStack RAG metadata.
  • Policy hooks for AgentPolicyPack.

Later, 0.2:

  • Optional SQLite catalog.
  • Ontology package imports.
  • Modular namespaces.
  • Signed manifests.
  • Provenance metadata.

Contributing

See CONTRIBUTING.md. Run Ruff, mypy strict, pytest with branch coverage, Bandit, pip-audit, build, and Twine check before release preparation.

License

MIT.

Author

sekacorn

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openontologylite-0.1.0a3.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openontologylite-0.1.0a3-py3-none-any.whl (44.7 kB view details)

Uploaded Python 3

File details

Details for the file openontologylite-0.1.0a3.tar.gz.

File metadata

  • Download URL: openontologylite-0.1.0a3.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for openontologylite-0.1.0a3.tar.gz
Algorithm Hash digest
SHA256 7f3ef25dd0140d45e2874e4b514cf019a38180454210fe9303a9ab45ae616629
MD5 e19fbc48bf619a20818dd53a2167692e
BLAKE2b-256 c1486ba63369a6e889bfd1eb8f8bca4d8fb51059d013f712098be906bbc532c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for openontologylite-0.1.0a3.tar.gz:

Publisher: release.yml on sekacorn/OpenOntologyLite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openontologylite-0.1.0a3-py3-none-any.whl.

File metadata

File hashes

Hashes for openontologylite-0.1.0a3-py3-none-any.whl
Algorithm Hash digest
SHA256 42240d522ff17a711b5215e5da5f8bd58d9209e1978a8d290d3c8a6d452829ea
MD5 2a9553d7cc6ba487dc03c7edaf986aee
BLAKE2b-256 ba575fa6254cf044c3002fef3770b60500a51ef4c67f56b39c323b93128077a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for openontologylite-0.1.0a3-py3-none-any.whl:

Publisher: release.yml on sekacorn/OpenOntologyLite

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.0a3 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page