85 lines
3 KiB
YAML
85 lines
3 KiB
YAML
# Default Master Deliverables List spec, served by zddc-server when no
|
|
# operator-supplied table.yaml exists at archive/<party>/mdl/.
|
|
#
|
|
# Columns mirror the tracking-number component model documented at
|
|
# zddc.varasys.io/reference.html#tracking-numbers — every column from
|
|
# `originator` through `suffix` is one slot of a deliverable's
|
|
# permanent identifier. The default ships the five required components
|
|
# + the optional per-deliverable suffix; the project-wide phase / area
|
|
# columns are commented out below — uncomment them (alongside the
|
|
# matching form.yaml properties + .zddc filename_format) only if your
|
|
# project uses them on every deliverable.
|
|
#
|
|
# Beyond the tracking-number fields, the table tracks the deliverable's
|
|
# title, planned revision and date, current status, owner, and notes —
|
|
# the standard MDL columns operators expect for planning and status
|
|
# tracking.
|
|
#
|
|
# To customize: drop your own table.yaml + form.yaml into the same
|
|
# directory (archive/<party>/mdl/). The whole directory IS the table —
|
|
# spec, row-edit form, and rows are siblings. Override examples:
|
|
# - Hide a column: omit it from the columns: list here.
|
|
# - Rename a column header: change `title:`.
|
|
# - Add a custom column: append a {field, title} entry AND add a
|
|
# matching property in form.yaml's schema.properties so the row
|
|
# form lets users fill it in.
|
|
# - Tighten column widths: set `width:` (CSS length, e.g. "8em").
|
|
# - Pre-filter rows on load: defaults.filter[<field>] = "<text>".
|
|
#
|
|
# The whole directory is self-contained — copying mdl/ to a new
|
|
# project takes the spec, the form, and every row YAML with it.
|
|
|
|
title: Master Deliverables List
|
|
description: Planned and actual deliverables for this party. Columns mirror the tracking-number components plus standard MDL metadata.
|
|
|
|
columns:
|
|
# --- Tracking-number components (in the order they appear in the
|
|
# canonical filename: originator-project-discipline-type-sequence
|
|
# [-suffix]). originator is folder-bound (set from the party folder);
|
|
# suffix is the optional per-deliverable part marker.
|
|
- field: originator
|
|
title: Originator
|
|
width: 8em
|
|
# - field: phase # project-wide; uncomment with form.yaml + filename_format
|
|
# title: Phase
|
|
# width: 5em
|
|
- field: project
|
|
title: Project
|
|
width: 8em
|
|
# - field: area # project-wide; uncomment with form.yaml + filename_format
|
|
# title: Area
|
|
# width: 5em
|
|
- field: discipline
|
|
title: Disc.
|
|
width: 5em
|
|
- field: type
|
|
title: Type
|
|
width: 6em
|
|
- field: sequence
|
|
title: Seq.
|
|
width: 5em
|
|
- field: suffix
|
|
title: Suffix
|
|
width: 5em
|
|
|
|
# --- Deliverable metadata.
|
|
- field: title
|
|
title: Deliverable
|
|
- field: plannedRevision
|
|
title: Rev.
|
|
width: 5em
|
|
- field: plannedDate
|
|
title: Planned
|
|
format: date
|
|
width: 8em
|
|
- field: status
|
|
title: Status
|
|
width: 6em
|
|
enum: [DFT, IFR, IFA, IFC, AFC, AB]
|
|
- field: owner
|
|
title: Owner
|
|
width: 12em
|
|
|
|
defaults:
|
|
sort:
|
|
- { field: plannedDate, dir: asc }
|