Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions schemas/V_delta/stable/stimulus_presentation.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@
"parameters": {}
},
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustBeScalar": false,
"mustNotHaveNaN": false,
"queryable": false,
"ontology": null,
"documentation": "Stimulus configuration captured at presentation time. The sole sub-field that all v1 corpora ship is `parameters`, an open-shape struct whose keys depend on the stimulus type (Hartley basis, sparse-noise grid, oriented gratings, etc.) and on the generating library version. V_delta does not constrain inner field names because each stimulus type contributes its own; the validator only verifies that `stimuli` is itself a struct. Consumers that need to interpret specific parameter values should branch on the stimulus class context (e.g., the linked `app.app_name`) before reading.",
"documentation": "Stimulus configuration(s) captured at presentation time. v1 ships this as either a scalar struct (one stimulus configuration) or a struct array (one entry per presented stimulus, e.g., a 225-element array for a Hartley basis). The sole sub-field that all v1 corpora ship is `parameters`, an open-shape struct whose keys depend on the stimulus type (Hartley basis, sparse-noise grid, oriented gratings, etc.) and on the generating library version. V_delta does not constrain inner field names because each stimulus type contributes its own; the validator only verifies that `stimuli` is itself a struct (or struct array). Consumers that need to interpret specific parameter values should branch on the stimulus class context (e.g., the linked `app.app_name`) before reading.",
"constraints": {},
"fields": [
{
Expand Down
4 changes: 2 additions & 2 deletions schemas/V_delta/stable/stimulus_tuningcurve.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@
"default_value": [],
"mustBeNonEmpty": false,
"mustBeScalar": false,
"mustNotHaveNaN": true,
"mustNotHaveNaN": false,
"queryable": false,
"ontology": null,
"documentation": "Per-trial, per-stimulus index of the original stimulus presentation. Shape (N_trials x N_stimuli). Lets callers map an individual_responses_real[t,s] back to the original stimulus_presentation document.",
"documentation": "Per-trial, per-stimulus index of the original stimulus presentation. Shape (N_trials x N_stimuli). Lets callers map an individual_responses_real[t,s] back to the original stimulus_presentation document. Cells may be NaN where the corresponding trial slot held no presentation (v1 corpora use NaN as the missing-trial sentinel).",
"constraints": {
"element_type": "integer"
}
Expand Down
Loading