OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

harness.evidence.get

Fetch one evidence artifact by id.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: evidence
  • File: packages/libs/contracts-spec/src/harness/queries/harnessEvidenceGet.query.ts
  • Support evidence drill-down and replay inputs.

    field.key.label
    harness.evidence.get
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    harness.evidence.get
    field.description.label

    Fetch one evidence artifact by id.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: evidence
  • File: packages/libs/contracts-spec/src/harness/queries/harnessEvidenceGet.query.ts
  • Support evidence drill-down and replay inputs.

    field.tags.label
    evidence
    field.owners.label
    field.stability.label

    Fetch one evidence artifact by id.

    Goal

    Support evidence drill-down and replay inputs.

    Context

    Used by audit UIs and replay tooling.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineQuery } from '../../operations';
    import {
    	HARNESS_DOMAIN,
    	HARNESS_OWNERS,
    	HARNESS_STABILITY,
    	HARNESS_TAGS,
    } from '../constants';
    import { EvidenceArtifactModel } from '../models';
    
    export const HarnessEvidenceGetQuery = defineQuery({
    	meta: {
    		key: 'harness.evidence.get',
    		title: 'Get Harness Evidence',
    		version: '1.0.0',
    		description: 'Fetch one evidence artifact by id.',
    		goal: 'Support evidence drill-down and replay inputs.',
    		context: 'Used by audit UIs and replay tooling.',
    		domain: HARNESS_DOMAIN,
    		owners: HARNESS_OWNERS,
    		tags: [...HARNESS_TAGS, 'evidence'],
    		stability: HARNESS_STABILITY,
    	},
    	capability: { key: 'harness.evidence', version: '1.0.0' },
    	io: {
    		input: HarnessEvidenceGetInput,
    		output: HarnessEvidenceGetOutput,
    	},
    	policy: {
    		auth: 'user',
    		pii: [],
    	},
    });