Skip to contents

Plot DIF/bias screening simulation results

Usage

# S3 method for class 'mfrm_signal_detection'
plot(
  x,
  signal = c("dif", "bias"),
  metric = c("power", "false_positive", "estimate", "screen_rate",
    "screen_false_positive"),
  x_var = c("n_person", "n_rater", "n_criterion", "raters_per_person"),
  group_var = NULL,
  draw = TRUE,
  ...
)

Arguments

x

Output from evaluate_mfrm_signal_detection().

signal

Whether to plot DIF or bias screening results.

metric

Metric to plot. For signal = "bias", prefer metric = "screen_rate" for the screening hit rate. The older metric = "power" spelling is retained as a backwards-compatible alias that maps to BiasScreenRate.

x_var

Design variable used on the x-axis. When x was generated from a sim_spec with custom public facet names, the corresponding aliases (for example n_judge, n_task, judge_per_person) are also accepted. Role keywords (person, rater, criterion, assignment) are accepted as an abstraction over the current two-facet schema.

group_var

Optional design variable used for separate lines. The same alias rules as x_var apply.

draw

If TRUE, draw with base graphics; otherwise return plotting data.

...

Reserved for generic compatibility.

Value

If draw = TRUE, invisibly returns plotting data. If draw = FALSE, returns that plotting-data list directly. The returned list includes resolved canonical variables (x_var, group_var) together with public labels (x_label, group_label), design_variable_aliases, design_descriptor, planning_scope, planning_constraints, planning_schema, display_metric, and interpretation_note so callers can label bias-side plots as screening summaries rather than formal power/error-rate displays.

Examples

