opentide

Specifications

What a Tide object is, how the object families chain, and how to read the normative OpenTide specifications.

These are the normative specifications for OpenTide — the contract that every detection object, tool, and agent relies on. The opentide package implements this contract; the generated JSON Schema is a build artifact, never the source of truth. Each spec is versioned independently — there is no framework-wide version.

What is a Tide object?

Detection content in OpenTide is a small graph of typed objects, each a YAML file with a shared metadata block. Three families exist:

FamilySchemaAnswersSpec
Threatthreat::1.0What do we defend against?threat-1.0
Objectiveobjective::1.0What are we trying to detect?objective-1.0
Rulerule::1.0How do we detect it, on which platform?rule-1.0

How objects chain

Objects reference each other by UUID. References point from rule to objective to threat; detection coverage flows the other way.

flowchart LR
  Rule -->|detection_model| Objective
  Objective -->|objective.threats| Threat
  Threat -. "is covered by" .-> Objective
  Objective -. "is implemented by" .-> Rule

Two version fields

Every object declares both, and they are independent:

  • metadata.schema (e.g. rule::1.0) — the structural revision, selecting the validation model. See versioning.
  • metadata.version (e.g. 1.2.0) — the instance content version; git is the authoritative history.

Where things live

ArtifactLocation
Normative specsthis section, specs/
Conformance fixtures (valid/invalid YAML)fixtures/
Canonical vocabularies (allowed values)vocabularies/
Implementationopentide Python package

Reading order

flowchart LR
  overview["This overview"] --> conf["Conformance (MUST/SHOULD/MAY)"]
  conf --> meta["Metadata"]
  meta --> obj["Object spec (threat / objective / rule)"]
  obj --> val["Validation"]
  1. Conformance — how to read the normative keywords.
  2. Metadata — the block every object shares.
  3. The object spec you care about — threat, objective, or rule.
  4. Validation — what the engine checks and when.

Full index

The spec index lists every active spec, its version, and status. Core infrastructure specs cover workspace layout, configuration, deployment, platforms, metaschema keywords, and vocabularies.

Changes follow the process in Governance.

On this page