{% extends "base.html" %} {% import "_components.html" as ui %} {% block title %}Artifact · Striatum{% endblock %} {% block main %}

Artifact

{{ artifact.artifact_kind }} {% if artifact.logical_name %} {{ artifact.logical_name }} {% endif %}

Path

{{ artifact.repo_path }}

Metadata

Artifact ID
{{ artifact.artifact_id }}
SHA-256
{{ artifact.content_sha256 }}
Size
{{ artifact.size_bytes }} bytes
Created
{{ artifact.created_at }}
{% if artifact.author_line %}
Author
{{ artifact.author_line }}
{% endif %}

Byline integrity

{{ ui.byline_line(artifact.author_line, artifact.expected_author_line, artifact.lane_attestation_chip.attested) }} {{ ui.lane_evidence_chip(artifact.lane_evidence_chip.state, artifact.lane_evidence_chip.rationale) }}

Provenance trail

{% if artifact.provenance_trail %} {% else %}

No operator-on-behalf provenance events recorded for this artifact.

{% endif %} {% if rendered_md %}

Body

{{ rendered_md | safe }}
{% elif body_text %}

Body

{{ body_text }}
{% else %}

Inline rendering is not available for this artifact kind. Use the raw API: GET /v1/artifacts/{{ artifact.artifact_id }}/raw.

{% endif %}
{% endblock %}