# \donttest{
sig_eval <- suppressWarnings(evaluate_mfrm_signal_detection(
  n_person = 8,
  n_rater = 2,
  n_criterion = 2,
  raters_per_person = 1,
  reps = 1,
  maxit = 30,
  bias_max_iter = 1,
  seed = 123
))
plot(sig_eval, signal = "dif", metric = "power", x_var = "n_person", draw = FALSE)
#> $plot
#> [1] "signal_detection"
#> 
#> $signal
#> [1] "dif"
#> 
#> $metric
#> [1] "power"
#> 
#> $metric_col
#> [1] "DIFPower"
#> 
#> $display_metric
#> [1] "DIF target-flag rate"
#> 
#> $interpretation_note
#> [1] "DIF-side rates summarize target/non-target flagging behavior under the selected DFF method and threshold settings."
#> 
#> $x_var
#> [1] "n_person"
#> 
#> $x_label
#> [1] "n_person"
#> 
#> $group_var
#> NULL
#> 
#> $group_label
#> NULL
#> 
#> $design_variable_aliases
#>            n_person             n_rater         n_criterion   raters_per_person 
#>          "n_person"           "n_rater"       "n_criterion" "raters_per_person" 
#> 
#> $design_descriptor
#> # A tibble: 4 × 6
#>   role       canonical         alias             facet     quantity  description
#>   <chr>      <chr>             <chr>             <chr>     <chr>     <chr>      
#> 1 person     n_person          n_person          Person    persons   Number of …
#> 2 rater      n_rater           n_rater           Rater     facet_le… Number of …
#> 3 criterion  n_criterion       n_criterion       Criterion facet_le… Number of …
#> 4 assignment raters_per_person raters_per_person Rater     assignme… Number of …
#> 
#> $planning_scope
#> $planning_scope$planner_contract
#> [1] "role_based_two_non_person_facets"
#> 
#> $planning_scope$planner_stage
#> [1] "role_based"
#> 
#> $planning_scope$supports_arbitrary_facet_planning
#> [1] FALSE
#> 
#> $planning_scope$supports_arbitrary_facet_estimation
#> [1] TRUE
#> 
#> $planning_scope$supported_non_person_roles
#> [1] "rater"     "criterion"
#> 
#> $planning_scope$supported_non_person_facet_count
#> [1] 2
#> 
#> $planning_scope$role_labels
#> [1] "Rater"     "Criterion"
#> 
#> $planning_scope$design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_scope$design_variable_aliases
#>            n_person             n_rater         n_criterion   raters_per_person 
#>          "n_person"           "n_rater"       "n_criterion" "raters_per_person" 
#> 
#> $planning_scope$facet_manifest
#> # A tibble: 3 × 8
#>   planner_role facet     facet_kind level_count planning_count_variable
#>   <chr>        <chr>     <chr>            <int> <chr>                  
#> 1 person       Person    person              NA n_person               
#> 2 rater        Rater     non_person          NA n_rater                
#> 3 criterion    Criterion non_person          NA n_criterion            
#> # ℹ 3 more variables: planning_count_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_scope$structural_review_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_scope$structural_review_stage
#> [1] "deterministic_review"
#> 
#> $planning_scope$structural_design_input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_scope$note
#> [1] "Planning helpers vary one person count and two named non-person facet roles (Rater and Criterion). Estimation may contain additional facets, but planning and forecasting are limited to this role-based design."
#> 
#> 
#> $planning_constraints
#> $planning_constraints$mutable_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_constraints$locked_design_variables
#> character(0)
#> 
#> $planning_constraints$lock_reasons
#> named character(0)
#> 
#> $planning_constraints$feasibility_rule
#> [1] "`raters_per_person <= n_rater`"
#> 
#> $planning_constraints$note
#> [1] "Current scalar-argument planning paths allow `n_person`, `n_rater`, `n_criterion`, and `raters_per_person` to vary subject to `raters_per_person <= n_rater`."
#> 
#> 
#> $planning_schema
#> $planning_schema$planner_contract
#> [1] "role_based_two_non_person_facets"
#> 
#> $planning_schema$planner_stage
#> [1] "role_based"
#> 
#> $planning_schema$supports_arbitrary_facet_planning
#> [1] FALSE
#> 
#> $planning_schema$supports_arbitrary_facet_estimation
#> [1] TRUE
#> 
#> $planning_schema$role_labels
#> [1] "Rater"     "Criterion"
#> 
#> $planning_schema$design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$design_variable_aliases
#>            n_person             n_rater         n_criterion   raters_per_person 
#>          "n_person"           "n_rater"       "n_criterion" "raters_per_person" 
#> 
#> $planning_schema$facet_manifest
#> # A tibble: 3 × 8
#>   planner_role facet     facet_kind level_count planning_count_variable
#>   <chr>        <chr>     <chr>            <int> <chr>                  
#> 1 person       Person    person              NA n_person               
#> 2 rater        Rater     non_person          NA n_rater                
#> 3 criterion    Criterion non_person          NA n_criterion            
#> # ℹ 3 more variables: planning_count_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_review_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_facet_table
#> # A tibble: 3 × 10
#>   facet     facet_kind level_count structural_facet_key design_axis_class
#>   <chr>     <chr>            <int> <chr>                <chr>            
#> 1 Person    person              NA person               person_count     
#> 2 Rater     non_person          NA rater                facet_level_count
#> 3 Criterion non_person          NA criterion            facet_level_count
#> # ℹ 5 more variables: current_planning_count_variable <chr>,
#> #   current_planning_count_alias <chr>, current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>, review_stage <chr>
#> 
#> $planning_schema$structural_design_template
#> $planning_schema$structural_design_template$facets
#> $planning_schema$structural_design_template$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_template$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_template$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_template$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_template$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema
#> $planning_schema$structural_design_schema$design_review_contract
#> [1] "structural_design_review"
#> 
#> $planning_schema$structural_design_schema$design_review_stage
#> [1] "supported"
#> 
#> $planning_schema$structural_design_schema$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$planner_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$facet_table
#> # A tibble: 3 × 10
#>   facet     facet_kind level_count structural_facet_key design_axis_class
#>   <chr>     <chr>            <int> <chr>                <chr>            
#> 1 Person    person              NA person               person_count     
#> 2 Rater     non_person          NA rater                facet_level_count
#> 3 Criterion non_person          NA criterion            facet_level_count
#> # ℹ 5 more variables: current_planning_count_variable <chr>,
#> #   current_planning_count_alias <chr>, current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>, review_stage <chr>
#> 
#> $planning_schema$structural_design_schema$design_template
#> $planning_schema$structural_design_schema$design_template$facets
#> $planning_schema$structural_design_schema$design_template$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_template$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_template$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$design_template$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_template$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$assignment_axis
#> $planning_schema$structural_design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$design_schema
#> $planning_schema$structural_design_schema$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$design_schema$default_design
#> $planning_schema$structural_design_schema$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$note
#> [1] "Normalized structural design schema bundling the named facet-count table, the matching `design$facets(named counts)` template, and preview-ready design-review metadata."
#> 
#> $planning_schema$structural_design_schema$grid_contract
#> $planning_schema$structural_design_schema$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_contract$default_design
#> $planning_schema$structural_design_schema$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema
#> $planning_schema$structural_design_schema$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$preview
#> $planning_schema$structural_design_schema$preview$preview_contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$preview$preview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$preview$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$preview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$preview$default_design
#> $planning_schema$structural_design_schema$preview$default_design$facets
#> $planning_schema$structural_design_schema$preview$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$preview$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_schema$preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_schema$preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_schema$preview$design_schema
#> $planning_schema$structural_design_schema$preview$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$default_design
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$preview$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics
#> $planning_schema$structural_design_schema$preview$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$preview$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle
#> $planning_schema$structural_design_schema$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$default_design
#> $planning_schema$structural_design_schema$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context
#> $planning_schema$structural_design_schema$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle
#> $planning_schema$structural_design_schema$report_bundle$report_contract
#> [1] "arbitrary_facet_design_grid_report_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$report_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$view
#> [1] "canonical"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$view_label
#> [1] "canonical"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$canonical$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public
#> $planning_schema$structural_design_schema$report_bundle$tables$public$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$view
#> [1] "public"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$view_label
#> [1] "public"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$public$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$view
#> [1] "design"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$view_label
#> [1] "design"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$tables$design$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$plots
#> $planning_schema$structural_design_schema$report_bundle$plots$canonical
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_schema$report_bundle$plots$public
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_schema$report_bundle$plots$design
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> 
#> $planning_schema$structural_design_schema$report_bundle$note
#> [1] "Deterministic structural-design report bundle is unavailable until the underlying design grid is materialized. The contract still bundles summary metadata, design-review table contracts, and draw-free plot data views in one shared object."
#> 
#> 
#> $planning_schema$structural_design_schema$report_summary
#> $planning_schema$structural_design_schema$report_summary$report_summary_contract
#> [1] "arbitrary_facet_design_grid_report_summary"
#> 
#> $planning_schema$structural_design_schema$report_summary$report_summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_summary$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_summary$available_table_views
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_summary$available_plot_views
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_summary$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_summary$note
#> [1] "Deterministic structural-design report summary is unavailable until the underlying design grid is materialized. The component index still describes which design-review report surfaces would be populated."
#> 
#> 
#> $planning_schema$structural_design_schema$report_overview_table
#> $planning_schema$structural_design_schema$report_overview_table$overview_contract
#> [1] "arbitrary_facet_design_report_overview_table"
#> 
#> $planning_schema$structural_design_schema$report_overview_table$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_overview_table$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_overview_table$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_overview_table$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_overview_table$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_schema$report_overview_table$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_overview_table$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_overview_table$note
#> [1] "Deterministic structural-design overview table is unavailable until the underlying design grid is materialized. Metrics and axis metadata are still returned from the current report summary contract."
#> 
#> 
#> $planning_schema$structural_design_schema$report_catalog
#> $planning_schema$structural_design_schema$report_catalog$catalog_contract
#> [1] "arbitrary_facet_design_report_catalog"
#> 
#> $planning_schema$structural_design_schema$report_catalog$catalog_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_catalog$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_catalog$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_catalog$surface_index
#> # A tibble: 3 × 5
#>   component  component_label available n_rows recommended_design_id
#>   <chr>      <chr>           <lgl>      <int> <chr>                
#> 1 metrics    report metrics  FALSE          1 NA                   
#> 2 axes       axis overview   FALSE          4 NA                   
#> 3 components component index FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_catalog$views
#> $planning_schema$structural_design_schema$report_catalog$views$metrics
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$component
#> [1] "metrics"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$component_label
#> [1] "report metrics"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$metrics$note
#> [1] "Deterministic structural-design overview view exposing the selected report metrics table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes
#> $planning_schema$structural_design_schema$report_catalog$views$axes$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$component
#> [1] "axes"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$component_label
#> [1] "axis overview"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$axes$note
#> [1] "Deterministic structural-design overview view exposing the selected axis overview table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components
#> $planning_schema$structural_design_schema$report_catalog$views$components$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$component
#> [1] "components"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$component_label
#> [1] "component index"
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$table
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_catalog$views$components$note
#> [1] "Deterministic structural-design overview view exposing the selected component index table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_catalog$note
#> [1] "Deterministic structural-design report catalog enumerating the compact overview surfaces that design-review reporting code can request from the current overview contract without implying an active arbitrary- facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_digest
#> $planning_schema$structural_design_schema$report_digest$digest_contract
#> [1] "arbitrary_facet_design_report_digest"
#> 
#> $planning_schema$structural_design_schema$report_digest$digest_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_digest$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_digest$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_digest$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_digest$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_digest$available_surfaces
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_digest$varying_axes
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_digest$fixed_axes
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_digest$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_digest$note
#> [1] "Deterministic structural-design report digest exposing headline report availability, baseline design metadata, and compact surface/axis summaries from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry
#> $planning_schema$structural_design_schema$report_surface_registry$registry_contract
#> [1] "arbitrary_facet_design_report_surface_registry"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$registry_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$source_contract
#> [1] "arbitrary_facet_design_report_digest"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$digest$note
#> [1] "Deterministic structural-design report surface exposing the selected report digest from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$surface
#> [1] "catalog"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$surface_label
#> [1] "report catalog"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$source_contract
#> [1] "arbitrary_facet_design_report_catalog"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$table
#> # A tibble: 3 × 5
#>   surface    component_label available n_rows recommended_design_id
#>   <chr>      <chr>           <lgl>      <int> <chr>                
#> 1 metrics    report metrics  FALSE          1 NA                   
#> 2 axes       axis overview   FALSE          4 NA                   
#> 3 components component index FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$catalog$note
#> [1] "Deterministic structural-design report surface exposing the selected report catalog from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$surface
#> [1] "metrics"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$surface_label
#> [1] "report metrics"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$metrics$note
#> [1] "Deterministic structural-design report surface exposing the selected report metrics from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$surface
#> [1] "axes"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$surface_label
#> [1] "axis overview"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$axes$note
#> [1] "Deterministic structural-design report surface exposing the selected axis overview from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$surface
#> [1] "components"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$surface_label
#> [1] "component index"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$table
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$surfaces$components$note
#> [1] "Deterministic structural-design report surface exposing the selected component index from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$report_surface_registry$note
#> [1] "Deterministic structural-design report surface registry exposing digest, catalog, and compact overview surfaces from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_panel
#> $planning_schema$structural_design_schema$report_panel$panel_contract
#> [1] "arbitrary_facet_design_report_panel"
#> 
#> $planning_schema$structural_design_schema$report_panel$panel_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_panel$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_panel$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_panel$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_panel$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_panel$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_panel$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_panel$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_panel$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_panel$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_panel$note
#> [1] "Deterministic structural-design report panel exposing one selected compact surface together with headline digest metadata and the surface index from one shared contract without implying an active arbitrary- facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_operation
#> $planning_schema$structural_design_schema$report_operation$operation_contract
#> [1] "arbitrary_facet_design_report_operation"
#> 
#> $planning_schema$structural_design_schema$report_operation$operation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_operation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_operation$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_operation$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_operation$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_operation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_operation$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_operation$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_operation$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_operation$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_schema$report_operation$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_operation$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_operation$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_operation$note
#> [1] "Deterministic structural-design report operation exposing digest, compact overview tables, the current surface registry, and one selected surface from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$report_snapshot
#> $planning_schema$structural_design_schema$report_snapshot$snapshot_contract
#> [1] "arbitrary_facet_design_report_snapshot"
#> 
#> $planning_schema$structural_design_schema$report_snapshot$snapshot_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_snapshot$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_snapshot$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_snapshot$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_snapshot$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_snapshot$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_snapshot$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_snapshot$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_snapshot$available_surfaces
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_snapshot$varying_axes
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_snapshot$fixed_axes
#> character(0)
#> 
#> $planning_schema$structural_design_schema$report_snapshot$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_snapshot$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_snapshot$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_snapshot$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_schema$report_snapshot$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$report_snapshot$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_schema$report_snapshot$note
#> [1] "Deterministic structural-design report snapshot exposing compact headline metadata, compact overview tables, and one selected surface without carrying the deeper nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_schema$report_brief
#> $planning_schema$structural_design_schema$report_brief$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_schema$report_brief$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_brief$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_brief$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_brief$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_brief$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_brief$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_brief$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_brief$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_brief$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_brief$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_schema$report_mode_registry
#> # A tibble: 3 × 5
#>   mode      payload_contract          default_surface carries_nested_graph note 
#>   <chr>     <chr>                     <chr>           <lgl>                <chr>
#> 1 brief     arbitrary_facet_design_r… digest          FALSE                Sele…
#> 2 snapshot  arbitrary_facet_design_r… digest          FALSE                Comp…
#> 3 operation arbitrary_facet_design_r… digest          TRUE                 Full…
#> 
#> $planning_schema$structural_design_schema$report_consumer
#> $planning_schema$structural_design_schema$report_consumer$consumer_contract
#> [1] "arbitrary_facet_design_report_consumer"
#> 
#> $planning_schema$structural_design_schema$report_consumer$consumer_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_consumer$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_consumer$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_schema$report_consumer$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_consumer$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_consumer$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_consumer$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_consumer$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$report_consumer$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$report_consumer$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_consumer$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload
#> $planning_schema$structural_design_schema$report_consumer$payload$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$report_consumer$payload$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_schema$report_consumer$note
#> [1] "Deterministic structural-design report consumer dispatching to the selected brief contract so design-review code can switch report-data weight without re-implementing the dispatch logic."
#> 
#> 
#> $planning_schema$structural_design_schema$review
#> $planning_schema$structural_design_schema$review$compact_review_contract
#> [1] "named_facet_compact_review"
#> 
#> $planning_schema$structural_design_schema$review$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$view
#> [1] "public"
#> 
#> $planning_schema$structural_design_schema$review$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_schema$review$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$review$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$review$plot_payload
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_schema$review$report_consumer
#> $planning_schema$structural_design_schema$review$report_consumer$consumer_contract
#> [1] "arbitrary_facet_design_report_consumer"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$consumer_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload
#> $planning_schema$structural_design_schema$review$report_consumer$payload$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$payload$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_schema$review$report_consumer$note
#> [1] "Deterministic structural-design report consumer dispatching to the selected brief contract so design-review code can switch report-data weight without re-implementing the dispatch logic."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary
#> $planning_schema$structural_design_schema$review$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation
#> $planning_schema$structural_design_schema$review$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_schema$review$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$review$note
#> [1] "Internal deterministic structural-design review bundling one materialized grid view, one draw-free plot-data object, and one mode-selected report consumer. This is a compact structural-review object, but it remains a deterministic review rather than a performance-based arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$compact_review_summary
#> $planning_schema$structural_design_schema$compact_review_summary$compact_review_summary_contract
#> [1] "arbitrary_facet_planning_compact_review_summary"
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$headline_table
#> # A tibble: 1 × 9
#>   review_available n_designs recommended_design_id view  mode  surface grid_rows
#>   <lgl>                <int> <chr>                 <chr> <chr> <chr>       <int>
#> 1 FALSE                    0 NA                    publ… brief digest          0
#> # ℹ 2 more variables: plot_available <lgl>, report_payload_contract <chr>
#> 
#> $planning_schema$structural_design_schema$compact_review_summary$note
#> [1] "Compact summary for the deterministic structural-design review, exposing one headline table over the current grid and report layer without implying an active performance-based arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_schema$compact_review_table
#> $planning_schema$structural_design_schema$compact_review_table$compact_review_table_contract
#> [1] "arbitrary_facet_planning_compact_review_table"
#> 
#> $planning_schema$structural_design_schema$compact_review_table$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_table$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_table$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$compact_review_table$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$compact_review_table$component
#> [1] "grid"
#> 
#> $planning_schema$structural_design_schema$compact_review_table$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$compact_review_table$note
#> [1] "Selected table view from the deterministic structural-design review. This exposes either the grid table, the selected report table, or the compact surface index from the current review layer."
#> 
#> 
#> $planning_schema$structural_design_schema$compact_review_plot
#> $planning_schema$structural_design_schema$compact_review_plot$compact_review_plot_contract
#> [1] "arbitrary_facet_planning_compact_review_plot"
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$plot
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_schema$compact_review_plot$note
#> [1] "Draw-free plot data from the deterministic structural-design review. This preserves the existing plot contract while routing access through the review layer."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review
#> mfrmr Structural Design Review
#> 
#> Overview
#>  review_available n_designs recommended_design_id   view  mode surface
#>             FALSE         0                  <NA> public brief  digest
#>  table_component RecommendedAppendixTables CompactAppendixTables NumericTables
#>             grid                         4                     3             8
#>  AnyNumericTable
#>             TRUE
#> 
#> Notes
#>  - Design planning varies the documented person-count, non-person facet-count, and assignment axes.
#>  - Readiness summarizes structural overlap and balance; it does not estimate parameter recovery or Monte Carlo performance.
#> 
#> Additional design tables remain in the structured summary; use `detail = "full"` to print them.
#> 
#> $planning_schema$structural_design_schema$design_review_profile
#> $planning_schema$structural_design_schema$design_review_profile$profile_contract
#> [1] "arbitrary_facet_planning_design_review_profile"
#> 
#> $planning_schema$structural_design_schema$design_review_profile$profile_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_profile$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_profile$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_profile$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_profile$metric_registry
#> # A tibble: 5 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 total_observations             exact_iden… n_pers… Total number … FALSE       
#> 2 observations_per_person        exact_iden… raters… Number of sco… FALSE       
#> 3 observations_per_criterion     exact_iden… n_pers… Number of sco… FALSE       
#> 4 expected_observations_per_rat… balanced_e… (n_per… Average expec… FALSE       
#> 5 assignment_fraction            density_ra… raters… Fraction of a… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_profile$profile_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_profile$profile_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_profile$note
#> [1] "Deterministic design-profile metrics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance
#> $planning_schema$structural_design_schema$design_review_load_balance$diagnostics_contract
#> [1] "arbitrary_facet_planning_design_review_load_balance"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$diagnostics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 expected_observations_per_rat… balanced_e… (n_per… Average obser… FALSE       
#> 2 expected_person_assignments_p… balanced_e… (n_per… Average perso… FALSE       
#> 3 observation_load_floor         integer_ba… floor(… Lower integer… FALSE       
#> 4 observation_load_ceiling       integer_ba… ceilin… Upper integer… FALSE       
#> 5 observation_load_remainder     exact_iden… (n_per… Number of obs… FALSE       
#> 6 perfect_integer_observation_b… exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$diagnostic_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance$note
#> [1] "Deterministic load/balance diagnostics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_overview
#> $planning_schema$structural_design_schema$design_review_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_overview$headline_table
#> # A tibble: 1 × 10
#>   review_available n_designs recommended_design_id view   mode  surface
#>   <lgl>                <int> <chr>                 <chr>  <chr> <chr>  
#> 1 FALSE                    0 NA                    public brief digest 
#> # ℹ 4 more variables: table_component <chr>, selected_table_rows <int>,
#> #   plot_available <lgl>, n_metrics <int>
#> 
#> $planning_schema$structural_design_schema$design_review_overview$metric_registry
#> # A tibble: 5 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 total_observations             exact_iden… n_pers… Total number … FALSE       
#> 2 observations_per_person        exact_iden… raters… Number of sco… FALSE       
#> 3 observations_per_criterion     exact_iden… n_pers… Number of sco… FALSE       
#> 4 expected_observations_per_rat… balanced_e… (n_per… Average expec… FALSE       
#> 5 assignment_fraction            density_ra… raters… Fraction of a… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_overview$metric_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_overview$note
#> [1] "Compact overview for the structural-design review layer, combining the branch headline with metric-basis-aware deterministic design summaries."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_load_balance_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$headline_table
#> # A tibble: 1 × 6
#>   review_available n_designs n_metrics recommended_design_id
#>   <lgl>                <int>     <int> <chr>                
#> 1 FALSE                    0         6 NA                   
#> # ℹ 2 more variables: n_perfect_integer_balance <int>,
#> #   n_nondivisible_designs <int>
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 expected_observations_per_rat… balanced_e… (n_per… Average obser… FALSE       
#> 2 expected_person_assignments_p… balanced_e… (n_per… Average perso… FALSE       
#> 3 observation_load_floor         integer_ba… floor(… Lower integer… FALSE       
#> 4 observation_load_ceiling       integer_ba… ceilin… Upper integer… FALSE       
#> 5 observation_load_remainder     exact_iden… (n_per… Number of obs… FALSE       
#> 6 perfect_integer_observation_b… exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_load_balance_overview$note
#> [1] "Compact load/balance overview for the structural-design review layer, combining a one-row divisibility headline with basis-aware deterministic observation-load diagnostics."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_coverage
#> $planning_schema$structural_design_schema$design_review_coverage$diagnostics_contract
#> [1] "arbitrary_facet_planning_design_review_coverage"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$diagnostics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 person_criterion_cells         exact_iden… n_pers… Number of per… FALSE       
#> 2 criterion_replications_per_pe… exact_iden… raters… Number of rat… FALSE       
#> 3 rater_pair_overlap_per_cell    exact_iden… choose… Number of dis… FALSE       
#> 4 total_rater_pair_overlaps      exact_iden… n_pers… Total number … FALSE       
#> 5 pair_coverage_fraction_per_ce… exact_ratio ifelse… Fraction of a… FALSE       
#> 6 redundant_scoring              exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$diagnostic_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_coverage$note
#> [1] "Deterministic coverage/connectivity diagnostics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview
#> $planning_schema$structural_design_schema$design_review_coverage_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_coverage_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_metrics recommended_design_id n_redundant_designs
#>   <lgl>                <int>     <int> <chr>                               <int>
#> 1 FALSE                    0         6 NA                                      0
#> # ℹ 3 more variables: n_single_rater_designs <int>,
#> #   n_pair_connected_designs <int>, n_zero_pair_overlap_designs <int>
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 person_criterion_cells         exact_iden… n_pers… Number of per… FALSE       
#> 2 criterion_replications_per_pe… exact_iden… raters… Number of rat… FALSE       
#> 3 rater_pair_overlap_per_cell    exact_iden… choose… Number of dis… FALSE       
#> 4 total_rater_pair_overlaps      exact_iden… n_pers… Total number … FALSE       
#> 5 pair_coverage_fraction_per_ce… exact_ratio ifelse… Fraction of a… FALSE       
#> 6 redundant_scoring              exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_coverage_overview$note
#> [1] "Compact coverage/connectivity overview for the structural-design review review layer, combining a one-row redundancy headline with basis-aware deterministic rater-overlap diagnostics."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails
#> $planning_schema$structural_design_schema$design_review_guardrails$guardrail_contract
#> [1] "arbitrary_facet_planning_design_review_guardrails"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$guardrail_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$guardrail_registry
#> # A tibble: 4 × 5
#>   guardrail              basis_class          rule   interpretation psychometric
#>   <chr>                  <chr>                <chr>  <chr>          <lgl>       
#> 1 rater_linking_regime   exact_classification ifels… Exact cell-le… FALSE       
#> 2 pair_coverage_regime   exact_classification ifels… Exact pair-co… FALSE       
#> 3 integer_balance_regime exact_classification ifels… Exact integer… FALSE       
#> 4 redundancy_regime      exact_classification ifels… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$guardrail_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$guardrail_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_guardrails$note
#> [1] "Deterministic guardrail classifications are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_guardrail_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_guardrails recommended_design_id
#>   <lgl>                <int>        <int> <chr>                
#> 1 FALSE                    0            4 NA                   
#> # ℹ 4 more variables: n_single_rater_designs <int>,
#> #   n_partial_overlap_designs <int>, n_fully_crossed_designs <int>,
#> #   n_integer_balanced_designs <int>
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$guardrail_registry
#> # A tibble: 4 × 5
#>   guardrail              basis_class          rule   interpretation psychometric
#>   <chr>                  <chr>                <chr>  <chr>          <lgl>       
#> 1 rater_linking_regime   exact_classification ifels… Exact cell-le… FALSE       
#> 2 pair_coverage_regime   exact_classification ifels… Exact pair-co… FALSE       
#> 3 integer_balance_regime exact_classification ifels… Exact integer… FALSE       
#> 4 redundancy_regime      exact_classification ifels… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$guardrail_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_guardrail_overview$note
#> [1] "Compact guardrail overview for the structural-design review layer, combining exact design-regime counts with a basis-aware guardrail index."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_readiness
#> $planning_schema$structural_design_schema$design_review_readiness$readiness_contract
#> [1] "arbitrary_facet_planning_design_review_readiness"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$readiness_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$indicator_registry
#> # A tibble: 4 × 5
#>   indicator                      basis_class   rule  interpretation psychometric
#>   <chr>                          <chr>         <chr> <chr>          <lgl>       
#> 1 supports_multi_rater_cells     exact_indica… as.i… Exact indicat… FALSE       
#> 2 supports_pair_overlap          exact_indica… as.i… Exact indicat… FALSE       
#> 3 supports_integer_balanced_load exact_indica… as.i… Exact indicat… FALSE       
#> 4 supports_full_pair_coverage    exact_indica… as.i… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$readiness_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$readiness_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_readiness$note
#> [1] "Deterministic structural readiness indicators are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview
#> $planning_schema$structural_design_schema$design_review_readiness_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_readiness_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_indicators recommended_design_id
#>   <lgl>                <int>        <int> <chr>                
#> 1 FALSE                    0            4 NA                   
#> # ℹ 4 more variables: n_single_rater_only_tiers <int>,
#> #   n_partial_overlap_balanced_tiers <int>,
#> #   n_partial_overlap_unbalanced_tiers <int>, n_full_overlap_tiers <int>
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$indicator_registry
#> # A tibble: 4 × 5
#>   indicator                      basis_class   rule  interpretation psychometric
#>   <chr>                          <chr>         <chr> <chr>          <lgl>       
#> 1 supports_multi_rater_cells     exact_indica… as.i… Exact indicat… FALSE       
#> 2 supports_pair_overlap          exact_indica… as.i… Exact indicat… FALSE       
#> 3 supports_integer_balanced_load exact_indica… as.i… Exact indicat… FALSE       
#> 4 supports_full_pair_coverage    exact_indica… as.i… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$readiness_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_readiness_overview$note
#> [1] "Compact structural readiness overview for the structural-design review review layer, combining exact overlap/balance tiers with a basis-aware indicator index."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation
#> $planning_schema$structural_design_schema$design_review_recommendation$recommendation_contract
#> [1] "arbitrary_facet_planning_design_review_recommendation"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$ranking_rule
#> [1] "Unavailable because the structural-design readiness review and profile contracts are not both materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$recommended_tier
#> character(0)
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$recommendation_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation$note
#> [1] "Structural recommendation is unavailable until the structural-design review review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_recommendation_overview"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$headline_table
#> # A tibble: 0 × 5
#> # ℹ 5 variables: recommendation_available <lgl>, n_designs <int>,
#> #   recommended_design_id <chr>, recommended_tier <chr>,
#> #   n_top_tier_candidates <int>
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$recommendation_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_schema$design_review_recommendation_overview$note
#> [1] "Compact structural recommendation overview for the structural-design review review layer, summarizing the conservative exact-tier ranking outcome."
#> 
#> 
#> 
#> $planning_schema$structural_design_preview
#> $planning_schema$structural_design_preview$preview_contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_preview$preview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_preview$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_preview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_preview$default_design
#> $planning_schema$structural_design_preview$default_design$facets
#> $planning_schema$structural_design_preview$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_preview$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_preview$<NA>
#> NULL
#> 
#> $planning_schema$structural_design_preview$design_schema
#> $planning_schema$structural_design_preview$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_preview$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_preview$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_preview$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_preview$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_preview$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$design_schema$default_design
#> $planning_schema$structural_design_preview$design_schema$default_design$facets
#> $planning_schema$structural_design_preview$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_preview$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_preview$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_preview$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_preview$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_preview$grid_semantics
#> $planning_schema$structural_design_preview$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_preview$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_preview$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_semantics
#> $planning_schema$structural_design_grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_contract
#> $planning_schema$structural_design_grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_contract$default_design
#> $planning_schema$structural_design_grid_contract$default_design$facets
#> $planning_schema$structural_design_grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_contract$design_schema
#> $planning_schema$structural_design_grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$default_design
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics
#> $planning_schema$structural_design_grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle
#> $planning_schema$structural_design_grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_bundle$default_design
#> $planning_schema$structural_design_grid_bundle$default_design$facets
#> $planning_schema$structural_design_grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema
#> $planning_schema$structural_design_grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics
#> $planning_schema$structural_design_grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract
#> $planning_schema$structural_design_grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_grid_context
#> $planning_schema$structural_design_grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle
#> $planning_schema$structural_design_grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle
#> $planning_schema$structural_design_report_bundle$report_contract
#> [1] "arbitrary_facet_design_grid_report_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$report_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary
#> $planning_schema$structural_design_report_bundle$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation
#> $planning_schema$structural_design_report_bundle$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables
#> $planning_schema$structural_design_report_bundle$tables$canonical
#> $planning_schema$structural_design_report_bundle$tables$canonical$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$view
#> [1] "canonical"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$view_label
#> [1] "canonical"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$canonical$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public
#> $planning_schema$structural_design_report_bundle$tables$public$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$view
#> [1] "public"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$view_label
#> [1] "public"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$public$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design
#> $planning_schema$structural_design_report_bundle$tables$design$table_contract
#> [1] "arbitrary_facet_design_grid_table"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$table_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$view
#> [1] "design"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$view_label
#> [1] "design"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_report_bundle$tables$design$note
#> [1] "Deterministic structural-design table is unavailable until the underlying design grid is materialized."
#> 
#> 
#> 
#> $planning_schema$structural_design_report_bundle$plots
#> $planning_schema$structural_design_report_bundle$plots$canonical
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_report_bundle$plots$public
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_report_bundle$plots$design
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> 
#> $planning_schema$structural_design_report_bundle$note
#> [1] "Deterministic structural-design report bundle is unavailable until the underlying design grid is materialized. The contract still bundles summary metadata, design-review table contracts, and draw-free plot data views in one shared object."
#> 
#> 
#> $planning_schema$structural_design_report_summary
#> $planning_schema$structural_design_report_summary$report_summary_contract
#> [1] "arbitrary_facet_design_grid_report_summary"
#> 
#> $planning_schema$structural_design_report_summary$report_summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_summary$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_summary$available_table_views
#> character(0)
#> 
#> $planning_schema$structural_design_report_summary$available_plot_views
#> character(0)
#> 
#> $planning_schema$structural_design_report_summary$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_summary$note
#> [1] "Deterministic structural-design report summary is unavailable until the underlying design grid is materialized. The component index still describes which design-review report surfaces would be populated."
#> 
#> 
#> $planning_schema$structural_design_report_overview_table
#> $planning_schema$structural_design_report_overview_table$overview_contract
#> [1] "arbitrary_facet_design_report_overview_table"
#> 
#> $planning_schema$structural_design_report_overview_table$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_overview_table$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_overview_table$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_overview_table$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_overview_table$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_report_overview_table$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_overview_table$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_overview_table$note
#> [1] "Deterministic structural-design overview table is unavailable until the underlying design grid is materialized. Metrics and axis metadata are still returned from the current report summary contract."
#> 
#> 
#> $planning_schema$structural_design_report_catalog
#> $planning_schema$structural_design_report_catalog$catalog_contract
#> [1] "arbitrary_facet_design_report_catalog"
#> 
#> $planning_schema$structural_design_report_catalog$catalog_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_catalog$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_catalog$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_catalog$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_catalog$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_catalog$surface_index
#> # A tibble: 3 × 5
#>   component  component_label available n_rows recommended_design_id
#>   <chr>      <chr>           <lgl>      <int> <chr>                
#> 1 metrics    report metrics  FALSE          1 NA                   
#> 2 axes       axis overview   FALSE          4 NA                   
#> 3 components component index FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_catalog$views
#> $planning_schema$structural_design_report_catalog$views$metrics
#> $planning_schema$structural_design_report_catalog$views$metrics$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$component
#> [1] "metrics"
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$component_label
#> [1] "report metrics"
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_report_catalog$views$metrics$note
#> [1] "Deterministic structural-design overview view exposing the selected report metrics table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_catalog$views$axes
#> $planning_schema$structural_design_report_catalog$views$axes$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$component
#> [1] "axes"
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$component_label
#> [1] "axis overview"
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_catalog$views$axes$note
#> [1] "Deterministic structural-design overview view exposing the selected axis overview table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_catalog$views$components
#> $planning_schema$structural_design_report_catalog$views$components$overview_view_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_catalog$views$components$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$components$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_catalog$views$components$component
#> [1] "components"
#> 
#> $planning_schema$structural_design_report_catalog$views$components$component_label
#> [1] "component index"
#> 
#> $planning_schema$structural_design_report_catalog$views$components$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_catalog$views$components$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_catalog$views$components$table
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_catalog$views$components$note
#> [1] "Deterministic structural-design overview view exposing the selected component index table from the compact report-overview contract without implying an active arbitrary-facet planner."
#> 
#> 
#> 
#> $planning_schema$structural_design_report_catalog$note
#> [1] "Deterministic structural-design report catalog enumerating the compact overview surfaces that design-review reporting code can request from the current overview contract without implying an active arbitrary- facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_digest
#> $planning_schema$structural_design_report_digest$digest_contract
#> [1] "arbitrary_facet_design_report_digest"
#> 
#> $planning_schema$structural_design_report_digest$digest_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_digest$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_digest$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_digest$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_digest$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_digest$available_surfaces
#> character(0)
#> 
#> $planning_schema$structural_design_report_digest$varying_axes
#> character(0)
#> 
#> $planning_schema$structural_design_report_digest$fixed_axes
#> character(0)
#> 
#> $planning_schema$structural_design_report_digest$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_digest$note
#> [1] "Deterministic structural-design report digest exposing headline report availability, baseline design metadata, and compact surface/axis summaries from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry
#> $planning_schema$structural_design_report_surface_registry$registry_contract
#> [1] "arbitrary_facet_design_report_surface_registry"
#> 
#> $planning_schema$structural_design_report_surface_registry$registry_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$source_contract
#> [1] "arbitrary_facet_design_report_digest"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$digest$note
#> [1] "Deterministic structural-design report surface exposing the selected report digest from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$surface
#> [1] "catalog"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$surface_label
#> [1] "report catalog"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$source_contract
#> [1] "arbitrary_facet_design_report_catalog"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$table
#> # A tibble: 3 × 5
#>   surface    component_label available n_rows recommended_design_id
#>   <chr>      <chr>           <lgl>      <int> <chr>                
#> 1 metrics    report metrics  FALSE          1 NA                   
#> 2 axes       axis overview   FALSE          4 NA                   
#> 3 components component index FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$catalog$note
#> [1] "Deterministic structural-design report surface exposing the selected report catalog from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$surface
#> [1] "metrics"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$surface_label
#> [1] "report metrics"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$metrics$note
#> [1] "Deterministic structural-design report surface exposing the selected report metrics from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$surface
#> [1] "axes"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$surface_label
#> [1] "axis overview"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$axes$note
#> [1] "Deterministic structural-design report surface exposing the selected axis overview from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$surface_contract
#> [1] "arbitrary_facet_design_report_surface"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$surface_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$surface
#> [1] "components"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$surface_label
#> [1] "component index"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$source_contract
#> [1] "arbitrary_facet_design_report_overview_view"
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$table
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_surface_registry$surfaces$components$note
#> [1] "Deterministic structural-design report surface exposing the selected component index from one compact design-review operation without implying an active arbitrary-facet planner."
#> 
#> 
#> 
#> $planning_schema$structural_design_report_surface_registry$note
#> [1] "Deterministic structural-design report surface registry exposing digest, catalog, and compact overview surfaces from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_panel
#> $planning_schema$structural_design_report_panel$panel_contract
#> [1] "arbitrary_facet_design_report_panel"
#> 
#> $planning_schema$structural_design_report_panel$panel_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_panel$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_panel$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_panel$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_panel$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_panel$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_panel$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_panel$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_panel$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_panel$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_panel$note
#> [1] "Deterministic structural-design report panel exposing one selected compact surface together with headline digest metadata and the surface index from one shared contract without implying an active arbitrary- facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_operation
#> $planning_schema$structural_design_report_operation$operation_contract
#> [1] "arbitrary_facet_design_report_operation"
#> 
#> $planning_schema$structural_design_report_operation$operation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_operation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_operation$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_operation$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_operation$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_operation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_operation$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_operation$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_operation$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_operation$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_report_operation$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_operation$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_operation$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_operation$note
#> [1] "Deterministic structural-design report operation exposing digest, compact overview tables, the current surface registry, and one selected surface from one shared contract without implying an active arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_report_snapshot
#> $planning_schema$structural_design_report_snapshot$snapshot_contract
#> [1] "arbitrary_facet_design_report_snapshot"
#> 
#> $planning_schema$structural_design_report_snapshot$snapshot_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_snapshot$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_snapshot$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_snapshot$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_snapshot$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_snapshot$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_snapshot$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_snapshot$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_snapshot$available_surfaces
#> character(0)
#> 
#> $planning_schema$structural_design_report_snapshot$varying_axes
#> character(0)
#> 
#> $planning_schema$structural_design_report_snapshot$fixed_axes
#> character(0)
#> 
#> $planning_schema$structural_design_report_snapshot$digest_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_snapshot$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_snapshot$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_snapshot$metrics_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_table_views n_plot_views
#>   <lgl>                <int> <chr>                         <int>        <int>
#> 1 FALSE                    0 NA                                0            0
#> # ℹ 2 more variables: available_table_views <chr>, available_plot_views <chr>
#> 
#> $planning_schema$structural_design_report_snapshot$axis_overview_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, axis_state <chr>, n_values <int>,
#> #   value_summary <chr>, fixed_value <int>
#> 
#> $planning_schema$structural_design_report_snapshot$component_index
#> # A tibble: 8 × 7
#>   component_type view     available n_rows x_var group_var recommended_design_id
#>   <chr>          <chr>    <lgl>      <int> <chr> <chr>     <chr>                
#> 1 summary        NA       FALSE          0 NA    NA        NA                   
#> 2 recommendation NA       FALSE         NA NA    NA        NA                   
#> 3 table          canonic… FALSE          0 NA    NA        NA                   
#> 4 table          public   FALSE          0 NA    NA        NA                   
#> 5 table          design   FALSE          0 NA    NA        NA                   
#> 6 plot           canonic… FALSE          0 NA    NA        NA                   
#> 7 plot           public   FALSE          0 NA    NA        NA                   
#> 8 plot           design   FALSE          0 NA    NA        NA                   
#> 
#> $planning_schema$structural_design_report_snapshot$note
#> [1] "Deterministic structural-design report snapshot exposing compact headline metadata, compact overview tables, and one selected surface without carrying the deeper nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_report_brief
#> $planning_schema$structural_design_report_brief$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_report_brief$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_brief$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_brief$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_brief$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_brief$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_brief$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_brief$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_brief$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_brief$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_brief$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_report_mode_registry
#> # A tibble: 3 × 5
#>   mode      payload_contract          default_surface carries_nested_graph note 
#>   <chr>     <chr>                     <chr>           <lgl>                <chr>
#> 1 brief     arbitrary_facet_design_r… digest          FALSE                Sele…
#> 2 snapshot  arbitrary_facet_design_r… digest          FALSE                Comp…
#> 3 operation arbitrary_facet_design_r… digest          TRUE                 Full…
#> 
#> $planning_schema$structural_design_report_consumer
#> $planning_schema$structural_design_report_consumer$consumer_contract
#> [1] "arbitrary_facet_design_report_consumer"
#> 
#> $planning_schema$structural_design_report_consumer$consumer_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_consumer$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_consumer$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_report_consumer$payload_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_report_consumer$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_consumer$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_consumer$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_consumer$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_consumer$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_report_consumer$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_report_consumer$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_consumer$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_consumer$payload
#> $planning_schema$structural_design_report_consumer$payload$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_report_consumer$payload$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_report_consumer$payload$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_report_consumer$payload$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_report_consumer$payload$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_report_consumer$payload$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_report_consumer$payload$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_report_consumer$payload$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_consumer$payload$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_report_consumer$payload$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_report_consumer$payload$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_report_consumer$note
#> [1] "Deterministic structural-design report consumer dispatching to the selected brief contract so design-review code can switch report-data weight without re-implementing the dispatch logic."
#> 
#> 
#> $planning_schema$structural_design_compact_review
#> $planning_schema$structural_design_compact_review$compact_review_contract
#> [1] "named_facet_compact_review"
#> 
#> $planning_schema$structural_design_compact_review$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$view
#> [1] "public"
#> 
#> $planning_schema$structural_design_compact_review$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_compact_review$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_compact_review$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_compact_review$plot_payload
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_compact_review$report_consumer
#> $planning_schema$structural_design_compact_review$report_consumer$consumer_contract
#> [1] "arbitrary_facet_design_report_consumer"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$consumer_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$mode
#> [1] "brief"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$recommended_design_id
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload
#> $planning_schema$structural_design_compact_review$report_consumer$payload$brief_contract
#> [1] "arbitrary_facet_design_report_brief"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$brief_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$surface
#> [1] "digest"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$surface_label
#> [1] "report digest"
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$report_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$headline_table
#> # A tibble: 1 × 8
#>   report_available n_designs recommended_design_id surface surface_label
#>   <lgl>                <int> <chr>                 <chr>   <chr>        
#> 1 FALSE                    0 NA                    digest  report digest
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$selected_table
#> # A tibble: 1 × 7
#>   report_available n_designs recommended_design_id n_available_surfaces
#>   <lgl>                <int> <chr>                                <int>
#> 1 FALSE                    0 NA                                       0
#> # ℹ 3 more variables: available_surfaces <chr>, varying_axes <chr>,
#> #   fixed_axes <chr>
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$surface_index
#> # A tibble: 5 × 6
#>   surface   surface_label source_contract available n_rows recommended_design_id
#>   <chr>     <chr>         <chr>           <lgl>      <int> <chr>                
#> 1 digest    report digest arbitrary_face… FALSE          1 NA                   
#> 2 catalog   report catal… arbitrary_face… FALSE          3 NA                   
#> 3 metrics   report metri… arbitrary_face… FALSE          1 NA                   
#> 4 axes      axis overview arbitrary_face… FALSE          4 NA                   
#> 5 componen… component in… arbitrary_face… FALSE          8 NA                   
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$payload$note
#> [1] "Deterministic structural-design report brief exposing one selected surface together with a headline table and surface index, without carrying the broader snapshot or nested operation graph."
#> 
#> 
#> $planning_schema$structural_design_compact_review$report_consumer$note
#> [1] "Deterministic structural-design report consumer dispatching to the selected brief contract so design-review code can switch report-data weight without re-implementing the dispatch logic."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary
#> $planning_schema$structural_design_compact_review$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation
#> $planning_schema$structural_design_compact_review$grid_recommendation$recommendation_contract
#> [1] "arbitrary_facet_design_grid_recommendation"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$selection_rule
#> [1] "Unavailable because no deterministic design grid exists yet. This helper does not fabricate facet counts."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$prefer
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$rank_order
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$summary_contract
#> [1] "arbitrary_facet_design_grid_summary"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$summary_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$n_designs
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$n_varying_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$n_fixed_axes
#> [1] 0
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$fixed_values
#> named list()
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$context_contract
#> [1] "arbitrary_facet_design_grid_context"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$context_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$axis_table
#> # A tibble: 4 × 10
#>   axis_source input_key  canonical_design_varia…¹ public_design_alias axis_class
#>   <chr>       <chr>      <chr>                    <chr>               <chr>     
#> 1 facet       person     n_person                 n_person            person_co…
#> 2 facet       rater      n_rater                  n_rater             facet_lev…
#> 3 facet       criterion  n_criterion              n_criterion         facet_lev…
#> 4 assignment  assignment raters_per_person        raters_per_person   assignmen…
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 5 more variables: facet <chr>, values <list>, n_values <int>,
#> #   varying <lgl>, fixed_value <int>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$varying_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$fixed_canonical
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$varying_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$fixed_input_keys
#> character(0)
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_context$note
#> [1] "Deterministic structural-design context exposes axis metadata even when a materialized grid is not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$bundle_contract
#> [1] "arbitrary_facet_design_grid_bundle"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$bundle_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$contract
#> [1] "arbitrary_facet_design_grid_contract"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$input_contract
#> [1] "design$facets(named counts)"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$preview_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_contract
#> [1] "arbitrary_facet_design_schema"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$schema_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$facet_axes
#> # A tibble: 3 × 9
#>   input_key facet     facet_kind axis_class   level_count canonical_design_var…¹
#>   <chr>     <chr>     <chr>      <chr>              <int> <chr>                 
#> 1 person    Person    person     person_count          NA n_person              
#> 2 rater     Rater     non_person facet_level…          NA n_rater               
#> 3 criterion Criterion non_person facet_level…          NA n_criterion           
#> # ℹ abbreviated name: ¹​canonical_design_variable
#> # ℹ 3 more variables: public_design_alias <chr>,
#> #   current_planner_role_supported <lgl>,
#> #   arbitrary_facet_design_candidate <lgl>
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_variable
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$current_planning_count_alias
#> [1] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$design_input_key
#> [1] "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$axis_class
#> [1] "assignment_count"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_input_key
#> [1] "rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_canonical_design_variable
#> [1] "n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$assignment_axis$depends_on_public_design_alias
#> [1] "n_rater"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$input_keys
#> [1] "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$canonical_design_variables
#> [1] "n_person"          "n_rater"           "n_criterion"      
#> [4] "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$person
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$rater
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$facets$criterion
#> [1] NA
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$assignment
#> [1] NA
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$default_design$note
#> [1] "Structural design metadata mirrors the named facet counts in `design$facets` while keeping the assignment axis at the top level."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$note
#> [1] "Deterministic design-schema object for the named-facet structural review, bundling stable facet-count axes and the assignment axis in one machine-readable contract."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$design_schema$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_contract
#> [1] "arbitrary_facet_design_grid_semantics"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$semantics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$id_variable
#> [1] "design_id"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$canonical_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$public_columns
#> [1] "design_id"         "n_person"          "n_rater"          
#> [4] "n_criterion"       "raters_per_person"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$branch_columns
#> [1] "design_id"  "person"     "rater"      "criterion"  "assignment"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$feasibility_rule
#> [1] "raters_per_person <= n_rater"
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$row_meaning
#> [1] "Each row is one deterministic structural-design condition formed by crossing facet-count axes and the assignment axis after applying the current feasibility rule."
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$grid_semantics$default_id_prefix
#> [1] "F"
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$grid_contract$note
#> [1] "Deterministic structural-design grid contract is unavailable until the default nested design carries finite facet and assignment counts."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$grid_bundle$note
#> [1] "Deterministic structural-design bundle carrying the design grid contract, schema, and semantics without a materialized grid because default counts are not yet available."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$grid_summary$note
#> [1] "Deterministic structural-design summary is unavailable because no materialized design grid exists yet, but axis metadata are still returned for design-review planning helpers."
#> 
#> 
#> $planning_schema$structural_design_compact_review$grid_recommendation$note
#> [1] "Deterministic structural-design recommendation is unavailable until the underlying design grid is materialized."
#> 
#> 
#> $planning_schema$structural_design_compact_review$note
#> [1] "Internal deterministic structural-design review bundling one materialized grid view, one draw-free plot-data object, and one mode-selected report consumer. This is a compact structural-review object, but it remains a deterministic review rather than a performance-based arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_compact_review_summary
#> $planning_schema$structural_design_compact_review_summary$compact_review_summary_contract
#> [1] "arbitrary_facet_planning_compact_review_summary"
#> 
#> $planning_schema$structural_design_compact_review_summary$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review_summary$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review_summary$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review_summary$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review_summary$headline_table
#> # A tibble: 1 × 9
#>   review_available n_designs recommended_design_id view  mode  surface grid_rows
#>   <lgl>                <int> <chr>                 <chr> <chr> <chr>       <int>
#> 1 FALSE                    0 NA                    publ… brief digest          0
#> # ℹ 2 more variables: plot_available <lgl>, report_payload_contract <chr>
#> 
#> $planning_schema$structural_design_compact_review_summary$note
#> [1] "Compact summary for the deterministic structural-design review, exposing one headline table over the current grid and report layer without implying an active performance-based arbitrary-facet planner."
#> 
#> 
#> $planning_schema$structural_design_compact_review_table
#> $planning_schema$structural_design_compact_review_table$compact_review_table_contract
#> [1] "arbitrary_facet_planning_compact_review_table"
#> 
#> $planning_schema$structural_design_compact_review_table$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review_table$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review_table$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review_table$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review_table$component
#> [1] "grid"
#> 
#> $planning_schema$structural_design_compact_review_table$table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_compact_review_table$note
#> [1] "Selected table view from the deterministic structural-design review. This exposes either the grid table, the selected report table, or the compact surface index from the current review layer."
#> 
#> 
#> $planning_schema$structural_design_compact_review_plot
#> $planning_schema$structural_design_compact_review_plot$compact_review_plot_contract
#> [1] "arbitrary_facet_planning_compact_review_plot"
#> 
#> $planning_schema$structural_design_compact_review_plot$review_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_compact_review_plot$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_compact_review_plot$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_compact_review_plot$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_compact_review_plot$plot
#> <mfrm_plot_data>
#>   name     : structural_design_grid_schema
#>   title    : Deterministic Named-Facet Design Grid
#>   subtitle : The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized.
#>   data     :
#>     $plot_available : logical [1]
#>     $reason : character [1]
#>     $view : character [1]
#>     $x_var : NULL
#>     $x_label : NULL
#>     $group_var : NULL
#>     $group_label : NULL
#>     $recommended_design_id : character [0]
#>     $data : data.frame [0 x 0]
#>     $axis_table : data.frame [4 x 10]
#>     $grid_summary : list (18 slots)
#>     $grid_recommendation : list (10 slots)
#>     $note : character [1]
#>     $plot_name : character [1]
#>   legend   : 4 entries
#>   ref lines: 0
#> Re-render via ggplot2 / plotly using `x$data`; or pass the
#> originating `draw = FALSE` plot helper its inverse to draw it.
#> 
#> $planning_schema$structural_design_compact_review_plot$note
#> [1] "Draw-free plot data from the deterministic structural-design review. This preserves the existing plot contract while routing access through the review layer."
#> 
#> 
#> $planning_schema$structural_design_review
#> mfrmr Structural Design Review
#> 
#> Overview
#>  review_available n_designs recommended_design_id   view  mode surface
#>             FALSE         0                  <NA> public brief  digest
#>  table_component RecommendedAppendixTables CompactAppendixTables NumericTables
#>             grid                         4                     3             8
#>  AnyNumericTable
#>             TRUE
#> 
#> Notes
#>  - Design planning varies the documented person-count, non-person facet-count, and assignment axes.
#>  - Readiness summarizes structural overlap and balance; it does not estimate parameter recovery or Monte Carlo performance.
#> 
#> Additional design tables remain in the structured summary; use `detail = "full"` to print them.
#> 
#> $planning_schema$structural_design_review_profile
#> $planning_schema$structural_design_review_profile$profile_contract
#> [1] "arbitrary_facet_planning_design_review_profile"
#> 
#> $planning_schema$structural_design_review_profile$profile_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_profile$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_profile$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_profile$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_profile$metric_registry
#> # A tibble: 5 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 total_observations             exact_iden… n_pers… Total number … FALSE       
#> 2 observations_per_person        exact_iden… raters… Number of sco… FALSE       
#> 3 observations_per_criterion     exact_iden… n_pers… Number of sco… FALSE       
#> 4 expected_observations_per_rat… balanced_e… (n_per… Average expec… FALSE       
#> 5 assignment_fraction            density_ra… raters… Fraction of a… FALSE       
#> 
#> $planning_schema$structural_design_review_profile$profile_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_profile$profile_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_profile$note
#> [1] "Deterministic design-profile metrics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_load_balance
#> $planning_schema$structural_design_review_load_balance$diagnostics_contract
#> [1] "arbitrary_facet_planning_design_review_load_balance"
#> 
#> $planning_schema$structural_design_review_load_balance$diagnostics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_load_balance$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_load_balance$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_load_balance$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_load_balance$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 expected_observations_per_rat… balanced_e… (n_per… Average obser… FALSE       
#> 2 expected_person_assignments_p… balanced_e… (n_per… Average perso… FALSE       
#> 3 observation_load_floor         integer_ba… floor(… Lower integer… FALSE       
#> 4 observation_load_ceiling       integer_ba… ceilin… Upper integer… FALSE       
#> 5 observation_load_remainder     exact_iden… (n_per… Number of obs… FALSE       
#> 6 perfect_integer_observation_b… exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_review_load_balance$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_load_balance$diagnostic_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_load_balance$note
#> [1] "Deterministic load/balance diagnostics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_overview
#> $planning_schema$structural_design_review_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_overview"
#> 
#> $planning_schema$structural_design_review_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_overview$headline_table
#> # A tibble: 1 × 10
#>   review_available n_designs recommended_design_id view   mode  surface
#>   <lgl>                <int> <chr>                 <chr>  <chr> <chr>  
#> 1 FALSE                    0 NA                    public brief digest 
#> # ℹ 4 more variables: table_component <chr>, selected_table_rows <int>,
#> #   plot_available <lgl>, n_metrics <int>
#> 
#> $planning_schema$structural_design_review_overview$metric_registry
#> # A tibble: 5 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 total_observations             exact_iden… n_pers… Total number … FALSE       
#> 2 observations_per_person        exact_iden… raters… Number of sco… FALSE       
#> 3 observations_per_criterion     exact_iden… n_pers… Number of sco… FALSE       
#> 4 expected_observations_per_rat… balanced_e… (n_per… Average expec… FALSE       
#> 5 assignment_fraction            density_ra… raters… Fraction of a… FALSE       
#> 
#> $planning_schema$structural_design_review_overview$metric_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_overview$note
#> [1] "Compact overview for the structural-design review layer, combining the branch headline with metric-basis-aware deterministic design summaries."
#> 
#> 
#> $planning_schema$structural_design_review_load_balance_overview
#> $planning_schema$structural_design_review_load_balance_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_load_balance_overview"
#> 
#> $planning_schema$structural_design_review_load_balance_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_load_balance_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_load_balance_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_load_balance_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_load_balance_overview$headline_table
#> # A tibble: 1 × 6
#>   review_available n_designs n_metrics recommended_design_id
#>   <lgl>                <int>     <int> <chr>                
#> 1 FALSE                    0         6 NA                   
#> # ℹ 2 more variables: n_perfect_integer_balance <int>,
#> #   n_nondivisible_designs <int>
#> 
#> $planning_schema$structural_design_review_load_balance_overview$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 expected_observations_per_rat… balanced_e… (n_per… Average obser… FALSE       
#> 2 expected_person_assignments_p… balanced_e… (n_per… Average perso… FALSE       
#> 3 observation_load_floor         integer_ba… floor(… Lower integer… FALSE       
#> 4 observation_load_ceiling       integer_ba… ceilin… Upper integer… FALSE       
#> 5 observation_load_remainder     exact_iden… (n_per… Number of obs… FALSE       
#> 6 perfect_integer_observation_b… exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_review_load_balance_overview$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_load_balance_overview$note
#> [1] "Compact load/balance overview for the structural-design review layer, combining a one-row divisibility headline with basis-aware deterministic observation-load diagnostics."
#> 
#> 
#> $planning_schema$structural_design_review_coverage
#> $planning_schema$structural_design_review_coverage$diagnostics_contract
#> [1] "arbitrary_facet_planning_design_review_coverage"
#> 
#> $planning_schema$structural_design_review_coverage$diagnostics_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_coverage$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_coverage$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_coverage$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_coverage$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 person_criterion_cells         exact_iden… n_pers… Number of per… FALSE       
#> 2 criterion_replications_per_pe… exact_iden… raters… Number of rat… FALSE       
#> 3 rater_pair_overlap_per_cell    exact_iden… choose… Number of dis… FALSE       
#> 4 total_rater_pair_overlaps      exact_iden… n_pers… Total number … FALSE       
#> 5 pair_coverage_fraction_per_ce… exact_ratio ifelse… Fraction of a… FALSE       
#> 6 redundant_scoring              exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_review_coverage$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_coverage$diagnostic_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_coverage$note
#> [1] "Deterministic coverage/connectivity diagnostics are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_coverage_overview
#> $planning_schema$structural_design_review_coverage_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_coverage_overview"
#> 
#> $planning_schema$structural_design_review_coverage_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_coverage_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_coverage_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_coverage_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_coverage_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_metrics recommended_design_id n_redundant_designs
#>   <lgl>                <int>     <int> <chr>                               <int>
#> 1 FALSE                    0         6 NA                                      0
#> # ℹ 3 more variables: n_single_rater_designs <int>,
#> #   n_pair_connected_designs <int>, n_zero_pair_overlap_designs <int>
#> 
#> $planning_schema$structural_design_review_coverage_overview$metric_registry
#> # A tibble: 6 × 5
#>   metric                         basis_class formula interpretation psychometric
#>   <chr>                          <chr>       <chr>   <chr>          <lgl>       
#> 1 person_criterion_cells         exact_iden… n_pers… Number of per… FALSE       
#> 2 criterion_replications_per_pe… exact_iden… raters… Number of rat… FALSE       
#> 3 rater_pair_overlap_per_cell    exact_iden… choose… Number of dis… FALSE       
#> 4 total_rater_pair_overlaps      exact_iden… n_pers… Total number … FALSE       
#> 5 pair_coverage_fraction_per_ce… exact_ratio ifelse… Fraction of a… FALSE       
#> 6 redundant_scoring              exact_iden… as.int… Indicator tha… FALSE       
#> 
#> $planning_schema$structural_design_review_coverage_overview$diagnostic_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_coverage_overview$note
#> [1] "Compact coverage/connectivity overview for the structural-design review review layer, combining a one-row redundancy headline with basis-aware deterministic rater-overlap diagnostics."
#> 
#> 
#> $planning_schema$structural_design_review_guardrails
#> $planning_schema$structural_design_review_guardrails$guardrail_contract
#> [1] "arbitrary_facet_planning_design_review_guardrails"
#> 
#> $planning_schema$structural_design_review_guardrails$guardrail_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_guardrails$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_guardrails$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_guardrails$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_guardrails$guardrail_registry
#> # A tibble: 4 × 5
#>   guardrail              basis_class          rule   interpretation psychometric
#>   <chr>                  <chr>                <chr>  <chr>          <lgl>       
#> 1 rater_linking_regime   exact_classification ifels… Exact cell-le… FALSE       
#> 2 pair_coverage_regime   exact_classification ifels… Exact pair-co… FALSE       
#> 3 integer_balance_regime exact_classification ifels… Exact integer… FALSE       
#> 4 redundancy_regime      exact_classification ifels… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_review_guardrails$guardrail_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_guardrails$guardrail_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_guardrails$note
#> [1] "Deterministic guardrail classifications are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_guardrail_overview
#> $planning_schema$structural_design_review_guardrail_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_guardrail_overview"
#> 
#> $planning_schema$structural_design_review_guardrail_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_guardrail_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_guardrail_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_guardrail_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_guardrail_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_guardrails recommended_design_id
#>   <lgl>                <int>        <int> <chr>                
#> 1 FALSE                    0            4 NA                   
#> # ℹ 4 more variables: n_single_rater_designs <int>,
#> #   n_partial_overlap_designs <int>, n_fully_crossed_designs <int>,
#> #   n_integer_balanced_designs <int>
#> 
#> $planning_schema$structural_design_review_guardrail_overview$guardrail_registry
#> # A tibble: 4 × 5
#>   guardrail              basis_class          rule   interpretation psychometric
#>   <chr>                  <chr>                <chr>  <chr>          <lgl>       
#> 1 rater_linking_regime   exact_classification ifels… Exact cell-le… FALSE       
#> 2 pair_coverage_regime   exact_classification ifels… Exact pair-co… FALSE       
#> 3 integer_balance_regime exact_classification ifels… Exact integer… FALSE       
#> 4 redundancy_regime      exact_classification ifels… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_review_guardrail_overview$guardrail_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_guardrail_overview$note
#> [1] "Compact guardrail overview for the structural-design review layer, combining exact design-regime counts with a basis-aware guardrail index."
#> 
#> 
#> $planning_schema$structural_design_review_readiness
#> $planning_schema$structural_design_review_readiness$readiness_contract
#> [1] "arbitrary_facet_planning_design_review_readiness"
#> 
#> $planning_schema$structural_design_review_readiness$readiness_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_readiness$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_readiness$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_readiness$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_readiness$indicator_registry
#> # A tibble: 4 × 5
#>   indicator                      basis_class   rule  interpretation psychometric
#>   <chr>                          <chr>         <chr> <chr>          <lgl>       
#> 1 supports_multi_rater_cells     exact_indica… as.i… Exact indicat… FALSE       
#> 2 supports_pair_overlap          exact_indica… as.i… Exact indicat… FALSE       
#> 3 supports_integer_balanced_load exact_indica… as.i… Exact indicat… FALSE       
#> 4 supports_full_pair_coverage    exact_indica… as.i… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_review_readiness$readiness_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_readiness$readiness_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_readiness$note
#> [1] "Deterministic structural readiness indicators are unavailable until the structural-design review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_readiness_overview
#> $planning_schema$structural_design_review_readiness_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_readiness_overview"
#> 
#> $planning_schema$structural_design_review_readiness_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_readiness_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_readiness_overview$review_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_readiness_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_readiness_overview$headline_table
#> # A tibble: 1 × 8
#>   review_available n_designs n_indicators recommended_design_id
#>   <lgl>                <int>        <int> <chr>                
#> 1 FALSE                    0            4 NA                   
#> # ℹ 4 more variables: n_single_rater_only_tiers <int>,
#> #   n_partial_overlap_balanced_tiers <int>,
#> #   n_partial_overlap_unbalanced_tiers <int>, n_full_overlap_tiers <int>
#> 
#> $planning_schema$structural_design_review_readiness_overview$indicator_registry
#> # A tibble: 4 × 5
#>   indicator                      basis_class   rule  interpretation psychometric
#>   <chr>                          <chr>         <chr> <chr>          <lgl>       
#> 1 supports_multi_rater_cells     exact_indica… as.i… Exact indicat… FALSE       
#> 2 supports_pair_overlap          exact_indica… as.i… Exact indicat… FALSE       
#> 3 supports_integer_balanced_load exact_indica… as.i… Exact indicat… FALSE       
#> 4 supports_full_pair_coverage    exact_indica… as.i… Exact indicat… FALSE       
#> 
#> $planning_schema$structural_design_review_readiness_overview$readiness_summary_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_readiness_overview$note
#> [1] "Compact structural readiness overview for the structural-design review review layer, combining exact overlap/balance tiers with a basis-aware indicator index."
#> 
#> 
#> $planning_schema$structural_design_review_recommendation
#> $planning_schema$structural_design_review_recommendation$recommendation_contract
#> [1] "arbitrary_facet_planning_design_review_recommendation"
#> 
#> $planning_schema$structural_design_review_recommendation$recommendation_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_recommendation$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_recommendation$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_recommendation$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_recommendation$ranking_rule
#> [1] "Unavailable because the structural-design readiness review and profile contracts are not both materialized."
#> 
#> $planning_schema$structural_design_review_recommendation$recommended_design_id
#> character(0)
#> 
#> $planning_schema$structural_design_review_recommendation$recommended_tier
#> character(0)
#> 
#> $planning_schema$structural_design_review_recommendation$recommendation_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_recommendation$note
#> [1] "Structural recommendation is unavailable until the structural-design review review layer can be materialized."
#> 
#> 
#> $planning_schema$structural_design_review_recommendation_overview
#> $planning_schema$structural_design_review_recommendation_overview$overview_contract
#> [1] "arbitrary_facet_planning_design_review_recommendation_overview"
#> 
#> $planning_schema$structural_design_review_recommendation_overview$overview_stage
#> [1] "deterministic_review"
#> 
#> $planning_schema$structural_design_review_recommendation_overview$planner_contract
#> [1] "named_facet_structural_review"
#> 
#> $planning_schema$structural_design_review_recommendation_overview$recommendation_available
#> [1] FALSE
#> 
#> $planning_schema$structural_design_review_recommendation_overview$reason
#> [1] "The deterministic named-facet structural review does not yet have complete default facet counts and assignment counts, so no deterministic design grid can be materialized."
#> 
#> $planning_schema$structural_design_review_recommendation_overview$headline_table
#> # A tibble: 0 × 5
#> # ℹ 5 variables: recommendation_available <lgl>, n_designs <int>,
#> #   recommended_design_id <chr>, recommended_tier <chr>,
#> #   n_top_tier_candidates <int>
#> 
#> $planning_schema$structural_design_review_recommendation_overview$recommendation_table
#> # A tibble: 0 × 0
#> 
#> $planning_schema$structural_design_review_recommendation_overview$note
#> [1] "Compact structural recommendation overview for the structural-design review review layer, summarizing the conservative exact-tier ranking outcome."
#> 
#> 
#> $planning_schema$role_table
#> # A tibble: 4 × 11
#>   role     canonical alias facet quantity description axis_class depends_on_role
#>   <chr>    <chr>     <chr> <chr> <chr>    <chr>       <chr>      <chr>          
#> 1 person   n_person  n_pe… Pers… persons  Number of … person_co… NA             
#> 2 rater    n_rater   n_ra… Rater facet_l… Number of … facet_lev… NA             
#> 3 criteri… n_criter… n_cr… Crit… facet_l… Number of … facet_lev… NA             
#> 4 assignm… raters_p… rate… Rater assignm… Number of … assignmen… rater          
#> # ℹ 3 more variables: mutable <lgl>, locked <lgl>, lock_reason <chr>
#> 
#> $planning_schema$feasibility_rules
#> [1] "`raters_per_person <= n_rater`"
#> 
#> $planning_schema$note
#> [1] "Named-facet structural design metadata for person count, non-person facet counts, and assignments per person. These deterministic design summaries do not establish arbitrary-facet simulation support or parameter-recovery performance."
#> 
#> 
#> $gpcm_boundary
#> data frame with 0 columns and 0 rows
#> 
#> $notes
#> character(0)
#> 
#> $data
#> # A tibble: 1 × 3
#>   n_person     y group      
#>      <int> <dbl> <chr>      
#> 1        8     0 All designs
#> 
# }