From 45626bae6757919d6171cd878ed405098dc33556 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 12:33:17 +0100 Subject: [PATCH 01/25] Refactor enum handling through domain commands --- .../generator/functional/schema-edit.spec.js | 4 +- ...frontend-ui-matrix-rationalization-plan.md | 35 +- .../shared/domain-command-help-metadata.js | 108 +- .../gui_components/shared/domain-commands.js | 40 +- .../generation/generation-controller.js | 14 +- .../test-data/schema/schema-row-mapper.js | 13 + .../shared/test-data/schema/schema-runtime.js | 14 +- ...est-data-schema-grid-engine-compat.test.js | 4 +- .../app-test-data-focused-generation.test.js | 2 +- .../app-schema-interaction-matrix.test.js | 12 +- .../schema-interaction-matrix-summary.md | 11039 ---- .../fixtures/schema-interaction-matrix.json | 52259 ---------------- .../matrix/fixtures/ui-scenario-parity.json | 92 - ...enerator-schema-interaction-matrix.test.js | 12 +- .../schema-interaction-matrix-report.test.js | 73 - .../schema-interaction-runtime-matrix.test.js | 16 +- .../schema-interaction-matrix-report.js | 239 +- .../matrix/support/ui-scenario-parity.js | 137 - .../matrix/ui-scenario-parity-fixture.test.js | 31 - .../matrix/ui-scenario-parity-support.test.js | 59 - .../ui-schema-interaction-parity.test.js | 105 - .../shared/generation-controller.test.js | 7 +- .../src/tests/shared/schema-runtime.test.js | 10 +- .../command-help/command-help-validators.js | 11 + .../n-wise/pairwiseTestDataGenerator.js | 3 + .../rulesBasedDataGenerator.js | 16 +- .../core/js/data_generation/rulesParser.js | 11 +- .../schema-constraint-validator.js | 13 +- .../js/data_generation/schema-conversion.js | 11 +- .../data_generation/schema-rules-adapter.js | 42 + .../data_generation/testDataRulesCompiler.js | 4 +- .../js/data_generation/utils/enumParser.js | 44 + .../core/js/domain/domain-command-metadata.js | 85 + packages/core/js/domain/domain-keywords.js | 146 +- .../js/domain/parser/DomainKeywordParser.js | 4 +- .../keywords/domain/datatype/datatype-enum.js | 33 + .../datatype/datatype-keyword-definitions.js | 3 +- .../datatype/enum-keyword-definition.js | 65 + .../domain-generation-path.test.js | 8 +- .../enum-compiler-integration.test.js | 15 +- .../enum-format-bug-fix.test.js | 11 +- .../enum-surface-parity.test.js | 100 + .../mixed-compiler-integration.test.js | 6 +- .../domain/domain-command-metadata.test.js | 40 + .../user-reported-bug-http-method.test.js | 5 +- 45 files changed, 710 insertions(+), 64291 deletions(-) delete mode 100644 packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix-summary.md delete mode 100644 packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json delete mode 100644 packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json delete mode 100644 packages/core-ui/src/tests/interaction/matrix/schema-interaction-matrix-report.test.js delete mode 100644 packages/core-ui/src/tests/interaction/matrix/support/ui-scenario-parity.js delete mode 100644 packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-fixture.test.js delete mode 100644 packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-support.test.js delete mode 100644 packages/core-ui/src/tests/interaction/matrix/ui-schema-interaction-parity.test.js create mode 100644 packages/core/js/domain/domain-command-metadata.js create mode 100644 packages/core/js/keywords/domain/datatype/datatype-enum.js create mode 100644 packages/core/js/keywords/domain/datatype/enum-keyword-definition.js create mode 100644 packages/core/src/tests/data_generation/enum-surface-parity.test.js create mode 100644 packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js diff --git a/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js b/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js index 2a515a78..c475b2cb 100644 --- a/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js +++ b/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js @@ -224,9 +224,9 @@ test.describe('Generator Schema Editing', () => { await expect(generatorPage.schema.row(0).locator('[data-action="pick-command"]')).toHaveText('datatype.enum'); await expect(generatorPage.schema.row(0).locator('input[data-field="params"]')).toHaveValue( - '(active,inactive,pending)' + '("active,inactive,pending")' ); - await expect.poll(async () => generatorPage.schema.getSchemaText()).toContain('enum(active,inactive,pending)'); + await expect.poll(async () => generatorPage.schema.getSchemaText()).toContain('enum("active,inactive,pending")'); expectNoPageErrors(pageErrors); }); diff --git a/docs/frontend-ui-matrix-rationalization-plan.md b/docs/frontend-ui-matrix-rationalization-plan.md index 711c99ba..fe5bf747 100644 --- a/docs/frontend-ui-matrix-rationalization-plan.md +++ b/docs/frontend-ui-matrix-rationalization-plan.md @@ -70,7 +70,7 @@ The frontend test stack should follow these rules: ## Current State -Current matrix suites under `packages/core-ui/src/tests/interaction/matrix/` cover three different concerns: +Current matrix suites under `packages/core-ui/src/tests/interaction/matrix/` cover two retained concerns: - `schema-interaction-runtime-matrix.test.js` - scenario execution against the runtime/data-generation layer @@ -78,10 +78,8 @@ Current matrix suites under `packages/core-ui/src/tests/interaction/matrix/` cov - standalone generator UI scenario execution in JSDOM - `app-schema-interaction-matrix.test.js` - embedded app test-data panel scenario execution in JSDOM -- `ui-schema-interaction-parity.test.js` - - parity comparison between app and generator scenario outputs -The current issue is not that matrix coverage is useless. The issue is that the app/generator UI and parity matrices now overlap heavily with shared component tests and browser flows, while still being expensive and brittle. +The app/generator UI matrices are intentionally small page-wiring smoke suites. Broad app-vs-generator parity coverage was removed because both pages now exercise the same shared internals, while runtime semantics, focused component tests, and browser workflows provide clearer protection. ## Keep / Reduce / Remove Guidance @@ -150,14 +148,14 @@ Exit criteria: - There is a documented target layer for every major test-data behavior. - We have a replacement destination for any matrix assertion we plan to remove. -## Phase 3: Shrink Cross-Page Parity To A Representative Contract +## Phase 3: Retire Broad Cross-Page Parity -Goal: keep only the parity checks that still prove something unique. +Goal: keep cross-page checks only where they prove something unique. -- [ ] Replace the large `ui-schema-interaction-parity.test.js` sweep with a much smaller representative parity set. -- [ ] Keep scenarios only for composition points that can still diverge between app and generator. -- [ ] Prefer exact parity checks for a few canonical scenarios rather than structural parity checks for many scenarios. -- [ ] Remove parity cases that merely re-prove shared component output through both shells. +- [x] Remove the large `ui-schema-interaction-parity.test.js` sweep. +- [x] Remove parity fixture generation and static parity/report artifacts. +- [x] Keep app and generator page coverage as separate smoke suites so failures identify the broken shell directly. +- [x] Rely on runtime matrix coverage for broad scenario semantics and browser tests for user-visible workflows. Candidate parity survivors: @@ -169,8 +167,8 @@ Candidate parity survivors: Exit criteria: -- Cross-page parity coverage is small, fast, and easy to interpret. -- Failing parity tests point to real app-vs-generator divergence, not broad duplicated behavior. +- Cross-page parity coverage no longer duplicates shared component output through both shells. +- Failing page-shell tests point to the app or generator wiring that actually regressed. ## Phase 4: Move Shared Behavior Coverage Down To Components @@ -218,9 +216,9 @@ Exit criteria: Goal: reduce maintenance overhead in the test infrastructure itself. -- [ ] Remove harness code that exists only for broad parity sweeps no longer required. +- [x] Remove harness code that exists only for broad parity sweeps no longer required. - [ ] Simplify app/generator interaction harnesses to the smaller retained scenario sets. -- [ ] Delete helper utilities and fixture complexity that no longer serve a retained suite. +- [x] Delete helper utilities and fixture complexity that no longer serve a retained suite. - [ ] Update contributor docs so the intended role of runtime matrix, component tests, and browser tests is explicit. Exit criteria: @@ -248,7 +246,7 @@ Exit criteria: This plan is complete when: -- broad duplicated app-vs-generator parity coverage has been reduced to a small intentional contract +- broad duplicated app-vs-generator parity coverage has been retired in favor of separate smoke suites - shared behavior is primarily covered by component tests - page-specific behavior is primarily covered by focused integration and browser tests - runtime semantics remain covered independently of page-shell duplication @@ -260,7 +258,7 @@ The safest first implementation slice is: 1. Complete Phase 0 and Phase 1 as a paper audit. 2. Complete Phase 2 as the replacement coverage model. -3. Shrink `ui-schema-interaction-parity.test.js` to a representative subset. +3. Retire `ui-schema-interaction-parity.test.js` once app/generator smoke coverage is in place. 4. Keep the runtime matrix unchanged. 5. Re-run coverage review before shrinking the app and generator JSDOM matrices. @@ -268,7 +266,7 @@ That path removes the most obvious duplication first while preserving the highes ### Current Status -- The runtime matrix remains unchanged. +- The runtime matrix remains the broad generated safety net. - `app-schema-interaction-matrix.test.js` and `generator-schema-interaction-matrix.test.js` now run a page-wiring smoke subset instead of the full shared `uiScenarios` fixture. - The retained page-shell smoke scenarios are: - `custom-literal-base` @@ -282,4 +280,5 @@ That path removes the most obvious duplication first while preserving the highes - one representative faker helper flow - one representative domain/options flow - pairwise wiring coverage -- The broader semantics matrix still lives in `schema-interaction-runtime-matrix.test.js`, with parity sweeps remaining opt-in. +- The broad app-vs-generator parity sweep, parity fixture writer, parity fixture JSON, and static matrix summary artifact have been removed. +- The retained matrix report helper only formats chunk labels and command summaries for the active runtime and smoke suites. diff --git a/packages/core-ui/js/gui_components/shared/domain-command-help-metadata.js b/packages/core-ui/js/gui_components/shared/domain-command-help-metadata.js index c161f07d..0b1695db 100644 --- a/packages/core-ui/js/gui_components/shared/domain-command-help-metadata.js +++ b/packages/core-ui/js/gui_components/shared/domain-command-help-metadata.js @@ -1,107 +1 @@ -import { getDomainKeywordHelpByAlias } from '@anywaydata/core/domain/domain-keywords.js'; -import { normalizeUsageExamples } from '@anywaydata/core/command-help/command-help-contract.js'; -import { validateEnumMemberValue } from '@anywaydata/core/command-help/command-help-validators.js'; -import { buildDocsUrl } from '@anywaydata/site-config'; - -const ANYWAYDATA_DOMAIN_DOCS_BASE = buildDocsUrl('test-data/domain'); - -const SYNTHETIC_DOMAIN_HELP = Object.freeze({ - 'datatype.enum': { - canonical: 'awd.domain.datatype.enum', - summary: - 'Enum helper accepts a list of values and returns one value at random. Supports enum(value1,value2), enum value1,value2, or datatype.enum(value1,value2).', - docsUrl: `${ANYWAYDATA_DOMAIN_DOCS_BASE}/datatype`, - usageExamples: [ - { - functionCall: 'datatype.enum(active,inactive,pending)', - sampleReturnValue: 'active', - description: 'Shows the canonical datatype enum helper with three discrete values.', - }, - ], - returnType: 'string', - validator: validateEnumMemberValue, - args: [ - { - name: 'values', - type: 'comma-separated list', - variadic: true, - optional: false, - description: 'List of allowed enum values chosen at random during generation.', - example: 'active,inactive,pending', - }, - ], - }, -}); - -function normalizeSyntheticDomainHelp(command, definition) { - const args = Array.isArray(definition?.args) ? definition.args : []; - const usageExamples = normalizeUsageExamples({ - command, - returnType: definition?.returnType, - usageExamples: definition?.usageExamples, - }); - - return { - canonical: definition.canonical, - summary: definition.summary, - docsUrl: definition.docsUrl, - fakerDocsUrl: String(definition.fakerDocsUrl || '').trim(), - usageExamples, - validator: definition?.validator, - returnType: definition.returnType, - args, - }; -} - -function getDomainPageFromCommand(command) { - const value = String(command || '').trim(); - if (!value.includes('.')) { - return ''; - } - const domain = value.split('.')[0]; - if (!domain) { - return ''; - } - return `${ANYWAYDATA_DOMAIN_DOCS_BASE}/${domain}`; -} - -function resolveDomainDocsUrl(command, keywordDocsUrl) { - const explicitDocsUrl = String(keywordDocsUrl || '').trim(); - if ( - explicitDocsUrl.startsWith('https://anywaydata.com/') || - explicitDocsUrl.startsWith('/docs/') || - explicitDocsUrl.startsWith('docs/') - ) { - return explicitDocsUrl; - } - const domainPage = getDomainPageFromCommand(command); - if (domainPage) { - return domainPage; - } - return explicitDocsUrl || `${ANYWAYDATA_DOMAIN_DOCS_BASE}/domain-test-data`; -} - -function getDomainCommandHelp(command) { - const normalizedCommand = String(command || '').trim(); - const synthetic = SYNTHETIC_DOMAIN_HELP[normalizedCommand]; - if (synthetic) { - return normalizeSyntheticDomainHelp(normalizedCommand, synthetic); - } - const commandHelp = getDomainKeywordHelpByAlias(command); - if (!commandHelp) { - return null; - } - - return { - canonical: commandHelp.canonical, - summary: commandHelp.summary || '', - docsUrl: resolveDomainDocsUrl(command, commandHelp.docsUrl || ''), - fakerDocsUrl: String(commandHelp.fakerDocsUrl || '').trim(), - usageExamples: Array.isArray(commandHelp.usageExamples) ? commandHelp.usageExamples : [], - validator: commandHelp.validator, - returnType: commandHelp.returnType || '', - args: Array.isArray(commandHelp.args) ? commandHelp.args : [], - }; -} - -export { getDomainCommandHelp }; +export { getDomainCommandHelp } from '@anywaydata/core/domain/domain-command-metadata.js'; diff --git a/packages/core-ui/js/gui_components/shared/domain-commands.js b/packages/core-ui/js/gui_components/shared/domain-commands.js index 256e1ec6..ed064e6c 100644 --- a/packages/core-ui/js/gui_components/shared/domain-commands.js +++ b/packages/core-ui/js/gui_components/shared/domain-commands.js @@ -1,35 +1,5 @@ -import { DOMAIN_KEYWORD_ALIAS_INDEX } from '@anywaydata/core/domain/domain-keywords.js'; - -const SYNTHETIC_DOMAIN_COMMANDS = Object.freeze(['datatype.enum']); - -function getDomainKeywordEntries() { - const entries = Object.values(DOMAIN_KEYWORD_ALIAS_INDEX.byCanonical || {}); - return entries.sort((a, b) => String(a.keyword || '').localeCompare(String(b.keyword || ''))); -} - -function getKnownDomainCommandsAlphabetical() { - const commands = getDomainKeywordEntries().map((entry) => { - const shortest = String(entry.shortestUniqueAlias || '').trim(); - return shortest || String(entry.keyword || '').trim(); - }); - SYNTHETIC_DOMAIN_COMMANDS.forEach((command) => { - if (!commands.includes(command)) { - commands.push(command); - } - }); - return commands.sort((a, b) => a.localeCompare(b)); -} - -function getKnownDomainCommandsLongestFirst() { - return [...getKnownDomainCommandsAlphabetical()].sort((a, b) => b.length - a.length || a.localeCompare(b)); -} - -function getDomainKeywordByCommand(command) { - const key = String(command || '').trim(); - if (!key) { - return null; - } - return DOMAIN_KEYWORD_ALIAS_INDEX.byAlias[key] || null; -} - -export { getKnownDomainCommandsAlphabetical, getKnownDomainCommandsLongestFirst, getDomainKeywordByCommand }; +export { + getKnownDomainCommandsAlphabetical, + getKnownDomainCommandsLongestFirst, + getDomainKeywordByCommand, +} from '@anywaydata/core/domain/domain-command-metadata.js'; diff --git a/packages/core-ui/js/gui_components/shared/test-data/generation/generation-controller.js b/packages/core-ui/js/gui_components/shared/test-data/generation/generation-controller.js index 22557906..ecbbd915 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/generation/generation-controller.js +++ b/packages/core-ui/js/gui_components/shared/test-data/generation/generation-controller.js @@ -10,6 +10,7 @@ import { createPairwiseTableFromGenerator, createCombinationsTableFromGenerator, } from './generation-runtime.js'; +import { EnumParser } from '@anywaydata/core/data_generation/utils/enumParser.js'; function createGeneratorFromDataRules({ dataRules = [], TestDataGeneratorClass, faker, RandExp }) { const generator = new TestDataGeneratorClass(faker, RandExp); @@ -130,6 +131,9 @@ function createConfiguredGeneratorFromSchemaRows({ .trim() .toLowerCase() === 'datatype.enum'; + const toCanonicalEnumDomainRuleSpec = (row) => + EnumParser.normalizeToCanonicalDomainRuleSpec(buildRuleSpecFromSchemaRow(row)); + const { errors, rows } = validateSchemaRows(schemaRows); if (errors.length > 0) { return { generator: null, errors, rows: [] }; @@ -157,8 +161,10 @@ function createConfiguredGeneratorFromSchemaRows({ return; } if (row.sourceType === SOURCE_TYPE_FAKER || row.sourceType === SOURCE_TYPE_DOMAIN) { - rule.type = isDatatypeEnumDomainRow(row) ? SOURCE_TYPE_ENUM : row.sourceType; - rule.ruleSpec = buildRuleSpecFromSchemaRow(row); + rule.type = isDatatypeEnumDomainRow(row) ? SOURCE_TYPE_DOMAIN : row.sourceType; + rule.ruleSpec = isDatatypeEnumDomainRow(row) + ? toCanonicalEnumDomainRuleSpec(row) + : buildRuleSpecFromSchemaRow(row); return; } if (row.sourceType === SOURCE_TYPE_LITERAL) { @@ -167,8 +173,8 @@ function createConfiguredGeneratorFromSchemaRows({ return; } if (row.sourceType === SOURCE_TYPE_ENUM) { - rule.type = SOURCE_TYPE_ENUM; - rule.ruleSpec = buildRuleSpecFromSchemaRow(row); + rule.type = SOURCE_TYPE_DOMAIN; + rule.ruleSpec = toCanonicalEnumDomainRuleSpec(row); return; } rule.type = SOURCE_TYPE_REGEX; diff --git a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js index d597bee6..d7434196 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js +++ b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js @@ -17,6 +17,7 @@ import { normaliseDomainCommand, normaliseFakerCommand, } from '../../schema-row-rule-mapper.js'; +import { EnumParser } from '@anywaydata/core/data_generation/utils/enumParser.js'; import { getKnownFakerCommandsLongestFirst } from '../../faker-commands.js'; import { getKnownDomainCommandsLongestFirst, getDomainKeywordByCommand } from '../../domain-commands.js'; import { extractFakerCommandAndParams, extractDomainCommandAndParams } from './command-spec-parser.js'; @@ -171,6 +172,7 @@ function applySchemaCommandSelection(currentRow, { sourceType, command } = {}) { function mapDataRuleToSchemaRow(rule, { createBlankSchemaRow = createDefaultSchemaRow } = {}) { const row = createBlankSchemaRow(); + const normalizedRuleSpec = String(rule?.ruleSpec || '').trim(); row.name = String(rule?.name ?? ''); row.comments = String(rule?.comments ?? ''); row.leadingTextLines = Array.isArray(rule?.leadingTextLines) @@ -181,6 +183,17 @@ function mapDataRuleToSchemaRow(rule, { createBlankSchemaRow = createDefaultSche .trim() .toLowerCase() || SOURCE_TYPE_REGEX; + if ( + (row.sourceType === SOURCE_TYPE_ENUM || row.sourceType === SOURCE_TYPE_DOMAIN) && + EnumParser.isAwdEnumFormat(normalizedRuleSpec) + ) { + row.sourceType = SOURCE_TYPE_ENUM; + row.command = ''; + row.params = ''; + row.value = extractEnumValueFromRuleSpec(normalizedRuleSpec); + return row; + } + if (row.sourceType === SOURCE_TYPE_FAKER) { const parts = extractFakerCommandAndParams(rule?.ruleSpec, { normaliseFakerCommand, diff --git a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js index ba9579d0..ce89753a 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js +++ b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js @@ -4,6 +4,18 @@ * - Shared counting helpers for generated rule collections. */ +function isDatatypeEnumRule(rule = {}) { + return ( + String(rule?.type || '') + .trim() + .toLowerCase() === 'domain' && + String(rule?.ruleSpec || '') + .trim() + .toLowerCase() + .startsWith('datatype.enum(') + ); +} + function parseSchemaText({ schemaTextToDataRules, schemaText, faker, RandExp }) { return schemaTextToDataRules({ schemaText: String(schemaText ?? ''), @@ -14,7 +26,7 @@ function parseSchemaText({ schemaTextToDataRules, schemaText, faker, RandExp }) } function countEnumRules(rules = []) { - return (Array.isArray(rules) ? rules : []).filter((rule) => rule?.type === 'enum').length; + return (Array.isArray(rules) ? rules : []).filter((rule) => rule?.type === 'enum' || isDatatypeEnumRule(rule)).length; } export { parseSchemaText, countEnumRules }; diff --git a/packages/core-ui/src/tests/grid/schema/test-data-schema-grid-engine-compat.test.js b/packages/core-ui/src/tests/grid/schema/test-data-schema-grid-engine-compat.test.js index 539b61ef..0b1fb202 100644 --- a/packages/core-ui/src/tests/grid/schema/test-data-schema-grid-engine-compat.test.js +++ b/packages/core-ui/src/tests/grid/schema/test-data-schema-grid-engine-compat.test.js @@ -124,9 +124,11 @@ describe('test data schema editor compatibility', () => { test('combination generation reports an error when fewer than two enum columns exist', async () => { setup(); + document.querySelector('[data-role="schema-mode-toggle"]').click(); const schemaTextArea = document.querySelector('[data-role="schema-textbox"]'); schemaTextArea.value = 'OnlyEnum\nenum(a,b)'; schemaTextArea.dispatchEvent(new Event('input', { bubbles: true })); + document.querySelector('[data-role="schema-mode-toggle"]').click(); await waitForCondition(() => { const nameInput = document.querySelector( '[data-role="schema-rows-region"] .shared-schema-row input[data-field="name"]' @@ -141,5 +143,5 @@ describe('test data schema editor compatibility', () => { expect(document.querySelector('[data-role="schema-error"]').textContent).toContain( 'Combination generation requires at least 2 enum columns because n-wise generation combines finite enum values.' ); - }); + }, 15000); }); diff --git a/packages/core-ui/src/tests/interaction/app-test-data-focused-generation.test.js b/packages/core-ui/src/tests/interaction/app-test-data-focused-generation.test.js index 2cfe2d03..6de7998b 100644 --- a/packages/core-ui/src/tests/interaction/app-test-data-focused-generation.test.js +++ b/packages/core-ui/src/tests/interaction/app-test-data-focused-generation.test.js @@ -13,7 +13,7 @@ import { waitFor } from '@testing-library/dom'; import { jest } from '@jest/globals'; import { createFocusedAppTestDataHarness } from './support/focused-app-test-data-harness.js'; -jest.setTimeout(15000); +jest.setTimeout(30000); describe('app test-data focused generation flows', () => { let harness; diff --git a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js index 0e654aa5..0c8c5311 100644 --- a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js @@ -16,16 +16,12 @@ */ import { jest } from '@jest/globals'; -import { readFileSync } from 'node:fs'; -import { join } from 'node:path'; import { createAppTestDataInteractionHarness } from './support/app-test-data-interaction-harness.js'; +import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; -const fixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); +const scenarioSource = 'buildUiInteractionScenarios()'; const SMOKE_SCENARIO_IDS = [ 'custom-literal-base', 'custom-regex-base', @@ -33,7 +29,7 @@ const SMOKE_SCENARIO_IDS = [ 'domain-commerce-price-example-1', 'custom-enum-pairwise', ]; -const allScenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; +const allScenarios = buildUiInteractionScenarios(); const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => findScenarioByLogicalId(allScenarios, scenarioId)).filter( Boolean ); @@ -49,7 +45,7 @@ describe('app test-data schema interaction matrix', () => { beforeAll(() => { jest.spyOn(console, 'warn').mockImplementation(() => {}); harness = createAppTestDataInteractionHarness(); - console.info(`[app-matrix] fixture=${fixturePath}`); + console.info(`[app-matrix] source=${scenarioSource}`); console.info(`[app-matrix] scenarios=${scenarios.length} chunks=${chunkDescriptors.length}`); console.info(`[app-matrix] commands\n${formatCommandsForConsole(scenarios)}`); }); diff --git a/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix-summary.md b/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix-summary.md deleted file mode 100644 index 4a13a6df..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix-summary.md +++ /dev/null @@ -1,11039 +0,0 @@ -# Schema Interaction Matrix Summary - -Generated: `2026-06-17T13:02:55.544Z` - -This file describes what the interaction matrix covers. - -- `coverageScenarios`: full review catalog generated from definitions -- `runtimeScenarios`: executable real-core runtime subset -- `uiScenarios`: executable JSDOM UI subset - -## Coverage Scenarios - -Scenario count: **642** -Generated preview data count: **631** -Review-only scenario count: **0** -Non-executable scenario count: **11** - -### By Source Type - -| Key | Count | -| --- | ---: | -| `domain` | 582 | -| `enum` | 2 | -| `faker` | 54 | -| `literal` | 2 | -| `regex` | 2 | - -### By Origin - -| Key | Count | -| --- | ---: | -| `arg` | 222 | -| `base` | 256 | -| `custom` | 3 | -| `empty` | 2 | -| `example` | 33 | -| `pair` | 125 | -| `pairwise` | 1 | - -### Commands By Source Type - -#### `domain` (242) - -- `airline.aircraftType` -- `airline.flightNumber` -- `airline.iataCode` -- `airline.name` -- `airline.recordLocator` -- `airline.seat` -- `airplane.iataTypeCode` -- `airplane.name` -- `airport.iataCode` -- `airport.name` -- `animal.bear` -- `animal.bird` -- `animal.cat` -- `animal.cetacean` -- `animal.cow` -- `animal.crocodilia` -- `animal.dog` -- `animal.fish` -- `animal.horse` -- `animal.insect` -- `animal.lion` -- `animal.petName` -- `animal.rabbit` -- `animal.rodent` -- `animal.snake` -- `animal.type` -- `autoIncrement.sequence` -- `autoIncrement.timestamp` -- `book.author` -- `book.format` -- `book.genre` -- `book.publisher` -- `book.series` -- `book.title` -- `chemicalElement.atomicNumber` -- `chemicalElement.name` -- `chemicalElement.symbol` -- `color.cssSupportedFunction` -- `color.cssSupportedSpace` -- `color.human` -- `color.rgb` -- `color.space` -- `commerce.department` -- `commerce.isbn` -- `commerce.price` -- `commerce.product` -- `commerce.productAdjective` -- `commerce.productDescription` -- `commerce.productMaterial` -- `commerce.productName` -- `commerce.upc` -- `company.buzzAdjective` -- `company.buzzNoun` -- `company.buzzPhrase` -- `company.buzzVerb` -- `company.catchPhrase` -- `company.catchPhraseAdjective` -- `company.catchPhraseDescriptor` -- `company.catchPhraseNoun` -- `company.name` -- `database.collation` -- `database.column` -- `database.engine` -- `database.mongodbObjectId` -- `database.type` -- `datatype.boolean` -- `datatype.enum` -- `date.anytime` -- `date.between` -- `date.birthdate` -- `date.future` -- `date.month` -- `date.past` -- `date.recent` -- `date.soon` -- `date.timeZone` -- `date.weekday` -- `finance.accountName` -- `finance.accountNumber` -- `finance.amount` -- `finance.bic` -- `finance.bitcoinAddress` -- `finance.creditCardCVV` -- `finance.creditCardIssuer` -- `finance.creditCardNumber` -- `finance.currencyCode` -- `finance.currencyName` -- `finance.currencyNumericCode` -- `finance.currencySymbol` -- `finance.ethereumAddress` -- `finance.iban` -- `finance.litecoinAddress` -- `finance.pin` -- `finance.routingNumber` -- `finance.transactionDescription` -- `finance.transactionType` -- `food.adjective` -- `food.description` -- `food.dish` -- `food.ethnicCategory` -- `food.fruit` -- `food.ingredient` -- `food.meat` -- `food.spice` -- `food.vegetable` -- `git.branch` -- `git.commitDate` -- `git.commitEntry` -- `git.commitMessage` -- `git.commitSha` -- `hacker.abbreviation` -- `hacker.adjective` -- `hacker.ingverb` -- `hacker.noun` -- `hacker.phrase` -- `hacker.verb` -- `image.avatar` -- `image.avatarGitHub` -- `image.dataUri` -- `image.personPortrait` -- `image.url` -- `image.urlPicsumPhotos` -- `internet.displayName` -- `internet.domainName` -- `internet.domainSuffix` -- `internet.domainWord` -- `internet.email` -- `internet.emoji` -- `internet.exampleEmail` -- `internet.httpMethod` -- `internet.httpStatusCode` -- `internet.ip` -- `internet.ipv4` -- `internet.ipv6` -- `internet.jwt` -- `internet.jwtAlgorithm` -- `internet.mac` -- `internet.password` -- `internet.port` -- `internet.protocol` -- `internet.url` -- `internet.userAgent` -- `internet.username` -- `literal.value` -- `location.buildingNumber` -- `location.cardinalDirection` -- `location.city` -- `location.continent` -- `location.country` -- `location.countryCode` -- `location.county` -- `location.direction` -- `location.latitude` -- `location.longitude` -- `location.ordinalDirection` -- `location.secondaryAddress` -- `location.state` -- `location.street` -- `location.streetAddress` -- `location.timeZone` -- `location.zipCode` -- `lorem.lines` -- `lorem.paragraph` -- `lorem.paragraphs` -- `lorem.sentence` -- `lorem.sentences` -- `lorem.slug` -- `lorem.text` -- `lorem.word` -- `lorem.words` -- `music.album` -- `music.artist` -- `music.genre` -- `music.songName` -- `number.bigInt` -- `number.binary` -- `number.float` -- `number.hex` -- `number.int` -- `number.octal` -- `number.romanNumeral` -- `person.bio` -- `person.firstName` -- `person.fullName` -- `person.gender` -- `person.jobArea` -- `person.jobDescriptor` -- `person.jobTitle` -- `person.jobType` -- `person.lastName` -- `person.middleName` -- `person.prefix` -- `person.sex` -- `person.sexType` -- `person.suffix` -- `person.zodiacSign` -- `phone.imei` -- `phone.number` -- `string.alpha` -- `string.alphanumeric` -- `string.binary` -- `string.counterString` -- `string.fromCharacters` -- `string.hexadecimal` -- `string.nanoid` -- `string.numeric` -- `string.octal` -- `string.sample` -- `string.symbol` -- `string.ulid` -- `string.uuid` -- `system.commonFileExt` -- `system.commonFileName` -- `system.commonFileType` -- `system.cron` -- `system.directoryPath` -- `system.fileExt` -- `system.fileName` -- `system.filePath` -- `system.fileType` -- `system.mimeType` -- `system.networkInterface` -- `system.semver` -- `vehicle.bicycle` -- `vehicle.color` -- `vehicle.fuel` -- `vehicle.manufacturer` -- `vehicle.model` -- `vehicle.type` -- `vehicle.vehicle` -- `vehicle.vin` -- `vehicle.vrm` -- `word.adjective` -- `word.adverb` -- `word.conjunction` -- `word.interjection` -- `word.noun` -- `word.preposition` -- `word.sample` -- `word.verb` -- `word.words` - -#### `enum` (2) - -- `enum` -- `enum pairwise` - -#### `faker` (14) - -- `helpers.arrayElement` -- `helpers.arrayElements` -- `helpers.fake` -- `helpers.fromRegExp` -- `helpers.maybe` -- `helpers.multiple` -- `helpers.mustache` -- `helpers.rangeToNumber` -- `helpers.replaceCreditCardSymbols` -- `helpers.replaceSymbols` -- `helpers.shuffle` -- `helpers.slugify` -- `helpers.uniqueArray` -- `helpers.weightedArrayElement` - -#### `literal` (2) - -- `literal` -- `literal empty` - -#### `regex` (2) - -- `regex` -- `regex empty` - -### Scenario Details - -#### `custom-enum-base` - -- Command(s): `enum(active,inactive,pending)` -- Preview data: -```csv - -``` - -#### `custom-enum-pairwise` - -- Command(s): `Status: enum(active,inactive,pending) | Priority: enum(high,medium,low)` -- Schema Rows: `Status: enum(active,inactive,pending)`, `Priority: enum(high,medium,low)` -- Preview data: -```csv - -``` - -#### `custom-literal-base` - -- Command(s): `literal("Pending")` -- Preview data: -```csv - -``` - -#### `custom-literal-empty` - -- Command(s): `literal("")` -- Preview data: -```csv - -``` - -#### `custom-regex-base` - -- Command(s): `regex("[A-Z]{2}[0-9]{2}")` -- Preview data: -```csv - -``` - -#### `custom-regex-empty` - -- Command(s): `regex("")` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-base` - -- Command(s): `helpers.arrayElement(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-example-1` - -- Command(s): `helpers.arrayElement(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-arg-array` - -- Command(s): `helpers.arrayElement(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-base` - -- Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-example-1` - -- Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-arg-array` - -- Command(s): `helpers.arrayElements(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-arg-count` - -- Command(s): `helpers.arrayElements(["A", "B"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-pair-array-count` - -- Command(s): `helpers.arrayElements(["A", "B"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-base` - -- Command(s): `helpers.fake("{{person.firstName}}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-example-1` - -- Command(s): `helpers.fake("Hi, my name is {{person.firstName}} {{person.lastName}}!")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-arg-pattern` - -- Command(s): `helpers.fake("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-base` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-example-1` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-arg-pattern` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-maybe-base` - -- Command(s): `helpers.maybe("helpers-maybe-callback")` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-maybe-example-1` - -- Command(s): `helpers.maybe(() => "enabled")` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-maybe-arg-callback` - -- Command(s): `helpers.maybe("helpers-maybe-callback")` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-maybe-arg-options` - -- Command(s): `helpers.maybe("helpers-maybe-callback", {})` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-maybe-pair-callback-options` - -- Command(s): `helpers.maybe("helpers-maybe-callback", {})` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-multiple-base` - -- Command(s): `helpers.multiple("helpers-multiple-method")` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-multiple-example-1` - -- Command(s): `helpers.multiple(() => faker.person.firstName(), { count: 3 })` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-multiple-arg-method` - -- Command(s): `helpers.multiple("helpers-multiple-method")` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-multiple-arg-options` - -- Command(s): `helpers.multiple("helpers-multiple-method", 3)` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-multiple-pair-method-options` - -- Command(s): `helpers.multiple("helpers-multiple-method", 3)` -- Preview data: not generated for this non-executable scenario - -#### `faker-helpers-mustache-base` - -- Command(s): `helpers.mustache("{{name}}", { name: "Ada" })` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-example-1` - -- Command(s): `helpers.mustache("Hello {{name}}", { name: "Ada" })` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-arg-text` - -- Command(s): `helpers.mustache("{{name}}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-arg-data` - -- Command(s): `helpers.mustache("{{name}}", {})` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-pair-text-data` - -- Command(s): `helpers.mustache("{{name}}", {})` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-base` - -- Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-example-1` - -- Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-arg-numberOrRange` - -- Command(s): `helpers.rangeToNumber(2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-base` - -- Command(s): `helpers.replaceCreditCardSymbols()` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-example-1` - -- Command(s): `helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-arg-string` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-arg-symbol` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-pair-string-symbol` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-base` - -- Command(s): `helpers.replaceSymbols()` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-example-1` - -- Command(s): `helpers.replaceSymbols("##??-##")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-arg-string` - -- Command(s): `helpers.replaceSymbols("helpers-replaceSymbols-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-base` - -- Command(s): `helpers.shuffle(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-example-1` - -- Command(s): `helpers.shuffle(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-arg-array` - -- Command(s): `helpers.shuffle(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-base` - -- Command(s): `helpers.slugify()` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-example-1` - -- Command(s): `helpers.slugify("Hello World 2026")` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-arg-string` - -- Command(s): `helpers.slugify("helpers-slugify-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-base` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-example-1` - -- Command(s): `helpers.uniqueArray(["red", "green", "blue"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-arg-source` - -- Command(s): `helpers.uniqueArray(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-arg-length` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-pair-source-length` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-base` - -- Command(s): `helpers.weightedArrayElement([{ "weight": 1, "value": "A" }, { "weight": 2, "value": "B" }])` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-example-1` - -- Command(s): `helpers.weightedArrayElement([{ weight: 5, value: "sunny" }, { weight: 1, value: "rainy" }])` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-arg-array` - -- Command(s): `helpers.weightedArrayElement(["A", "B"])` -- Preview data: not generated for this non-executable scenario - -#### `domain-airline-aircraftType-base` - -- Command(s): `airline.aircraftType()` -- Preview data: -```csv - -``` - -#### `domain-airline-flightNumber-base` - -- Command(s): `airline.flightNumber()` -- Preview data: -```csv - -``` - -#### `domain-airline-iataCode-base` - -- Command(s): `airline.iataCode()` -- Preview data: -```csv - -``` - -#### `domain-airline-name-base` - -- Command(s): `airline.name()` -- Preview data: -```csv - -``` - -#### `domain-airline-recordLocator-base` - -- Command(s): `airline.recordLocator()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-base` - -- Command(s): `airline.seat()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-example-1` - -- Command(s): `airline.seat()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-example-2` - -- Command(s): `airline.seat(aircraftType="widebody")` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-arg-aircraftType` - -- Command(s): `airline.seat(aircraftType="widebody")` -- Preview data: -```csv - -``` - -#### `domain-airplane-iataTypeCode-base` - -- Command(s): `airplane.iataTypeCode()` -- Preview data: -```csv - -``` - -#### `domain-airplane-name-base` - -- Command(s): `airplane.name()` -- Preview data: -```csv - -``` - -#### `domain-airport-iataCode-base` - -- Command(s): `airport.iataCode()` -- Preview data: -```csv - -``` - -#### `domain-airport-name-base` - -- Command(s): `airport.name()` -- Preview data: -```csv - -``` - -#### `domain-animal-bear-base` - -- Command(s): `animal.bear()` -- Preview data: -```csv - -``` - -#### `domain-animal-bird-base` - -- Command(s): `animal.bird()` -- Preview data: -```csv - -``` - -#### `domain-animal-cat-base` - -- Command(s): `animal.cat()` -- Preview data: -```csv - -``` - -#### `domain-animal-cetacean-base` - -- Command(s): `animal.cetacean()` -- Preview data: -```csv - -``` - -#### `domain-animal-cow-base` - -- Command(s): `animal.cow()` -- Preview data: -```csv - -``` - -#### `domain-animal-crocodilia-base` - -- Command(s): `animal.crocodilia()` -- Preview data: -```csv - -``` - -#### `domain-animal-dog-base` - -- Command(s): `animal.dog()` -- Preview data: -```csv - -``` - -#### `domain-animal-fish-base` - -- Command(s): `animal.fish()` -- Preview data: -```csv - -``` - -#### `domain-animal-horse-base` - -- Command(s): `animal.horse()` -- Preview data: -```csv - -``` - -#### `domain-animal-insect-base` - -- Command(s): `animal.insect()` -- Preview data: -```csv - -``` - -#### `domain-animal-lion-base` - -- Command(s): `animal.lion()` -- Preview data: -```csv - -``` - -#### `domain-animal-petName-base` - -- Command(s): `animal.petName()` -- Preview data: -```csv - -``` - -#### `domain-animal-rabbit-base` - -- Command(s): `animal.rabbit()` -- Preview data: -```csv - -``` - -#### `domain-animal-rodent-base` - -- Command(s): `animal.rodent()` -- Preview data: -```csv - -``` - -#### `domain-animal-snake-base` - -- Command(s): `animal.snake()` -- Preview data: -```csv - -``` - -#### `domain-animal-type-base` - -- Command(s): `animal.type()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-base` - -- Command(s): `autoIncrement.sequence(1, 5, "filename", ".txt", 3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-1` - -- Command(s): `autoIncrement.sequence()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-2` - -- Command(s): `autoIncrement.sequence(start=10, step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-3` - -- Command(s): `autoIncrement.sequence(start=1, step=5, prefix="filename", suffix=".txt", zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-start` - -- Command(s): `autoIncrement.sequence(start=10)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-step` - -- Command(s): `autoIncrement.sequence(step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-prefix` - -- Command(s): `autoIncrement.sequence(prefix="filename")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-suffix` - -- Command(s): `autoIncrement.sequence(suffix=".txt")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-zeropadding` - -- Command(s): `autoIncrement.sequence(zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-start-step` - -- Command(s): `autoIncrement.sequence(start=10, step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-step-prefix` - -- Command(s): `autoIncrement.sequence(step=5, prefix="filename")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-prefix-suffix` - -- Command(s): `autoIncrement.sequence(prefix="filename", suffix=".txt")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-suffix-zeropadding` - -- Command(s): `autoIncrement.sequence(suffix=".txt", zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-base` - -- Command(s): `autoIncrement.timestamp()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-1` - -- Command(s): `autoIncrement.timestamp()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-2` - -- Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-3` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12 12:39:23", step=15, type="minutes", outputFormat="yyyy-MM-dd HH:mm:ss")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-start` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-step` - -- Command(s): `autoIncrement.timestamp(step=1)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-type` - -- Command(s): `autoIncrement.timestamp(type="seconds")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-outputFormat` - -- Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-inputFormat` - -- Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-start-step` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-step-type` - -- Command(s): `autoIncrement.timestamp(step=1, type="seconds")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-type-outputFormat` - -- Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` - -- Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` -- Preview data: -```csv - -``` - -#### `domain-book-author-base` - -- Command(s): `book.author()` -- Preview data: -```csv - -``` - -#### `domain-book-format-base` - -- Command(s): `book.format()` -- Preview data: -```csv - -``` - -#### `domain-book-genre-base` - -- Command(s): `book.genre()` -- Preview data: -```csv - -``` - -#### `domain-book-publisher-base` - -- Command(s): `book.publisher()` -- Preview data: -```csv - -``` - -#### `domain-book-series-base` - -- Command(s): `book.series()` -- Preview data: -```csv - -``` - -#### `domain-book-title-base` - -- Command(s): `book.title()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-atomicNumber-base` - -- Command(s): `chemicalElement.atomicNumber()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-name-base` - -- Command(s): `chemicalElement.name()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-symbol-base` - -- Command(s): `chemicalElement.symbol()` -- Preview data: -```csv - -``` - -#### `domain-color-cssSupportedFunction-base` - -- Command(s): `color.cssSupportedFunction()` -- Preview data: -```csv - -``` - -#### `domain-color-cssSupportedSpace-base` - -- Command(s): `color.cssSupportedSpace()` -- Preview data: -```csv - -``` - -#### `domain-color-human-base` - -- Command(s): `color.human()` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-base` - -- Command(s): `color.rgb()` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-casing` - -- Command(s): `color.rgb(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-format` - -- Command(s): `color.rgb(format="hex")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-includeAlpha` - -- Command(s): `color.rgb(includeAlpha=true)` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-prefix` - -- Command(s): `color.rgb(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-casing-format` - -- Command(s): `color.rgb(casing="upper", format="hex")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-format-includeAlpha` - -- Command(s): `color.rgb(format="hex", includeAlpha=true)` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-includeAlpha-prefix` - -- Command(s): `color.rgb(includeAlpha=true, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-color-space-base` - -- Command(s): `color.space()` -- Preview data: -```csv - -``` - -#### `domain-commerce-department-base` - -- Command(s): `commerce.department()` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-base` - -- Command(s): `commerce.isbn()` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-arg-separator` - -- Command(s): `commerce.isbn(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-arg-variant` - -- Command(s): `commerce.isbn(variant="13")` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-pair-separator-variant` - -- Command(s): `commerce.isbn(separator="-", variant="13")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-base` - -- Command(s): `commerce.price()` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-example-1` - -- Command(s): `commerce.price(dec=2, max=10, min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-dec` - -- Command(s): `commerce.price(dec=2)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-max` - -- Command(s): `commerce.price(max=100)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-min` - -- Command(s): `commerce.price(min=1)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-symbol` - -- Command(s): `commerce.price(symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-dec-max` - -- Command(s): `commerce.price(dec=2, max=100)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-max-min` - -- Command(s): `commerce.price(max=100, min=1)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-min-symbol` - -- Command(s): `commerce.price(min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-product-base` - -- Command(s): `commerce.product()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productAdjective-base` - -- Command(s): `commerce.productAdjective()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productDescription-base` - -- Command(s): `commerce.productDescription()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productMaterial-base` - -- Command(s): `commerce.productMaterial()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productName-base` - -- Command(s): `commerce.productName()` -- Preview data: -```csv - -``` - -#### `domain-commerce-upc-base` - -- Command(s): `commerce.upc()` -- Preview data: -```csv - -``` - -#### `domain-commerce-upc-arg-prefix` - -- Command(s): `commerce.upc(prefix="01234")` -- Preview data: -```csv - -``` - -#### `domain-company-buzzAdjective-base` - -- Command(s): `company.buzzAdjective()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzNoun-base` - -- Command(s): `company.buzzNoun()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzPhrase-base` - -- Command(s): `company.buzzPhrase()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzVerb-base` - -- Command(s): `company.buzzVerb()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhrase-base` - -- Command(s): `company.catchPhrase()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseAdjective-base` - -- Command(s): `company.catchPhraseAdjective()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseDescriptor-base` - -- Command(s): `company.catchPhraseDescriptor()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseNoun-base` - -- Command(s): `company.catchPhraseNoun()` -- Preview data: -```csv - -``` - -#### `domain-company-name-base` - -- Command(s): `company.name()` -- Preview data: -```csv - -``` - -#### `domain-database-collation-base` - -- Command(s): `database.collation()` -- Preview data: -```csv - -``` - -#### `domain-database-column-base` - -- Command(s): `database.column()` -- Preview data: -```csv - -``` - -#### `domain-database-engine-base` - -- Command(s): `database.engine()` -- Preview data: -```csv - -``` - -#### `domain-database-mongodbObjectId-base` - -- Command(s): `database.mongodbObjectId()` -- Preview data: -```csv - -``` - -#### `domain-database-type-base` - -- Command(s): `database.type()` -- Preview data: -```csv - -``` - -#### `domain-datatype-boolean-base` - -- Command(s): `datatype.boolean()` -- Preview data: -```csv - -``` - -#### `domain-datatype-boolean-arg-probability` - -- Command(s): `datatype.boolean(probability=2)` -- Preview data: -```csv - -``` - -#### `domain-datatype-enum-base` - -- Command(s): `datatype.enum("active", "inactive", "pending")` -- Preview data: -```csv - -``` - -#### `domain-datatype-enum-arg-values` - -- Command(s): `datatype.enum(values="datatype-enum-values")` -- Preview data: -```csv - -``` - -#### `domain-date-anytime-base` - -- Command(s): `date.anytime()` -- Preview data: -```csv - -``` - -#### `domain-date-anytime-arg-refDate` - -- Command(s): `date.anytime(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-base` - -- Command(s): `date.between(1577836800000, 1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-arg-from` - -- Command(s): `date.between(from=1577836800000, to=1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-arg-to` - -- Command(s): `date.between(to=1609372800000, from=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-pair-from-to` - -- Command(s): `date.between(from=1577836800000, to=1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-base` - -- Command(s): `date.birthdate()` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-example-1` - -- Command(s): `date.birthdate(refDate=20000, max=69, min=16, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-refDate` - -- Command(s): `date.birthdate(refDate=1577836800000, min=18, max=65, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-max` - -- Command(s): `date.birthdate(max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-min` - -- Command(s): `date.birthdate(min=18, max=65, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-mode` - -- Command(s): `date.birthdate(mode="age", min=18, max=65)` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-refDate-max` - -- Command(s): `date.birthdate(refDate=1577836800000, max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-max-min` - -- Command(s): `date.birthdate(max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-min-mode` - -- Command(s): `date.birthdate(min=18, mode="age", max=65)` -- Preview data: -```csv - -``` - -#### `domain-date-future-base` - -- Command(s): `date.future()` -- Preview data: -```csv - -``` - -#### `domain-date-future-arg-refDate` - -- Command(s): `date.future(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-future-arg-years` - -- Command(s): `date.future(years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-future-pair-refDate-years` - -- Command(s): `date.future(refDate=1577836800000, years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-month-base` - -- Command(s): `date.month()` -- Preview data: -```csv - -``` - -#### `domain-date-month-arg-abbreviated` - -- Command(s): `date.month(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-date-month-arg-context` - -- Command(s): `date.month(context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-month-pair-abbreviated-context` - -- Command(s): `date.month(abbreviated=true, context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-past-base` - -- Command(s): `date.past()` -- Preview data: -```csv - -``` - -#### `domain-date-past-arg-refDate` - -- Command(s): `date.past(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-past-arg-years` - -- Command(s): `date.past(years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-past-pair-refDate-years` - -- Command(s): `date.past(refDate=1577836800000, years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-base` - -- Command(s): `date.recent()` -- Preview data: -```csv - -``` - -#### `domain-date-recent-arg-days` - -- Command(s): `date.recent(days=7)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-arg-refDate` - -- Command(s): `date.recent(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-pair-days-refDate` - -- Command(s): `date.recent(days=7, refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-base` - -- Command(s): `date.soon()` -- Preview data: -```csv - -``` - -#### `domain-date-soon-arg-days` - -- Command(s): `date.soon(days=7)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-arg-refDate` - -- Command(s): `date.soon(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-pair-days-refDate` - -- Command(s): `date.soon(days=7, refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-timeZone-base` - -- Command(s): `date.timeZone()` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-base` - -- Command(s): `date.weekday()` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-arg-abbreviated` - -- Command(s): `date.weekday(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-arg-context` - -- Command(s): `date.weekday(context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-pair-abbreviated-context` - -- Command(s): `date.weekday(abbreviated=true, context=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-accountName-base` - -- Command(s): `finance.accountName()` -- Preview data: -```csv - -``` - -#### `domain-finance-accountNumber-base` - -- Command(s): `finance.accountNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-accountNumber-arg-length` - -- Command(s): `finance.accountNumber(length=4)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-base` - -- Command(s): `finance.amount()` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-autoFormat` - -- Command(s): `finance.amount(autoFormat=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-dec` - -- Command(s): `finance.amount(dec=2)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-max` - -- Command(s): `finance.amount(max=100)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-min` - -- Command(s): `finance.amount(min=1)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-symbol` - -- Command(s): `finance.amount(symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-autoFormat-dec` - -- Command(s): `finance.amount(autoFormat=true, dec=2)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-dec-max` - -- Command(s): `finance.amount(dec=2, max=100)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-max-min` - -- Command(s): `finance.amount(max=100, min=1)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-min-symbol` - -- Command(s): `finance.amount(min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-finance-bic-base` - -- Command(s): `finance.bic()` -- Preview data: -```csv - -``` - -#### `domain-finance-bic-arg-includeBranchCode` - -- Command(s): `finance.bic(includeBranchCode=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-bitcoinAddress-base` - -- Command(s): `finance.bitcoinAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardCVV-base` - -- Command(s): `finance.creditCardCVV()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardIssuer-base` - -- Command(s): `finance.creditCardIssuer()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardNumber-base` - -- Command(s): `finance.creditCardNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardNumber-arg-issuer` - -- Command(s): `finance.creditCardNumber(issuer="finance-creditCardNumber-issuer")` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyCode-base` - -- Command(s): `finance.currencyCode()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyName-base` - -- Command(s): `finance.currencyName()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyNumericCode-base` - -- Command(s): `finance.currencyNumericCode()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencySymbol-base` - -- Command(s): `finance.currencySymbol()` -- Preview data: -```csv - -``` - -#### `domain-finance-ethereumAddress-base` - -- Command(s): `finance.ethereumAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-base` - -- Command(s): `finance.iban()` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-arg-countryCode` - -- Command(s): `finance.iban(countryCode="GB")` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-arg-formatted` - -- Command(s): `finance.iban(formatted=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-pair-countryCode-formatted` - -- Command(s): `finance.iban(countryCode="GB", formatted=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-litecoinAddress-base` - -- Command(s): `finance.litecoinAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-pin-base` - -- Command(s): `finance.pin()` -- Preview data: -```csv - -``` - -#### `domain-finance-pin-arg-length` - -- Command(s): `finance.pin(length=4)` -- Preview data: -```csv - -``` - -#### `domain-finance-routingNumber-base` - -- Command(s): `finance.routingNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-transactionDescription-base` - -- Command(s): `finance.transactionDescription()` -- Preview data: -```csv - -``` - -#### `domain-finance-transactionType-base` - -- Command(s): `finance.transactionType()` -- Preview data: -```csv - -``` - -#### `domain-food-adjective-base` - -- Command(s): `food.adjective()` -- Preview data: -```csv - -``` - -#### `domain-food-description-base` - -- Command(s): `food.description()` -- Preview data: -```csv - -``` - -#### `domain-food-dish-base` - -- Command(s): `food.dish()` -- Preview data: -```csv - -``` - -#### `domain-food-ethnicCategory-base` - -- Command(s): `food.ethnicCategory()` -- Preview data: -```csv - -``` - -#### `domain-food-fruit-base` - -- Command(s): `food.fruit()` -- Preview data: -```csv - -``` - -#### `domain-food-ingredient-base` - -- Command(s): `food.ingredient()` -- Preview data: -```csv - -``` - -#### `domain-food-meat-base` - -- Command(s): `food.meat()` -- Preview data: -```csv - -``` - -#### `domain-food-spice-base` - -- Command(s): `food.spice()` -- Preview data: -```csv - -``` - -#### `domain-food-vegetable-base` - -- Command(s): `food.vegetable()` -- Preview data: -```csv - -``` - -#### `domain-git-branch-base` - -- Command(s): `git.branch()` -- Preview data: -```csv - -``` - -#### `domain-git-commitDate-base` - -- Command(s): `git.commitDate()` -- Preview data: -```csv - -``` - -#### `domain-git-commitEntry-base` - -- Command(s): `git.commitEntry()` -- Preview data: -```csv - -``` - -#### `domain-git-commitMessage-base` - -- Command(s): `git.commitMessage()` -- Preview data: -```csv - -``` - -#### `domain-git-commitSha-base` - -- Command(s): `git.commitSha()` -- Preview data: -```csv - -``` - -#### `domain-hacker-abbreviation-base` - -- Command(s): `hacker.abbreviation()` -- Preview data: -```csv - -``` - -#### `domain-hacker-adjective-base` - -- Command(s): `hacker.adjective()` -- Preview data: -```csv - -``` - -#### `domain-hacker-ingverb-base` - -- Command(s): `hacker.ingverb()` -- Preview data: -```csv - -``` - -#### `domain-hacker-noun-base` - -- Command(s): `hacker.noun()` -- Preview data: -```csv - -``` - -#### `domain-hacker-phrase-base` - -- Command(s): `hacker.phrase()` -- Preview data: -```csv - -``` - -#### `domain-hacker-verb-base` - -- Command(s): `hacker.verb()` -- Preview data: -```csv - -``` - -#### `domain-image-avatar-base` - -- Command(s): `image.avatar()` -- Preview data: -```csv - -``` - -#### `domain-image-avatarGitHub-base` - -- Command(s): `image.avatarGitHub()` -- Preview data: -```csv - -``` - -#### `domain-image-dataUri-base` - -- Command(s): `image.dataUri()` -- Preview data: -```csv - -``` - -#### `domain-image-personPortrait-base` - -- Command(s): `image.personPortrait()` -- Preview data: -```csv - -``` - -#### `domain-image-url-base` - -- Command(s): `image.url()` -- Preview data: -```csv - -``` - -#### `domain-image-url-arg-height` - -- Command(s): `image.url(height=2)` -- Preview data: -```csv - -``` - -#### `domain-image-url-arg-width` - -- Command(s): `image.url(width=3)` -- Preview data: -```csv - -``` - -#### `domain-image-url-pair-height-width` - -- Command(s): `image.url(height=2, width=3)` -- Preview data: -```csv - -``` - -- Preview data: -```csv - -``` - -#### `domain-image-urlPicsumPhotos-base` - -- Command(s): `image.urlPicsumPhotos()` -- Preview data: -```csv - -``` - -#### `domain-internet-displayName-base` - -- Command(s): `internet.displayName()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainName-base` - -- Command(s): `internet.domainName()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainSuffix-base` - -- Command(s): `internet.domainSuffix()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainWord-base` - -- Command(s): `internet.domainWord()` -- Preview data: -```csv - -``` - -#### `domain-internet-email-base` - -- Command(s): `internet.email()` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-allowSpecialCharacters` - -- Command(s): `internet.email(allowSpecialCharacters=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-firstName` - -- Command(s): `internet.email(firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-lastName` - -- Command(s): `internet.email(lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-provider` - -- Command(s): `internet.email(provider="example.com")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-allowSpecialCharacters-firstName` - -- Command(s): `internet.email(allowSpecialCharacters=true, firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-firstName-lastName` - -- Command(s): `internet.email(firstName="Ada", lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-lastName-provider` - -- Command(s): `internet.email(lastName="Lovelace", provider="example.com")` -- Preview data: -```csv - -``` - -#### `domain-internet-emoji-base` - -- Command(s): `internet.emoji()` -- Preview data: -```csv - -``` - -#### `domain-internet-emoji-arg-types` - -- Command(s): `internet.emoji(types=["food"])` -- Preview data: -```csv - -``` - -#### `domain-internet-exampleEmail-base` - -- Command(s): `internet.exampleEmail()` -- Preview data: -```csv - -``` - -#### `domain-internet-httpMethod-base` - -- Command(s): `internet.httpMethod()` -- Preview data: -```csv - -``` - -#### `domain-internet-httpStatusCode-base` - -- Command(s): `internet.httpStatusCode()` -- Preview data: -```csv - -``` - -#### `domain-internet-ip-base` - -- Command(s): `internet.ip()` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-base` - -- Command(s): `internet.ipv4()` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-arg-cidrBlock` - -- Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-arg-network` - -- Command(s): `internet.ipv4(network="private-a")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-pair-cidrBlock-network` - -- Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24", network="private-a")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv6-base` - -- Command(s): `internet.ipv6()` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-base` - -- Command(s): `internet.jwt()` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-header` - -- Command(s): `internet.jwt(header={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-payload` - -- Command(s): `internet.jwt(payload={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-refDate` - -- Command(s): `internet.jwt(refDate=4)` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-pair-header-payload` - -- Command(s): `internet.jwt(header={}, payload={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-pair-payload-refDate` - -- Command(s): `internet.jwt(payload={}, refDate=4)` -- Preview data: -```csv - -``` - -#### `domain-internet-jwtAlgorithm-base` - -- Command(s): `internet.jwtAlgorithm()` -- Preview data: -```csv - -``` - -#### `domain-internet-mac-base` - -- Command(s): `internet.mac()` -- Preview data: -```csv - -``` - -#### `domain-internet-mac-arg-separator` - -- Command(s): `internet.mac(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-base` - -- Command(s): `internet.password()` -- Preview data: -```csv - -``` - -#### `domain-internet-password-example-1` - -- Command(s): `internet.password(length=10, memorable=false, pattern="[A-Za-z0-9]", prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-length` - -- Command(s): `internet.password(length=12)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-memorable` - -- Command(s): `internet.password(memorable=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-pattern` - -- Command(s): `internet.password(pattern="[A-Z]")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-prefix` - -- Command(s): `internet.password(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-length-memorable` - -- Command(s): `internet.password(length=12, memorable=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-memorable-pattern` - -- Command(s): `internet.password(memorable=true, pattern="[A-Z]")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-pattern-prefix` - -- Command(s): `internet.password(pattern="[A-Z]", prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-port-base` - -- Command(s): `internet.port()` -- Preview data: -```csv - -``` - -#### `domain-internet-protocol-base` - -- Command(s): `internet.protocol()` -- Preview data: -```csv - -``` - -#### `domain-internet-url-base` - -- Command(s): `internet.url()` -- Preview data: -```csv - -``` - -#### `domain-internet-url-arg-appendSlash` - -- Command(s): `internet.url(appendSlash=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-url-arg-protocol` - -- Command(s): `internet.url(protocol="https")` -- Preview data: -```csv - -``` - -#### `domain-internet-url-pair-appendSlash-protocol` - -- Command(s): `internet.url(appendSlash=true, protocol="https")` -- Preview data: -```csv - -``` - -#### `domain-internet-userAgent-base` - -- Command(s): `internet.userAgent()` -- Preview data: -```csv - -``` - -#### `domain-internet-username-base` - -- Command(s): `internet.username()` -- Preview data: -```csv - -``` - -#### `domain-internet-username-arg-firstName` - -- Command(s): `internet.username(firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-username-arg-lastName` - -- Command(s): `internet.username(lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-username-pair-firstName-lastName` - -- Command(s): `internet.username(firstName="Ada", lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-base` - -- Command(s): `literal.value()` -- Preview data: -```csv - -``` - -#### `domain-literal-value-example-1` - -- Command(s): `literal.value("Pending")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-example-2` - -- Command(s): `literal.value("")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-arg-value` - -- Command(s): `literal.value(value=true)` -- Preview data: -```csv - -``` - -#### `domain-location-buildingNumber-base` - -- Command(s): `location.buildingNumber()` -- Preview data: -```csv - -``` - -#### `domain-location-cardinalDirection-base` - -- Command(s): `location.cardinalDirection()` -- Preview data: -```csv - -``` - -#### `domain-location-city-base` - -- Command(s): `location.city()` -- Preview data: -```csv - -``` - -#### `domain-location-continent-base` - -- Command(s): `location.continent()` -- Preview data: -```csv - -``` - -#### `domain-location-country-base` - -- Command(s): `location.country()` -- Preview data: -```csv - -``` - -#### `domain-location-countryCode-base` - -- Command(s): `location.countryCode()` -- Preview data: -```csv - -``` - -#### `domain-location-county-base` - -- Command(s): `location.county()` -- Preview data: -```csv - -``` - -#### `domain-location-direction-base` - -- Command(s): `location.direction()` -- Preview data: -```csv - -``` - -#### `domain-location-direction-arg-abbreviated` - -- Command(s): `location.direction(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-base` - -- Command(s): `location.latitude()` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-min` - -- Command(s): `location.latitude(min=1)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-max` - -- Command(s): `location.latitude(max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-precision` - -- Command(s): `location.latitude(precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-pair-min-max` - -- Command(s): `location.latitude(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-pair-max-precision` - -- Command(s): `location.latitude(max=3, precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-base` - -- Command(s): `location.longitude()` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-min` - -- Command(s): `location.longitude(min=1)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-max` - -- Command(s): `location.longitude(max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-precision` - -- Command(s): `location.longitude(precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-pair-min-max` - -- Command(s): `location.longitude(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-pair-max-precision` - -- Command(s): `location.longitude(max=3, precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-ordinalDirection-base` - -- Command(s): `location.ordinalDirection()` -- Preview data: -```csv - -``` - -#### `domain-location-secondaryAddress-base` - -- Command(s): `location.secondaryAddress()` -- Preview data: -```csv - -``` - -#### `domain-location-state-base` - -- Command(s): `location.state()` -- Preview data: -```csv - -``` - -#### `domain-location-state-arg-abbreviated` - -- Command(s): `location.state(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-location-street-base` - -- Command(s): `location.street()` -- Preview data: -```csv - -``` - -#### `domain-location-streetAddress-base` - -- Command(s): `location.streetAddress()` -- Preview data: -```csv - -``` - -#### `domain-location-streetAddress-arg-useFullAddress` - -- Command(s): `location.streetAddress(useFullAddress=true)` -- Preview data: -```csv - -``` - -#### `domain-location-timeZone-base` - -- Command(s): `location.timeZone()` -- Preview data: -```csv - -``` - -#### `domain-location-zipCode-base` - -- Command(s): `location.zipCode()` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-base` - -- Command(s): `lorem.lines()` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-min` - -- Command(s): `lorem.lines(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-max` - -- Command(s): `lorem.lines(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCount` - -- Command(s): `lorem.lines(lineCount=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCountMax` - -- Command(s): `lorem.lines(lineCountMax=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCountMin` - -- Command(s): `lorem.lines(lineCountMin=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-min-max` - -- Command(s): `lorem.lines(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-max-lineCount` - -- Command(s): `lorem.lines(max=3, lineCount=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-lineCount-lineCountMax` - -- Command(s): `lorem.lines(lineCount=2, lineCountMax=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-lineCountMax-lineCountMin` - -- Command(s): `lorem.lines(lineCountMax=2, lineCountMin=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-base` - -- Command(s): `lorem.paragraph()` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-min` - -- Command(s): `lorem.paragraph(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-max` - -- Command(s): `lorem.paragraph(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCount` - -- Command(s): `lorem.paragraph(sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCountMax` - -- Command(s): `lorem.paragraph(sentenceCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCountMin` - -- Command(s): `lorem.paragraph(sentenceCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-min-max` - -- Command(s): `lorem.paragraph(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-max-sentenceCount` - -- Command(s): `lorem.paragraph(max=3, sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax` - -- Command(s): `lorem.paragraph(sentenceCount=4, sentenceCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin` - -- Command(s): `lorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-base` - -- Command(s): `lorem.paragraphs()` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-min` - -- Command(s): `lorem.paragraphs(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-max` - -- Command(s): `lorem.paragraphs(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCount` - -- Command(s): `lorem.paragraphs(paragraphCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-separator` - -- Command(s): `lorem.paragraphs(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCountMax` - -- Command(s): `lorem.paragraphs(paragraphCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCountMin` - -- Command(s): `lorem.paragraphs(paragraphCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-min-max` - -- Command(s): `lorem.paragraphs(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-max-paragraphCount` - -- Command(s): `lorem.paragraphs(max=3, paragraphCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-paragraphCount-separator` - -- Command(s): `lorem.paragraphs(paragraphCount=4, separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-separator-paragraphCountMax` - -- Command(s): `lorem.paragraphs(separator="-", paragraphCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin` - -- Command(s): `lorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-base` - -- Command(s): `lorem.sentence()` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-min` - -- Command(s): `lorem.sentence(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-max` - -- Command(s): `lorem.sentence(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCount` - -- Command(s): `lorem.sentence(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCountMax` - -- Command(s): `lorem.sentence(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCountMin` - -- Command(s): `lorem.sentence(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-min-max` - -- Command(s): `lorem.sentence(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-max-wordCount` - -- Command(s): `lorem.sentence(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-wordCount-wordCountMax` - -- Command(s): `lorem.sentence(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.sentence(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-base` - -- Command(s): `lorem.sentences()` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-min` - -- Command(s): `lorem.sentences(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-max` - -- Command(s): `lorem.sentences(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCount` - -- Command(s): `lorem.sentences(sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-separator` - -- Command(s): `lorem.sentences(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCountMax` - -- Command(s): `lorem.sentences(sentenceCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCountMin` - -- Command(s): `lorem.sentences(sentenceCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-min-max` - -- Command(s): `lorem.sentences(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-max-sentenceCount` - -- Command(s): `lorem.sentences(max=3, sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-sentenceCount-separator` - -- Command(s): `lorem.sentences(sentenceCount=4, separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-separator-sentenceCountMax` - -- Command(s): `lorem.sentences(separator="-", sentenceCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin` - -- Command(s): `lorem.sentences(sentenceCountMax=6, sentenceCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-base` - -- Command(s): `lorem.slug()` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-min` - -- Command(s): `lorem.slug(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-max` - -- Command(s): `lorem.slug(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCount` - -- Command(s): `lorem.slug(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCountMax` - -- Command(s): `lorem.slug(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCountMin` - -- Command(s): `lorem.slug(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-min-max` - -- Command(s): `lorem.slug(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-max-wordCount` - -- Command(s): `lorem.slug(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-wordCount-wordCountMax` - -- Command(s): `lorem.slug(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.slug(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-text-base` - -- Command(s): `lorem.text()` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-base` - -- Command(s): `lorem.word()` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-min` - -- Command(s): `lorem.word(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-max` - -- Command(s): `lorem.word(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-length` - -- Command(s): `lorem.word(length=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-strategy` - -- Command(s): `lorem.word(strategy="lorem-word-strategy")` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-min-max` - -- Command(s): `lorem.word(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-max-length` - -- Command(s): `lorem.word(max=3, length=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-length-strategy` - -- Command(s): `lorem.word(length=4, strategy="lorem-word-strategy")` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-base` - -- Command(s): `lorem.words()` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-min` - -- Command(s): `lorem.words(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-max` - -- Command(s): `lorem.words(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCount` - -- Command(s): `lorem.words(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCountMax` - -- Command(s): `lorem.words(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCountMin` - -- Command(s): `lorem.words(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-min-max` - -- Command(s): `lorem.words(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-max-wordCount` - -- Command(s): `lorem.words(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-wordCount-wordCountMax` - -- Command(s): `lorem.words(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.words(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-music-album-base` - -- Command(s): `music.album()` -- Preview data: -```csv - -``` - -#### `domain-music-artist-base` - -- Command(s): `music.artist()` -- Preview data: -```csv - -``` - -#### `domain-music-genre-base` - -- Command(s): `music.genre()` -- Preview data: -```csv - -``` - -#### `domain-music-songName-base` - -- Command(s): `music.songName()` -- Preview data: -```csv - -``` - -#### `domain-number-bigInt-base` - -- Command(s): `number.bigInt()` -- Preview data: -```csv - -``` - -#### `domain-number-bigInt-arg-value` - -- Command(s): `number.bigInt(value=true)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-base` - -- Command(s): `number.binary()` -- Preview data: -```csv - -``` - -#### `domain-number-binary-arg-max` - -- Command(s): `number.binary(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-arg-min` - -- Command(s): `number.binary(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-pair-max-min` - -- Command(s): `number.binary(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-base` - -- Command(s): `number.float()` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-fractionDigits` - -- Command(s): `number.float(fractionDigits=2)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-max` - -- Command(s): `number.float(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-min` - -- Command(s): `number.float(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-multipleOf` - -- Command(s): `number.float(multipleOf=0.5)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-fractionDigits-max` - -- Command(s): `number.float(fractionDigits=2, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-max-min` - -- Command(s): `number.float(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-min-multipleOf` - -- Command(s): `number.float(min=1, multipleOf=0.5)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-base` - -- Command(s): `number.hex()` -- Preview data: -```csv - -``` - -#### `domain-number-hex-arg-min` - -- Command(s): `number.hex(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-arg-max` - -- Command(s): `number.hex(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-pair-min-max` - -- Command(s): `number.hex(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-base` - -- Command(s): `number.int()` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-min` - -- Command(s): `number.int(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-max` - -- Command(s): `number.int(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-multipleOf` - -- Command(s): `number.int(multipleOf=4)` -- Preview data: -```csv - -``` - -#### `domain-number-int-pair-min-max` - -- Command(s): `number.int(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-pair-max-multipleOf` - -- Command(s): `number.int(max=3, multipleOf=4)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-base` - -- Command(s): `number.octal()` -- Preview data: -```csv - -``` - -#### `domain-number-octal-arg-max` - -- Command(s): `number.octal(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-arg-min` - -- Command(s): `number.octal(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-pair-max-min` - -- Command(s): `number.octal(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-base` - -- Command(s): `number.romanNumeral()` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-arg-min` - -- Command(s): `number.romanNumeral(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-arg-max` - -- Command(s): `number.romanNumeral(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-pair-min-max` - -- Command(s): `number.romanNumeral(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-person-bio-base` - -- Command(s): `person.bio()` -- Preview data: -```csv - -``` - -#### `domain-person-firstName-base` - -- Command(s): `person.firstName()` -- Preview data: -```csv - -``` - -#### `domain-person-firstName-arg-sex` - -- Command(s): `person.firstName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-fullName-base` - -- Command(s): `person.fullName()` -- Preview data: -```csv - -``` - -#### `domain-person-gender-base` - -- Command(s): `person.gender()` -- Preview data: -```csv - -``` - -#### `domain-person-jobArea-base` - -- Command(s): `person.jobArea()` -- Preview data: -```csv - -``` - -#### `domain-person-jobDescriptor-base` - -- Command(s): `person.jobDescriptor()` -- Preview data: -```csv - -``` - -#### `domain-person-jobTitle-base` - -- Command(s): `person.jobTitle()` -- Preview data: -```csv - -``` - -#### `domain-person-jobType-base` - -- Command(s): `person.jobType()` -- Preview data: -```csv - -``` - -#### `domain-person-lastName-base` - -- Command(s): `person.lastName()` -- Preview data: -```csv - -``` - -#### `domain-person-lastName-arg-sex` - -- Command(s): `person.lastName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-middleName-base` - -- Command(s): `person.middleName()` -- Preview data: -```csv - -``` - -#### `domain-person-middleName-arg-sex` - -- Command(s): `person.middleName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-prefix-base` - -- Command(s): `person.prefix()` -- Preview data: -```csv - -``` - -#### `domain-person-prefix-arg-sex` - -- Command(s): `person.prefix(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-sex-base` - -- Command(s): `person.sex()` -- Preview data: -```csv - -``` - -#### `domain-person-sexType-base` - -- Command(s): `person.sexType()` -- Preview data: -```csv - -``` - -#### `domain-person-suffix-base` - -- Command(s): `person.suffix()` -- Preview data: -```csv - -``` - -#### `domain-person-zodiacSign-base` - -- Command(s): `person.zodiacSign()` -- Preview data: -```csv - -``` - -#### `domain-phone-imei-base` - -- Command(s): `phone.imei()` -- Preview data: -```csv - -``` - -#### `domain-phone-number-base` - -- Command(s): `phone.number()` -- Preview data: -```csv - -``` - -#### `domain-phone-number-arg-style` - -- Command(s): `phone.number(style="international")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-base` - -- Command(s): `string.alpha()` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-length` - -- Command(s): `string.alpha(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-casing` - -- Command(s): `string.alpha(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-exclude` - -- Command(s): `string.alpha(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-pair-length-casing` - -- Command(s): `string.alpha(length=4, casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-pair-casing-exclude` - -- Command(s): `string.alpha(casing="upper", exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-base` - -- Command(s): `string.alphanumeric()` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-length` - -- Command(s): `string.alphanumeric(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-casing` - -- Command(s): `string.alphanumeric(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-exclude` - -- Command(s): `string.alphanumeric(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-pair-length-casing` - -- Command(s): `string.alphanumeric(length=4, casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-pair-casing-exclude` - -- Command(s): `string.alphanumeric(casing="upper", exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-binary-base` - -- Command(s): `string.binary()` -- Preview data: -```csv - -``` - -#### `domain-string-binary-arg-length` - -- Command(s): `string.binary(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-binary-arg-prefix` - -- Command(s): `string.binary(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-binary-pair-length-prefix` - -- Command(s): `string.binary(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-base` - -- Command(s): `string.counterString(1, 25, "*")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-1` - -- Command(s): `string.counterString()` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-2` - -- Command(s): `string.counterString(15)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-3` - -- Command(s): `string.counterString(min=5, max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-4` - -- Command(s): `string.counterString(min=12, max=12, delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-min` - -- Command(s): `string.counterString(min=5)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-max` - -- Command(s): `string.counterString(max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-delimiter` - -- Command(s): `string.counterString(delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-pair-min-max` - -- Command(s): `string.counterString(min=5, max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-pair-max-delimiter` - -- Command(s): `string.counterString(max=12, delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-base` - -- Command(s): `string.fromCharacters("ABC123", 4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-example-1` - -- Command(s): `string.fromCharacters("ABC123", 6)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-example-2` - -- Command(s): `string.fromCharacters(characters=["A", "B", "C"], length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-arg-characters` - -- Command(s): `string.fromCharacters(characters="ABC123")` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-arg-length` - -- Command(s): `string.fromCharacters(characters="ABC123", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-pair-characters-length` - -- Command(s): `string.fromCharacters(characters="ABC123", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-base` - -- Command(s): `string.hexadecimal()` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-casing` - -- Command(s): `string.hexadecimal(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-length` - -- Command(s): `string.hexadecimal(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-prefix` - -- Command(s): `string.hexadecimal(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-pair-casing-length` - -- Command(s): `string.hexadecimal(casing="upper", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-pair-length-prefix` - -- Command(s): `string.hexadecimal(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-nanoid-base` - -- Command(s): `string.nanoid()` -- Preview data: -```csv - -``` - -#### `domain-string-nanoid-arg-length` - -- Command(s): `string.nanoid(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-base` - -- Command(s): `string.numeric()` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-length` - -- Command(s): `string.numeric(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-allowLeadingZeros` - -- Command(s): `string.numeric(allowLeadingZeros=true)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-exclude` - -- Command(s): `string.numeric(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-pair-length-allowLeadingZeros` - -- Command(s): `string.numeric(length=4, allowLeadingZeros=true)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-pair-allowLeadingZeros-exclude` - -- Command(s): `string.numeric(allowLeadingZeros=true, exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-octal-base` - -- Command(s): `string.octal()` -- Preview data: -```csv - -``` - -#### `domain-string-octal-arg-length` - -- Command(s): `string.octal(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-octal-arg-prefix` - -- Command(s): `string.octal(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-octal-pair-length-prefix` - -- Command(s): `string.octal(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-sample-base` - -- Command(s): `string.sample()` -- Preview data: -```csv - -``` - -#### `domain-string-sample-arg-length` - -- Command(s): `string.sample(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-symbol-base` - -- Command(s): `string.symbol()` -- Preview data: -```csv - -``` - -#### `domain-string-symbol-arg-length` - -- Command(s): `string.symbol(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-ulid-base` - -- Command(s): `string.ulid()` -- Preview data: -```csv - -``` - -#### `domain-string-ulid-arg-refDate` - -- Command(s): `string.ulid(refDate=2)` -- Preview data: -```csv - -``` - -#### `domain-string-uuid-base` - -- Command(s): `string.uuid()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileExt-base` - -- Command(s): `system.commonFileExt()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileName-base` - -- Command(s): `system.commonFileName()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileName-arg-extension` - -- Command(s): `system.commonFileName(extension="system-commonFileName-extension")` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileType-base` - -- Command(s): `system.commonFileType()` -- Preview data: -```csv - -``` - -#### `domain-system-cron-base` - -- Command(s): `system.cron()` -- Preview data: -```csv - -``` - -#### `domain-system-cron-arg-includeNonStandard` - -- Command(s): `system.cron(includeNonStandard=true)` -- Preview data: -```csv - -``` - -#### `domain-system-cron-arg-includeYear` - -- Command(s): `system.cron(includeYear=true)` -- Preview data: -```csv - -``` - -#### `domain-system-cron-pair-includeNonStandard-includeYear` - -- Command(s): `system.cron(includeNonStandard=true, includeYear=true)` -- Preview data: -```csv - -``` - -#### `domain-system-directoryPath-base` - -- Command(s): `system.directoryPath()` -- Preview data: -```csv - -``` - -#### `domain-system-fileExt-base` - -- Command(s): `system.fileExt()` -- Preview data: -```csv - -``` - -#### `domain-system-fileExt-arg-mimeType` - -- Command(s): `system.fileExt(mimeType="system-fileExt-mimeType")` -- Preview data: -```csv - -``` - -#### `domain-system-fileName-base` - -- Command(s): `system.fileName()` -- Preview data: -```csv - -``` - -#### `domain-system-filePath-base` - -- Command(s): `system.filePath()` -- Preview data: -```csv - -``` - -#### `domain-system-fileType-base` - -- Command(s): `system.fileType()` -- Preview data: -```csv - -``` - -#### `domain-system-mimeType-base` - -- Command(s): `system.mimeType()` -- Preview data: -```csv - -``` - -#### `domain-system-networkInterface-base` - -- Command(s): `system.networkInterface()` -- Preview data: -```csv - -``` - -#### `domain-system-semver-base` - -- Command(s): `system.semver()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-bicycle-base` - -- Command(s): `vehicle.bicycle()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-color-base` - -- Command(s): `vehicle.color()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-fuel-base` - -- Command(s): `vehicle.fuel()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-manufacturer-base` - -- Command(s): `vehicle.manufacturer()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-model-base` - -- Command(s): `vehicle.model()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-type-base` - -- Command(s): `vehicle.type()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vehicle-base` - -- Command(s): `vehicle.vehicle()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vin-base` - -- Command(s): `vehicle.vin()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vrm-base` - -- Command(s): `vehicle.vrm()` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-base` - -- Command(s): `word.adjective()` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-length` - -- Command(s): `word.adjective(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-max` - -- Command(s): `word.adjective(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-strategy` - -- Command(s): `word.adjective(strategy="word-adjective-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-pair-length-max` - -- Command(s): `word.adjective(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-pair-max-strategy` - -- Command(s): `word.adjective(max=3, strategy="word-adjective-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-base` - -- Command(s): `word.adverb()` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-length` - -- Command(s): `word.adverb(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-max` - -- Command(s): `word.adverb(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-strategy` - -- Command(s): `word.adverb(strategy="word-adverb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-pair-length-max` - -- Command(s): `word.adverb(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-pair-max-strategy` - -- Command(s): `word.adverb(max=3, strategy="word-adverb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-base` - -- Command(s): `word.conjunction()` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-length` - -- Command(s): `word.conjunction(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-max` - -- Command(s): `word.conjunction(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-strategy` - -- Command(s): `word.conjunction(strategy="word-conjunction-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-pair-length-max` - -- Command(s): `word.conjunction(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-pair-max-strategy` - -- Command(s): `word.conjunction(max=3, strategy="word-conjunction-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-base` - -- Command(s): `word.interjection()` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-length` - -- Command(s): `word.interjection(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-max` - -- Command(s): `word.interjection(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-strategy` - -- Command(s): `word.interjection(strategy="word-interjection-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-pair-length-max` - -- Command(s): `word.interjection(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-pair-max-strategy` - -- Command(s): `word.interjection(max=3, strategy="word-interjection-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-noun-base` - -- Command(s): `word.noun()` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-length` - -- Command(s): `word.noun(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-max` - -- Command(s): `word.noun(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-strategy` - -- Command(s): `word.noun(strategy="word-noun-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-noun-pair-length-max` - -- Command(s): `word.noun(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-pair-max-strategy` - -- Command(s): `word.noun(max=3, strategy="word-noun-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-base` - -- Command(s): `word.preposition()` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-length` - -- Command(s): `word.preposition(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-max` - -- Command(s): `word.preposition(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-strategy` - -- Command(s): `word.preposition(strategy="word-preposition-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-pair-length-max` - -- Command(s): `word.preposition(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-pair-max-strategy` - -- Command(s): `word.preposition(max=3, strategy="word-preposition-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-sample-base` - -- Command(s): `word.sample()` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-length` - -- Command(s): `word.sample(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-max` - -- Command(s): `word.sample(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-strategy` - -- Command(s): `word.sample(strategy="word-sample-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-sample-pair-length-max` - -- Command(s): `word.sample(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-pair-max-strategy` - -- Command(s): `word.sample(max=3, strategy="word-sample-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-verb-base` - -- Command(s): `word.verb()` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-length` - -- Command(s): `word.verb(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-max` - -- Command(s): `word.verb(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-strategy` - -- Command(s): `word.verb(strategy="word-verb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-verb-pair-length-max` - -- Command(s): `word.verb(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-pair-max-strategy` - -- Command(s): `word.verb(max=3, strategy="word-verb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-words-base` - -- Command(s): `word.words()` -- Preview data: -```csv - -``` - -#### `domain-word-words-arg-count` - -- Command(s): `word.words(count=2)` -- Preview data: -```csv - -``` - -#### `domain-word-words-arg-max` - -- Command(s): `word.words(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-words-pair-count-max` - -- Command(s): `word.words(count=2, max=3)` -- Preview data: -```csv - -``` - - -## Runtime Scenarios - -Scenario count: **631** -Generated preview data count: **631** -Review-only scenario count: **0** -Non-executable scenario count: **0** - -### By Source Type - -| Key | Count | -| --- | ---: | -| `domain` | 582 | -| `enum` | 2 | -| `faker` | 43 | -| `literal` | 2 | -| `regex` | 2 | - -### By Origin - -| Key | Count | -| --- | ---: | -| `arg` | 217 | -| `base` | 254 | -| `custom` | 3 | -| `empty` | 2 | -| `example` | 31 | -| `pair` | 123 | -| `pairwise` | 1 | - -### Commands By Source Type - -#### `domain` (242) - -- `airline.aircraftType` -- `airline.flightNumber` -- `airline.iataCode` -- `airline.name` -- `airline.recordLocator` -- `airline.seat` -- `airplane.iataTypeCode` -- `airplane.name` -- `airport.iataCode` -- `airport.name` -- `animal.bear` -- `animal.bird` -- `animal.cat` -- `animal.cetacean` -- `animal.cow` -- `animal.crocodilia` -- `animal.dog` -- `animal.fish` -- `animal.horse` -- `animal.insect` -- `animal.lion` -- `animal.petName` -- `animal.rabbit` -- `animal.rodent` -- `animal.snake` -- `animal.type` -- `autoIncrement.sequence` -- `autoIncrement.timestamp` -- `book.author` -- `book.format` -- `book.genre` -- `book.publisher` -- `book.series` -- `book.title` -- `chemicalElement.atomicNumber` -- `chemicalElement.name` -- `chemicalElement.symbol` -- `color.cssSupportedFunction` -- `color.cssSupportedSpace` -- `color.human` -- `color.rgb` -- `color.space` -- `commerce.department` -- `commerce.isbn` -- `commerce.price` -- `commerce.product` -- `commerce.productAdjective` -- `commerce.productDescription` -- `commerce.productMaterial` -- `commerce.productName` -- `commerce.upc` -- `company.buzzAdjective` -- `company.buzzNoun` -- `company.buzzPhrase` -- `company.buzzVerb` -- `company.catchPhrase` -- `company.catchPhraseAdjective` -- `company.catchPhraseDescriptor` -- `company.catchPhraseNoun` -- `company.name` -- `database.collation` -- `database.column` -- `database.engine` -- `database.mongodbObjectId` -- `database.type` -- `datatype.boolean` -- `datatype.enum` -- `date.anytime` -- `date.between` -- `date.birthdate` -- `date.future` -- `date.month` -- `date.past` -- `date.recent` -- `date.soon` -- `date.timeZone` -- `date.weekday` -- `finance.accountName` -- `finance.accountNumber` -- `finance.amount` -- `finance.bic` -- `finance.bitcoinAddress` -- `finance.creditCardCVV` -- `finance.creditCardIssuer` -- `finance.creditCardNumber` -- `finance.currencyCode` -- `finance.currencyName` -- `finance.currencyNumericCode` -- `finance.currencySymbol` -- `finance.ethereumAddress` -- `finance.iban` -- `finance.litecoinAddress` -- `finance.pin` -- `finance.routingNumber` -- `finance.transactionDescription` -- `finance.transactionType` -- `food.adjective` -- `food.description` -- `food.dish` -- `food.ethnicCategory` -- `food.fruit` -- `food.ingredient` -- `food.meat` -- `food.spice` -- `food.vegetable` -- `git.branch` -- `git.commitDate` -- `git.commitEntry` -- `git.commitMessage` -- `git.commitSha` -- `hacker.abbreviation` -- `hacker.adjective` -- `hacker.ingverb` -- `hacker.noun` -- `hacker.phrase` -- `hacker.verb` -- `image.avatar` -- `image.avatarGitHub` -- `image.dataUri` -- `image.personPortrait` -- `image.url` -- `image.urlPicsumPhotos` -- `internet.displayName` -- `internet.domainName` -- `internet.domainSuffix` -- `internet.domainWord` -- `internet.email` -- `internet.emoji` -- `internet.exampleEmail` -- `internet.httpMethod` -- `internet.httpStatusCode` -- `internet.ip` -- `internet.ipv4` -- `internet.ipv6` -- `internet.jwt` -- `internet.jwtAlgorithm` -- `internet.mac` -- `internet.password` -- `internet.port` -- `internet.protocol` -- `internet.url` -- `internet.userAgent` -- `internet.username` -- `literal.value` -- `location.buildingNumber` -- `location.cardinalDirection` -- `location.city` -- `location.continent` -- `location.country` -- `location.countryCode` -- `location.county` -- `location.direction` -- `location.latitude` -- `location.longitude` -- `location.ordinalDirection` -- `location.secondaryAddress` -- `location.state` -- `location.street` -- `location.streetAddress` -- `location.timeZone` -- `location.zipCode` -- `lorem.lines` -- `lorem.paragraph` -- `lorem.paragraphs` -- `lorem.sentence` -- `lorem.sentences` -- `lorem.slug` -- `lorem.text` -- `lorem.word` -- `lorem.words` -- `music.album` -- `music.artist` -- `music.genre` -- `music.songName` -- `number.bigInt` -- `number.binary` -- `number.float` -- `number.hex` -- `number.int` -- `number.octal` -- `number.romanNumeral` -- `person.bio` -- `person.firstName` -- `person.fullName` -- `person.gender` -- `person.jobArea` -- `person.jobDescriptor` -- `person.jobTitle` -- `person.jobType` -- `person.lastName` -- `person.middleName` -- `person.prefix` -- `person.sex` -- `person.sexType` -- `person.suffix` -- `person.zodiacSign` -- `phone.imei` -- `phone.number` -- `string.alpha` -- `string.alphanumeric` -- `string.binary` -- `string.counterString` -- `string.fromCharacters` -- `string.hexadecimal` -- `string.nanoid` -- `string.numeric` -- `string.octal` -- `string.sample` -- `string.symbol` -- `string.ulid` -- `string.uuid` -- `system.commonFileExt` -- `system.commonFileName` -- `system.commonFileType` -- `system.cron` -- `system.directoryPath` -- `system.fileExt` -- `system.fileName` -- `system.filePath` -- `system.fileType` -- `system.mimeType` -- `system.networkInterface` -- `system.semver` -- `vehicle.bicycle` -- `vehicle.color` -- `vehicle.fuel` -- `vehicle.manufacturer` -- `vehicle.model` -- `vehicle.type` -- `vehicle.vehicle` -- `vehicle.vin` -- `vehicle.vrm` -- `word.adjective` -- `word.adverb` -- `word.conjunction` -- `word.interjection` -- `word.noun` -- `word.preposition` -- `word.sample` -- `word.verb` -- `word.words` - -#### `enum` (2) - -- `enum` -- `enum pairwise` - -#### `faker` (12) - -- `helpers.arrayElement` -- `helpers.arrayElements` -- `helpers.fake` -- `helpers.fromRegExp` -- `helpers.mustache` -- `helpers.rangeToNumber` -- `helpers.replaceCreditCardSymbols` -- `helpers.replaceSymbols` -- `helpers.shuffle` -- `helpers.slugify` -- `helpers.uniqueArray` -- `helpers.weightedArrayElement` - -#### `literal` (2) - -- `literal` -- `literal empty` - -#### `regex` (2) - -- `regex` -- `regex empty` - -### Scenario Details - -#### `custom-enum-base` - -- Command(s): `enum(active,inactive,pending)` -- Preview data: -```csv - -``` - -#### `custom-enum-pairwise` - -- Command(s): `Status: enum(active,inactive,pending) | Priority: enum(high,medium,low)` -- Schema Rows: `Status: enum(active,inactive,pending)`, `Priority: enum(high,medium,low)` -- Preview data: -```csv - -``` - -#### `custom-literal-base` - -- Command(s): `literal("Pending")` -- Preview data: -```csv - -``` - -#### `custom-literal-empty` - -- Command(s): `literal("")` -- Preview data: -```csv - -``` - -#### `custom-regex-base` - -- Command(s): `regex("[A-Z]{2}[0-9]{2}")` -- Preview data: -```csv - -``` - -#### `custom-regex-empty` - -- Command(s): `regex("")` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-base` - -- Command(s): `helpers.arrayElement(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-example-1` - -- Command(s): `helpers.arrayElement(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-arg-array` - -- Command(s): `helpers.arrayElement(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-base` - -- Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-example-1` - -- Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-arg-array` - -- Command(s): `helpers.arrayElements(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-arg-count` - -- Command(s): `helpers.arrayElements(["A", "B"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElements-pair-array-count` - -- Command(s): `helpers.arrayElements(["A", "B"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-base` - -- Command(s): `helpers.fake("{{person.firstName}}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-example-1` - -- Command(s): `helpers.fake("Hi, my name is {{person.firstName}} {{person.lastName}}!")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-arg-pattern` - -- Command(s): `helpers.fake("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-base` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-example-1` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-arg-pattern` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-base` - -- Command(s): `helpers.mustache("{{name}}", { name: "Ada" })` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-example-1` - -- Command(s): `helpers.mustache("Hello {{name}}", { name: "Ada" })` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-arg-text` - -- Command(s): `helpers.mustache("{{name}}")` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-arg-data` - -- Command(s): `helpers.mustache("{{name}}", {})` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-pair-text-data` - -- Command(s): `helpers.mustache("{{name}}", {})` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-base` - -- Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-example-1` - -- Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- Preview data: -```csv - -``` - -#### `faker-helpers-rangeToNumber-arg-numberOrRange` - -- Command(s): `helpers.rangeToNumber(2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-base` - -- Command(s): `helpers.replaceCreditCardSymbols()` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-example-1` - -- Command(s): `helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-arg-string` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-arg-symbol` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceCreditCardSymbols-pair-string-symbol` - -- Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-base` - -- Command(s): `helpers.replaceSymbols()` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-example-1` - -- Command(s): `helpers.replaceSymbols("##??-##")` -- Preview data: -```csv - -``` - -#### `faker-helpers-replaceSymbols-arg-string` - -- Command(s): `helpers.replaceSymbols("helpers-replaceSymbols-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-base` - -- Command(s): `helpers.shuffle(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-example-1` - -- Command(s): `helpers.shuffle(["A", "B", "C"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-shuffle-arg-array` - -- Command(s): `helpers.shuffle(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-base` - -- Command(s): `helpers.slugify()` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-example-1` - -- Command(s): `helpers.slugify("Hello World 2026")` -- Preview data: -```csv - -``` - -#### `faker-helpers-slugify-arg-string` - -- Command(s): `helpers.slugify("helpers-slugify-string")` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-base` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-example-1` - -- Command(s): `helpers.uniqueArray(["red", "green", "blue"], 2)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-arg-source` - -- Command(s): `helpers.uniqueArray(["A", "B"])` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-arg-length` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-pair-source-length` - -- Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-base` - -- Command(s): `helpers.weightedArrayElement([{ "weight": 1, "value": "A" }, { "weight": 2, "value": "B" }])` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-example-1` - -- Command(s): `helpers.weightedArrayElement([{ weight: 5, value: "sunny" }, { weight: 1, value: "rainy" }])` -- Preview data: -```csv - -``` - -#### `domain-airline-aircraftType-base` - -- Command(s): `airline.aircraftType()` -- Preview data: -```csv - -``` - -#### `domain-airline-flightNumber-base` - -- Command(s): `airline.flightNumber()` -- Preview data: -```csv - -``` - -#### `domain-airline-iataCode-base` - -- Command(s): `airline.iataCode()` -- Preview data: -```csv - -``` - -#### `domain-airline-name-base` - -- Command(s): `airline.name()` -- Preview data: -```csv - -``` - -#### `domain-airline-recordLocator-base` - -- Command(s): `airline.recordLocator()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-base` - -- Command(s): `airline.seat()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-example-1` - -- Command(s): `airline.seat()` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-example-2` - -- Command(s): `airline.seat(aircraftType="widebody")` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-arg-aircraftType` - -- Command(s): `airline.seat(aircraftType="widebody")` -- Preview data: -```csv - -``` - -#### `domain-airplane-iataTypeCode-base` - -- Command(s): `airplane.iataTypeCode()` -- Preview data: -```csv - -``` - -#### `domain-airplane-name-base` - -- Command(s): `airplane.name()` -- Preview data: -```csv - -``` - -#### `domain-airport-iataCode-base` - -- Command(s): `airport.iataCode()` -- Preview data: -```csv - -``` - -#### `domain-airport-name-base` - -- Command(s): `airport.name()` -- Preview data: -```csv - -``` - -#### `domain-animal-bear-base` - -- Command(s): `animal.bear()` -- Preview data: -```csv - -``` - -#### `domain-animal-bird-base` - -- Command(s): `animal.bird()` -- Preview data: -```csv - -``` - -#### `domain-animal-cat-base` - -- Command(s): `animal.cat()` -- Preview data: -```csv - -``` - -#### `domain-animal-cetacean-base` - -- Command(s): `animal.cetacean()` -- Preview data: -```csv - -``` - -#### `domain-animal-cow-base` - -- Command(s): `animal.cow()` -- Preview data: -```csv - -``` - -#### `domain-animal-crocodilia-base` - -- Command(s): `animal.crocodilia()` -- Preview data: -```csv - -``` - -#### `domain-animal-dog-base` - -- Command(s): `animal.dog()` -- Preview data: -```csv - -``` - -#### `domain-animal-fish-base` - -- Command(s): `animal.fish()` -- Preview data: -```csv - -``` - -#### `domain-animal-horse-base` - -- Command(s): `animal.horse()` -- Preview data: -```csv - -``` - -#### `domain-animal-insect-base` - -- Command(s): `animal.insect()` -- Preview data: -```csv - -``` - -#### `domain-animal-lion-base` - -- Command(s): `animal.lion()` -- Preview data: -```csv - -``` - -#### `domain-animal-petName-base` - -- Command(s): `animal.petName()` -- Preview data: -```csv - -``` - -#### `domain-animal-rabbit-base` - -- Command(s): `animal.rabbit()` -- Preview data: -```csv - -``` - -#### `domain-animal-rodent-base` - -- Command(s): `animal.rodent()` -- Preview data: -```csv - -``` - -#### `domain-animal-snake-base` - -- Command(s): `animal.snake()` -- Preview data: -```csv - -``` - -#### `domain-animal-type-base` - -- Command(s): `animal.type()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-base` - -- Command(s): `autoIncrement.sequence(1, 5, "filename", ".txt", 3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-1` - -- Command(s): `autoIncrement.sequence()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-2` - -- Command(s): `autoIncrement.sequence(start=10, step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-3` - -- Command(s): `autoIncrement.sequence(start=1, step=5, prefix="filename", suffix=".txt", zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-start` - -- Command(s): `autoIncrement.sequence(start=10)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-step` - -- Command(s): `autoIncrement.sequence(step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-prefix` - -- Command(s): `autoIncrement.sequence(prefix="filename")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-suffix` - -- Command(s): `autoIncrement.sequence(suffix=".txt")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-arg-zeropadding` - -- Command(s): `autoIncrement.sequence(zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-start-step` - -- Command(s): `autoIncrement.sequence(start=10, step=5)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-step-prefix` - -- Command(s): `autoIncrement.sequence(step=5, prefix="filename")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-prefix-suffix` - -- Command(s): `autoIncrement.sequence(prefix="filename", suffix=".txt")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-pair-suffix-zeropadding` - -- Command(s): `autoIncrement.sequence(suffix=".txt", zeropadding=3)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-base` - -- Command(s): `autoIncrement.timestamp()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-1` - -- Command(s): `autoIncrement.timestamp()` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-2` - -- Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-example-3` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12 12:39:23", step=15, type="minutes", outputFormat="yyyy-MM-dd HH:mm:ss")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-start` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-step` - -- Command(s): `autoIncrement.timestamp(step=1)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-type` - -- Command(s): `autoIncrement.timestamp(type="seconds")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-outputFormat` - -- Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-arg-inputFormat` - -- Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-start-step` - -- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-step-type` - -- Command(s): `autoIncrement.timestamp(step=1, type="seconds")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-type-outputFormat` - -- Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` - -- Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` -- Preview data: -```csv - -``` - -#### `domain-book-author-base` - -- Command(s): `book.author()` -- Preview data: -```csv - -``` - -#### `domain-book-format-base` - -- Command(s): `book.format()` -- Preview data: -```csv - -``` - -#### `domain-book-genre-base` - -- Command(s): `book.genre()` -- Preview data: -```csv - -``` - -#### `domain-book-publisher-base` - -- Command(s): `book.publisher()` -- Preview data: -```csv - -``` - -#### `domain-book-series-base` - -- Command(s): `book.series()` -- Preview data: -```csv - -``` - -#### `domain-book-title-base` - -- Command(s): `book.title()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-atomicNumber-base` - -- Command(s): `chemicalElement.atomicNumber()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-name-base` - -- Command(s): `chemicalElement.name()` -- Preview data: -```csv - -``` - -#### `domain-chemicalElement-symbol-base` - -- Command(s): `chemicalElement.symbol()` -- Preview data: -```csv - -``` - -#### `domain-color-cssSupportedFunction-base` - -- Command(s): `color.cssSupportedFunction()` -- Preview data: -```csv - -``` - -#### `domain-color-cssSupportedSpace-base` - -- Command(s): `color.cssSupportedSpace()` -- Preview data: -```csv - -``` - -#### `domain-color-human-base` - -- Command(s): `color.human()` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-base` - -- Command(s): `color.rgb()` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-casing` - -- Command(s): `color.rgb(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-format` - -- Command(s): `color.rgb(format="hex")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-includeAlpha` - -- Command(s): `color.rgb(includeAlpha=true)` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-arg-prefix` - -- Command(s): `color.rgb(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-casing-format` - -- Command(s): `color.rgb(casing="upper", format="hex")` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-format-includeAlpha` - -- Command(s): `color.rgb(format="hex", includeAlpha=true)` -- Preview data: -```csv - -``` - -#### `domain-color-rgb-pair-includeAlpha-prefix` - -- Command(s): `color.rgb(includeAlpha=true, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-color-space-base` - -- Command(s): `color.space()` -- Preview data: -```csv - -``` - -#### `domain-commerce-department-base` - -- Command(s): `commerce.department()` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-base` - -- Command(s): `commerce.isbn()` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-arg-separator` - -- Command(s): `commerce.isbn(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-arg-variant` - -- Command(s): `commerce.isbn(variant="13")` -- Preview data: -```csv - -``` - -#### `domain-commerce-isbn-pair-separator-variant` - -- Command(s): `commerce.isbn(separator="-", variant="13")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-base` - -- Command(s): `commerce.price()` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-example-1` - -- Command(s): `commerce.price(dec=2, max=10, min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-dec` - -- Command(s): `commerce.price(dec=2)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-max` - -- Command(s): `commerce.price(max=100)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-min` - -- Command(s): `commerce.price(min=1)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-arg-symbol` - -- Command(s): `commerce.price(symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-dec-max` - -- Command(s): `commerce.price(dec=2, max=100)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-max-min` - -- Command(s): `commerce.price(max=100, min=1)` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-pair-min-symbol` - -- Command(s): `commerce.price(min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-commerce-product-base` - -- Command(s): `commerce.product()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productAdjective-base` - -- Command(s): `commerce.productAdjective()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productDescription-base` - -- Command(s): `commerce.productDescription()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productMaterial-base` - -- Command(s): `commerce.productMaterial()` -- Preview data: -```csv - -``` - -#### `domain-commerce-productName-base` - -- Command(s): `commerce.productName()` -- Preview data: -```csv - -``` - -#### `domain-commerce-upc-base` - -- Command(s): `commerce.upc()` -- Preview data: -```csv - -``` - -#### `domain-commerce-upc-arg-prefix` - -- Command(s): `commerce.upc(prefix="01234")` -- Preview data: -```csv - -``` - -#### `domain-company-buzzAdjective-base` - -- Command(s): `company.buzzAdjective()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzNoun-base` - -- Command(s): `company.buzzNoun()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzPhrase-base` - -- Command(s): `company.buzzPhrase()` -- Preview data: -```csv - -``` - -#### `domain-company-buzzVerb-base` - -- Command(s): `company.buzzVerb()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhrase-base` - -- Command(s): `company.catchPhrase()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseAdjective-base` - -- Command(s): `company.catchPhraseAdjective()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseDescriptor-base` - -- Command(s): `company.catchPhraseDescriptor()` -- Preview data: -```csv - -``` - -#### `domain-company-catchPhraseNoun-base` - -- Command(s): `company.catchPhraseNoun()` -- Preview data: -```csv - -``` - -#### `domain-company-name-base` - -- Command(s): `company.name()` -- Preview data: -```csv - -``` - -#### `domain-database-collation-base` - -- Command(s): `database.collation()` -- Preview data: -```csv - -``` - -#### `domain-database-column-base` - -- Command(s): `database.column()` -- Preview data: -```csv - -``` - -#### `domain-database-engine-base` - -- Command(s): `database.engine()` -- Preview data: -```csv - -``` - -#### `domain-database-mongodbObjectId-base` - -- Command(s): `database.mongodbObjectId()` -- Preview data: -```csv - -``` - -#### `domain-database-type-base` - -- Command(s): `database.type()` -- Preview data: -```csv - -``` - -#### `domain-datatype-boolean-base` - -- Command(s): `datatype.boolean()` -- Preview data: -```csv - -``` - -#### `domain-datatype-boolean-arg-probability` - -- Command(s): `datatype.boolean(probability=2)` -- Preview data: -```csv - -``` - -#### `domain-datatype-enum-base` - -- Command(s): `datatype.enum("active", "inactive", "pending")` -- Preview data: -```csv - -``` - -#### `domain-datatype-enum-arg-values` - -- Command(s): `datatype.enum(values="datatype-enum-values")` -- Preview data: -```csv - -``` - -#### `domain-date-anytime-base` - -- Command(s): `date.anytime()` -- Preview data: -```csv - -``` - -#### `domain-date-anytime-arg-refDate` - -- Command(s): `date.anytime(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-base` - -- Command(s): `date.between(1577836800000, 1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-arg-from` - -- Command(s): `date.between(from=1577836800000, to=1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-arg-to` - -- Command(s): `date.between(to=1609372800000, from=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-between-pair-from-to` - -- Command(s): `date.between(from=1577836800000, to=1609372800000)` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-base` - -- Command(s): `date.birthdate()` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-example-1` - -- Command(s): `date.birthdate(refDate=20000, max=69, min=16, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-refDate` - -- Command(s): `date.birthdate(refDate=1577836800000, min=18, max=65, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-max` - -- Command(s): `date.birthdate(max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-min` - -- Command(s): `date.birthdate(min=18, max=65, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-arg-mode` - -- Command(s): `date.birthdate(mode="age", min=18, max=65)` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-refDate-max` - -- Command(s): `date.birthdate(refDate=1577836800000, max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-max-min` - -- Command(s): `date.birthdate(max=65, min=18, mode="age")` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-pair-min-mode` - -- Command(s): `date.birthdate(min=18, mode="age", max=65)` -- Preview data: -```csv - -``` - -#### `domain-date-future-base` - -- Command(s): `date.future()` -- Preview data: -```csv - -``` - -#### `domain-date-future-arg-refDate` - -- Command(s): `date.future(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-future-arg-years` - -- Command(s): `date.future(years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-future-pair-refDate-years` - -- Command(s): `date.future(refDate=1577836800000, years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-month-base` - -- Command(s): `date.month()` -- Preview data: -```csv - -``` - -#### `domain-date-month-arg-abbreviated` - -- Command(s): `date.month(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-date-month-arg-context` - -- Command(s): `date.month(context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-month-pair-abbreviated-context` - -- Command(s): `date.month(abbreviated=true, context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-past-base` - -- Command(s): `date.past()` -- Preview data: -```csv - -``` - -#### `domain-date-past-arg-refDate` - -- Command(s): `date.past(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-past-arg-years` - -- Command(s): `date.past(years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-past-pair-refDate-years` - -- Command(s): `date.past(refDate=1577836800000, years=2)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-base` - -- Command(s): `date.recent()` -- Preview data: -```csv - -``` - -#### `domain-date-recent-arg-days` - -- Command(s): `date.recent(days=7)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-arg-refDate` - -- Command(s): `date.recent(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-recent-pair-days-refDate` - -- Command(s): `date.recent(days=7, refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-base` - -- Command(s): `date.soon()` -- Preview data: -```csv - -``` - -#### `domain-date-soon-arg-days` - -- Command(s): `date.soon(days=7)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-arg-refDate` - -- Command(s): `date.soon(refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-soon-pair-days-refDate` - -- Command(s): `date.soon(days=7, refDate=1577836800000)` -- Preview data: -```csv - -``` - -#### `domain-date-timeZone-base` - -- Command(s): `date.timeZone()` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-base` - -- Command(s): `date.weekday()` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-arg-abbreviated` - -- Command(s): `date.weekday(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-arg-context` - -- Command(s): `date.weekday(context=true)` -- Preview data: -```csv - -``` - -#### `domain-date-weekday-pair-abbreviated-context` - -- Command(s): `date.weekday(abbreviated=true, context=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-accountName-base` - -- Command(s): `finance.accountName()` -- Preview data: -```csv - -``` - -#### `domain-finance-accountNumber-base` - -- Command(s): `finance.accountNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-accountNumber-arg-length` - -- Command(s): `finance.accountNumber(length=4)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-base` - -- Command(s): `finance.amount()` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-autoFormat` - -- Command(s): `finance.amount(autoFormat=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-dec` - -- Command(s): `finance.amount(dec=2)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-max` - -- Command(s): `finance.amount(max=100)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-min` - -- Command(s): `finance.amount(min=1)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-arg-symbol` - -- Command(s): `finance.amount(symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-autoFormat-dec` - -- Command(s): `finance.amount(autoFormat=true, dec=2)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-dec-max` - -- Command(s): `finance.amount(dec=2, max=100)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-max-min` - -- Command(s): `finance.amount(max=100, min=1)` -- Preview data: -```csv - -``` - -#### `domain-finance-amount-pair-min-symbol` - -- Command(s): `finance.amount(min=1, symbol="$")` -- Preview data: -```csv - -``` - -#### `domain-finance-bic-base` - -- Command(s): `finance.bic()` -- Preview data: -```csv - -``` - -#### `domain-finance-bic-arg-includeBranchCode` - -- Command(s): `finance.bic(includeBranchCode=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-bitcoinAddress-base` - -- Command(s): `finance.bitcoinAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardCVV-base` - -- Command(s): `finance.creditCardCVV()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardIssuer-base` - -- Command(s): `finance.creditCardIssuer()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardNumber-base` - -- Command(s): `finance.creditCardNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-creditCardNumber-arg-issuer` - -- Command(s): `finance.creditCardNumber(issuer="finance-creditCardNumber-issuer")` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyCode-base` - -- Command(s): `finance.currencyCode()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyName-base` - -- Command(s): `finance.currencyName()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencyNumericCode-base` - -- Command(s): `finance.currencyNumericCode()` -- Preview data: -```csv - -``` - -#### `domain-finance-currencySymbol-base` - -- Command(s): `finance.currencySymbol()` -- Preview data: -```csv - -``` - -#### `domain-finance-ethereumAddress-base` - -- Command(s): `finance.ethereumAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-base` - -- Command(s): `finance.iban()` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-arg-countryCode` - -- Command(s): `finance.iban(countryCode="GB")` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-arg-formatted` - -- Command(s): `finance.iban(formatted=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-iban-pair-countryCode-formatted` - -- Command(s): `finance.iban(countryCode="GB", formatted=true)` -- Preview data: -```csv - -``` - -#### `domain-finance-litecoinAddress-base` - -- Command(s): `finance.litecoinAddress()` -- Preview data: -```csv - -``` - -#### `domain-finance-pin-base` - -- Command(s): `finance.pin()` -- Preview data: -```csv - -``` - -#### `domain-finance-pin-arg-length` - -- Command(s): `finance.pin(length=4)` -- Preview data: -```csv - -``` - -#### `domain-finance-routingNumber-base` - -- Command(s): `finance.routingNumber()` -- Preview data: -```csv - -``` - -#### `domain-finance-transactionDescription-base` - -- Command(s): `finance.transactionDescription()` -- Preview data: -```csv - -``` - -#### `domain-finance-transactionType-base` - -- Command(s): `finance.transactionType()` -- Preview data: -```csv - -``` - -#### `domain-food-adjective-base` - -- Command(s): `food.adjective()` -- Preview data: -```csv - -``` - -#### `domain-food-description-base` - -- Command(s): `food.description()` -- Preview data: -```csv - -``` - -#### `domain-food-dish-base` - -- Command(s): `food.dish()` -- Preview data: -```csv - -``` - -#### `domain-food-ethnicCategory-base` - -- Command(s): `food.ethnicCategory()` -- Preview data: -```csv - -``` - -#### `domain-food-fruit-base` - -- Command(s): `food.fruit()` -- Preview data: -```csv - -``` - -#### `domain-food-ingredient-base` - -- Command(s): `food.ingredient()` -- Preview data: -```csv - -``` - -#### `domain-food-meat-base` - -- Command(s): `food.meat()` -- Preview data: -```csv - -``` - -#### `domain-food-spice-base` - -- Command(s): `food.spice()` -- Preview data: -```csv - -``` - -#### `domain-food-vegetable-base` - -- Command(s): `food.vegetable()` -- Preview data: -```csv - -``` - -#### `domain-git-branch-base` - -- Command(s): `git.branch()` -- Preview data: -```csv - -``` - -#### `domain-git-commitDate-base` - -- Command(s): `git.commitDate()` -- Preview data: -```csv - -``` - -#### `domain-git-commitEntry-base` - -- Command(s): `git.commitEntry()` -- Preview data: -```csv - -``` - -#### `domain-git-commitMessage-base` - -- Command(s): `git.commitMessage()` -- Preview data: -```csv - -``` - -#### `domain-git-commitSha-base` - -- Command(s): `git.commitSha()` -- Preview data: -```csv - -``` - -#### `domain-hacker-abbreviation-base` - -- Command(s): `hacker.abbreviation()` -- Preview data: -```csv - -``` - -#### `domain-hacker-adjective-base` - -- Command(s): `hacker.adjective()` -- Preview data: -```csv - -``` - -#### `domain-hacker-ingverb-base` - -- Command(s): `hacker.ingverb()` -- Preview data: -```csv - -``` - -#### `domain-hacker-noun-base` - -- Command(s): `hacker.noun()` -- Preview data: -```csv - -``` - -#### `domain-hacker-phrase-base` - -- Command(s): `hacker.phrase()` -- Preview data: -```csv - -``` - -#### `domain-hacker-verb-base` - -- Command(s): `hacker.verb()` -- Preview data: -```csv - -``` - -#### `domain-image-avatar-base` - -- Command(s): `image.avatar()` -- Preview data: -```csv - -``` - -#### `domain-image-avatarGitHub-base` - -- Command(s): `image.avatarGitHub()` -- Preview data: -```csv - -``` - -#### `domain-image-dataUri-base` - -- Command(s): `image.dataUri()` -- Preview data: -```csv - -``` - -#### `domain-image-personPortrait-base` - -- Command(s): `image.personPortrait()` -- Preview data: -```csv - -``` - -#### `domain-image-url-base` - -- Command(s): `image.url()` -- Preview data: -```csv - -``` - -#### `domain-image-url-arg-height` - -- Command(s): `image.url(height=2)` -- Preview data: -```csv - -``` - -#### `domain-image-url-arg-width` - -- Command(s): `image.url(width=3)` -- Preview data: -```csv - -``` - -#### `domain-image-url-pair-height-width` - -- Command(s): `image.url(height=2, width=3)` -- Preview data: -```csv - -``` - -- Preview data: -```csv - -``` - -#### `domain-image-urlPicsumPhotos-base` - -- Command(s): `image.urlPicsumPhotos()` -- Preview data: -```csv - -``` - -#### `domain-internet-displayName-base` - -- Command(s): `internet.displayName()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainName-base` - -- Command(s): `internet.domainName()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainSuffix-base` - -- Command(s): `internet.domainSuffix()` -- Preview data: -```csv - -``` - -#### `domain-internet-domainWord-base` - -- Command(s): `internet.domainWord()` -- Preview data: -```csv - -``` - -#### `domain-internet-email-base` - -- Command(s): `internet.email()` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-allowSpecialCharacters` - -- Command(s): `internet.email(allowSpecialCharacters=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-firstName` - -- Command(s): `internet.email(firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-lastName` - -- Command(s): `internet.email(lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-arg-provider` - -- Command(s): `internet.email(provider="example.com")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-allowSpecialCharacters-firstName` - -- Command(s): `internet.email(allowSpecialCharacters=true, firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-firstName-lastName` - -- Command(s): `internet.email(firstName="Ada", lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-email-pair-lastName-provider` - -- Command(s): `internet.email(lastName="Lovelace", provider="example.com")` -- Preview data: -```csv - -``` - -#### `domain-internet-emoji-base` - -- Command(s): `internet.emoji()` -- Preview data: -```csv - -``` - -#### `domain-internet-emoji-arg-types` - -- Command(s): `internet.emoji(types=["food"])` -- Preview data: -```csv - -``` - -#### `domain-internet-exampleEmail-base` - -- Command(s): `internet.exampleEmail()` -- Preview data: -```csv - -``` - -#### `domain-internet-httpMethod-base` - -- Command(s): `internet.httpMethod()` -- Preview data: -```csv - -``` - -#### `domain-internet-httpStatusCode-base` - -- Command(s): `internet.httpStatusCode()` -- Preview data: -```csv - -``` - -#### `domain-internet-ip-base` - -- Command(s): `internet.ip()` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-base` - -- Command(s): `internet.ipv4()` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-arg-cidrBlock` - -- Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-arg-network` - -- Command(s): `internet.ipv4(network="private-a")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv4-pair-cidrBlock-network` - -- Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24", network="private-a")` -- Preview data: -```csv - -``` - -#### `domain-internet-ipv6-base` - -- Command(s): `internet.ipv6()` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-base` - -- Command(s): `internet.jwt()` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-header` - -- Command(s): `internet.jwt(header={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-payload` - -- Command(s): `internet.jwt(payload={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-arg-refDate` - -- Command(s): `internet.jwt(refDate=4)` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-pair-header-payload` - -- Command(s): `internet.jwt(header={}, payload={})` -- Preview data: -```csv - -``` - -#### `domain-internet-jwt-pair-payload-refDate` - -- Command(s): `internet.jwt(payload={}, refDate=4)` -- Preview data: -```csv - -``` - -#### `domain-internet-jwtAlgorithm-base` - -- Command(s): `internet.jwtAlgorithm()` -- Preview data: -```csv - -``` - -#### `domain-internet-mac-base` - -- Command(s): `internet.mac()` -- Preview data: -```csv - -``` - -#### `domain-internet-mac-arg-separator` - -- Command(s): `internet.mac(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-base` - -- Command(s): `internet.password()` -- Preview data: -```csv - -``` - -#### `domain-internet-password-example-1` - -- Command(s): `internet.password(length=10, memorable=false, pattern="[A-Za-z0-9]", prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-length` - -- Command(s): `internet.password(length=12)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-memorable` - -- Command(s): `internet.password(memorable=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-pattern` - -- Command(s): `internet.password(pattern="[A-Z]")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-arg-prefix` - -- Command(s): `internet.password(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-length-memorable` - -- Command(s): `internet.password(length=12, memorable=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-memorable-pattern` - -- Command(s): `internet.password(memorable=true, pattern="[A-Z]")` -- Preview data: -```csv - -``` - -#### `domain-internet-password-pair-pattern-prefix` - -- Command(s): `internet.password(pattern="[A-Z]", prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-internet-port-base` - -- Command(s): `internet.port()` -- Preview data: -```csv - -``` - -#### `domain-internet-protocol-base` - -- Command(s): `internet.protocol()` -- Preview data: -```csv - -``` - -#### `domain-internet-url-base` - -- Command(s): `internet.url()` -- Preview data: -```csv - -``` - -#### `domain-internet-url-arg-appendSlash` - -- Command(s): `internet.url(appendSlash=true)` -- Preview data: -```csv - -``` - -#### `domain-internet-url-arg-protocol` - -- Command(s): `internet.url(protocol="https")` -- Preview data: -```csv - -``` - -#### `domain-internet-url-pair-appendSlash-protocol` - -- Command(s): `internet.url(appendSlash=true, protocol="https")` -- Preview data: -```csv - -``` - -#### `domain-internet-userAgent-base` - -- Command(s): `internet.userAgent()` -- Preview data: -```csv - -``` - -#### `domain-internet-username-base` - -- Command(s): `internet.username()` -- Preview data: -```csv - -``` - -#### `domain-internet-username-arg-firstName` - -- Command(s): `internet.username(firstName="Ada")` -- Preview data: -```csv - -``` - -#### `domain-internet-username-arg-lastName` - -- Command(s): `internet.username(lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-internet-username-pair-firstName-lastName` - -- Command(s): `internet.username(firstName="Ada", lastName="Lovelace")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-base` - -- Command(s): `literal.value()` -- Preview data: -```csv - -``` - -#### `domain-literal-value-example-1` - -- Command(s): `literal.value("Pending")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-example-2` - -- Command(s): `literal.value("")` -- Preview data: -```csv - -``` - -#### `domain-literal-value-arg-value` - -- Command(s): `literal.value(value=true)` -- Preview data: -```csv - -``` - -#### `domain-location-buildingNumber-base` - -- Command(s): `location.buildingNumber()` -- Preview data: -```csv - -``` - -#### `domain-location-cardinalDirection-base` - -- Command(s): `location.cardinalDirection()` -- Preview data: -```csv - -``` - -#### `domain-location-city-base` - -- Command(s): `location.city()` -- Preview data: -```csv - -``` - -#### `domain-location-continent-base` - -- Command(s): `location.continent()` -- Preview data: -```csv - -``` - -#### `domain-location-country-base` - -- Command(s): `location.country()` -- Preview data: -```csv - -``` - -#### `domain-location-countryCode-base` - -- Command(s): `location.countryCode()` -- Preview data: -```csv - -``` - -#### `domain-location-county-base` - -- Command(s): `location.county()` -- Preview data: -```csv - -``` - -#### `domain-location-direction-base` - -- Command(s): `location.direction()` -- Preview data: -```csv - -``` - -#### `domain-location-direction-arg-abbreviated` - -- Command(s): `location.direction(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-base` - -- Command(s): `location.latitude()` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-min` - -- Command(s): `location.latitude(min=1)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-max` - -- Command(s): `location.latitude(max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-arg-precision` - -- Command(s): `location.latitude(precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-pair-min-max` - -- Command(s): `location.latitude(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-latitude-pair-max-precision` - -- Command(s): `location.latitude(max=3, precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-base` - -- Command(s): `location.longitude()` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-min` - -- Command(s): `location.longitude(min=1)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-max` - -- Command(s): `location.longitude(max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-arg-precision` - -- Command(s): `location.longitude(precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-pair-min-max` - -- Command(s): `location.longitude(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-location-longitude-pair-max-precision` - -- Command(s): `location.longitude(max=3, precision=4)` -- Preview data: -```csv - -``` - -#### `domain-location-ordinalDirection-base` - -- Command(s): `location.ordinalDirection()` -- Preview data: -```csv - -``` - -#### `domain-location-secondaryAddress-base` - -- Command(s): `location.secondaryAddress()` -- Preview data: -```csv - -``` - -#### `domain-location-state-base` - -- Command(s): `location.state()` -- Preview data: -```csv - -``` - -#### `domain-location-state-arg-abbreviated` - -- Command(s): `location.state(abbreviated=true)` -- Preview data: -```csv - -``` - -#### `domain-location-street-base` - -- Command(s): `location.street()` -- Preview data: -```csv - -``` - -#### `domain-location-streetAddress-base` - -- Command(s): `location.streetAddress()` -- Preview data: -```csv - -``` - -#### `domain-location-streetAddress-arg-useFullAddress` - -- Command(s): `location.streetAddress(useFullAddress=true)` -- Preview data: -```csv - -``` - -#### `domain-location-timeZone-base` - -- Command(s): `location.timeZone()` -- Preview data: -```csv - -``` - -#### `domain-location-zipCode-base` - -- Command(s): `location.zipCode()` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-base` - -- Command(s): `lorem.lines()` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-min` - -- Command(s): `lorem.lines(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-max` - -- Command(s): `lorem.lines(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCount` - -- Command(s): `lorem.lines(lineCount=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCountMax` - -- Command(s): `lorem.lines(lineCountMax=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-arg-lineCountMin` - -- Command(s): `lorem.lines(lineCountMin=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-min-max` - -- Command(s): `lorem.lines(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-max-lineCount` - -- Command(s): `lorem.lines(max=3, lineCount=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-lineCount-lineCountMax` - -- Command(s): `lorem.lines(lineCount=2, lineCountMax=2)` -- Preview data: -```csv - -``` - -#### `domain-lorem-lines-pair-lineCountMax-lineCountMin` - -- Command(s): `lorem.lines(lineCountMax=2, lineCountMin=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-base` - -- Command(s): `lorem.paragraph()` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-min` - -- Command(s): `lorem.paragraph(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-max` - -- Command(s): `lorem.paragraph(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCount` - -- Command(s): `lorem.paragraph(sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCountMax` - -- Command(s): `lorem.paragraph(sentenceCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-arg-sentenceCountMin` - -- Command(s): `lorem.paragraph(sentenceCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-min-max` - -- Command(s): `lorem.paragraph(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-max-sentenceCount` - -- Command(s): `lorem.paragraph(max=3, sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax` - -- Command(s): `lorem.paragraph(sentenceCount=4, sentenceCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin` - -- Command(s): `lorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-base` - -- Command(s): `lorem.paragraphs()` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-min` - -- Command(s): `lorem.paragraphs(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-max` - -- Command(s): `lorem.paragraphs(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCount` - -- Command(s): `lorem.paragraphs(paragraphCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-separator` - -- Command(s): `lorem.paragraphs(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCountMax` - -- Command(s): `lorem.paragraphs(paragraphCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-arg-paragraphCountMin` - -- Command(s): `lorem.paragraphs(paragraphCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-min-max` - -- Command(s): `lorem.paragraphs(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-max-paragraphCount` - -- Command(s): `lorem.paragraphs(max=3, paragraphCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-paragraphCount-separator` - -- Command(s): `lorem.paragraphs(paragraphCount=4, separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-separator-paragraphCountMax` - -- Command(s): `lorem.paragraphs(separator="-", paragraphCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin` - -- Command(s): `lorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-base` - -- Command(s): `lorem.sentence()` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-min` - -- Command(s): `lorem.sentence(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-max` - -- Command(s): `lorem.sentence(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCount` - -- Command(s): `lorem.sentence(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCountMax` - -- Command(s): `lorem.sentence(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-arg-wordCountMin` - -- Command(s): `lorem.sentence(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-min-max` - -- Command(s): `lorem.sentence(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-max-wordCount` - -- Command(s): `lorem.sentence(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-wordCount-wordCountMax` - -- Command(s): `lorem.sentence(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentence-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.sentence(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-base` - -- Command(s): `lorem.sentences()` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-min` - -- Command(s): `lorem.sentences(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-max` - -- Command(s): `lorem.sentences(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCount` - -- Command(s): `lorem.sentences(sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-separator` - -- Command(s): `lorem.sentences(separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCountMax` - -- Command(s): `lorem.sentences(sentenceCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-arg-sentenceCountMin` - -- Command(s): `lorem.sentences(sentenceCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-min-max` - -- Command(s): `lorem.sentences(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-max-sentenceCount` - -- Command(s): `lorem.sentences(max=3, sentenceCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-sentenceCount-separator` - -- Command(s): `lorem.sentences(sentenceCount=4, separator="-")` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-separator-sentenceCountMax` - -- Command(s): `lorem.sentences(separator="-", sentenceCountMax=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin` - -- Command(s): `lorem.sentences(sentenceCountMax=6, sentenceCountMin=7)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-base` - -- Command(s): `lorem.slug()` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-min` - -- Command(s): `lorem.slug(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-max` - -- Command(s): `lorem.slug(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCount` - -- Command(s): `lorem.slug(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCountMax` - -- Command(s): `lorem.slug(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-arg-wordCountMin` - -- Command(s): `lorem.slug(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-min-max` - -- Command(s): `lorem.slug(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-max-wordCount` - -- Command(s): `lorem.slug(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-wordCount-wordCountMax` - -- Command(s): `lorem.slug(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-slug-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.slug(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-text-base` - -- Command(s): `lorem.text()` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-base` - -- Command(s): `lorem.word()` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-min` - -- Command(s): `lorem.word(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-max` - -- Command(s): `lorem.word(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-length` - -- Command(s): `lorem.word(length=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-arg-strategy` - -- Command(s): `lorem.word(strategy="lorem-word-strategy")` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-min-max` - -- Command(s): `lorem.word(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-max-length` - -- Command(s): `lorem.word(max=3, length=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-word-pair-length-strategy` - -- Command(s): `lorem.word(length=4, strategy="lorem-word-strategy")` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-base` - -- Command(s): `lorem.words()` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-min` - -- Command(s): `lorem.words(min=1)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-max` - -- Command(s): `lorem.words(max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCount` - -- Command(s): `lorem.words(wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCountMax` - -- Command(s): `lorem.words(wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-arg-wordCountMin` - -- Command(s): `lorem.words(wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-min-max` - -- Command(s): `lorem.words(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-max-wordCount` - -- Command(s): `lorem.words(max=3, wordCount=4)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-wordCount-wordCountMax` - -- Command(s): `lorem.words(wordCount=4, wordCountMax=5)` -- Preview data: -```csv - -``` - -#### `domain-lorem-words-pair-wordCountMax-wordCountMin` - -- Command(s): `lorem.words(wordCountMax=5, wordCountMin=6)` -- Preview data: -```csv - -``` - -#### `domain-music-album-base` - -- Command(s): `music.album()` -- Preview data: -```csv - -``` - -#### `domain-music-artist-base` - -- Command(s): `music.artist()` -- Preview data: -```csv - -``` - -#### `domain-music-genre-base` - -- Command(s): `music.genre()` -- Preview data: -```csv - -``` - -#### `domain-music-songName-base` - -- Command(s): `music.songName()` -- Preview data: -```csv - -``` - -#### `domain-number-bigInt-base` - -- Command(s): `number.bigInt()` -- Preview data: -```csv - -``` - -#### `domain-number-bigInt-arg-value` - -- Command(s): `number.bigInt(value=true)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-base` - -- Command(s): `number.binary()` -- Preview data: -```csv - -``` - -#### `domain-number-binary-arg-max` - -- Command(s): `number.binary(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-arg-min` - -- Command(s): `number.binary(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-binary-pair-max-min` - -- Command(s): `number.binary(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-base` - -- Command(s): `number.float()` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-fractionDigits` - -- Command(s): `number.float(fractionDigits=2)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-max` - -- Command(s): `number.float(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-min` - -- Command(s): `number.float(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-arg-multipleOf` - -- Command(s): `number.float(multipleOf=0.5)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-fractionDigits-max` - -- Command(s): `number.float(fractionDigits=2, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-max-min` - -- Command(s): `number.float(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-float-pair-min-multipleOf` - -- Command(s): `number.float(min=1, multipleOf=0.5)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-base` - -- Command(s): `number.hex()` -- Preview data: -```csv - -``` - -#### `domain-number-hex-arg-min` - -- Command(s): `number.hex(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-arg-max` - -- Command(s): `number.hex(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-hex-pair-min-max` - -- Command(s): `number.hex(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-base` - -- Command(s): `number.int()` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-min` - -- Command(s): `number.int(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-max` - -- Command(s): `number.int(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-arg-multipleOf` - -- Command(s): `number.int(multipleOf=4)` -- Preview data: -```csv - -``` - -#### `domain-number-int-pair-min-max` - -- Command(s): `number.int(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-int-pair-max-multipleOf` - -- Command(s): `number.int(max=3, multipleOf=4)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-base` - -- Command(s): `number.octal()` -- Preview data: -```csv - -``` - -#### `domain-number-octal-arg-max` - -- Command(s): `number.octal(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-arg-min` - -- Command(s): `number.octal(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-octal-pair-max-min` - -- Command(s): `number.octal(max=3, min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-base` - -- Command(s): `number.romanNumeral()` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-arg-min` - -- Command(s): `number.romanNumeral(min=1)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-arg-max` - -- Command(s): `number.romanNumeral(max=3)` -- Preview data: -```csv - -``` - -#### `domain-number-romanNumeral-pair-min-max` - -- Command(s): `number.romanNumeral(min=1, max=3)` -- Preview data: -```csv - -``` - -#### `domain-person-bio-base` - -- Command(s): `person.bio()` -- Preview data: -```csv - -``` - -#### `domain-person-firstName-base` - -- Command(s): `person.firstName()` -- Preview data: -```csv - -``` - -#### `domain-person-firstName-arg-sex` - -- Command(s): `person.firstName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-fullName-base` - -- Command(s): `person.fullName()` -- Preview data: -```csv - -``` - -#### `domain-person-gender-base` - -- Command(s): `person.gender()` -- Preview data: -```csv - -``` - -#### `domain-person-jobArea-base` - -- Command(s): `person.jobArea()` -- Preview data: -```csv - -``` - -#### `domain-person-jobDescriptor-base` - -- Command(s): `person.jobDescriptor()` -- Preview data: -```csv - -``` - -#### `domain-person-jobTitle-base` - -- Command(s): `person.jobTitle()` -- Preview data: -```csv - -``` - -#### `domain-person-jobType-base` - -- Command(s): `person.jobType()` -- Preview data: -```csv - -``` - -#### `domain-person-lastName-base` - -- Command(s): `person.lastName()` -- Preview data: -```csv - -``` - -#### `domain-person-lastName-arg-sex` - -- Command(s): `person.lastName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-middleName-base` - -- Command(s): `person.middleName()` -- Preview data: -```csv - -``` - -#### `domain-person-middleName-arg-sex` - -- Command(s): `person.middleName(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-prefix-base` - -- Command(s): `person.prefix()` -- Preview data: -```csv - -``` - -#### `domain-person-prefix-arg-sex` - -- Command(s): `person.prefix(sex="male")` -- Preview data: -```csv - -``` - -#### `domain-person-sex-base` - -- Command(s): `person.sex()` -- Preview data: -```csv - -``` - -#### `domain-person-sexType-base` - -- Command(s): `person.sexType()` -- Preview data: -```csv - -``` - -#### `domain-person-suffix-base` - -- Command(s): `person.suffix()` -- Preview data: -```csv - -``` - -#### `domain-person-zodiacSign-base` - -- Command(s): `person.zodiacSign()` -- Preview data: -```csv - -``` - -#### `domain-phone-imei-base` - -- Command(s): `phone.imei()` -- Preview data: -```csv - -``` - -#### `domain-phone-number-base` - -- Command(s): `phone.number()` -- Preview data: -```csv - -``` - -#### `domain-phone-number-arg-style` - -- Command(s): `phone.number(style="international")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-base` - -- Command(s): `string.alpha()` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-length` - -- Command(s): `string.alpha(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-casing` - -- Command(s): `string.alpha(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-arg-exclude` - -- Command(s): `string.alpha(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-pair-length-casing` - -- Command(s): `string.alpha(length=4, casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alpha-pair-casing-exclude` - -- Command(s): `string.alpha(casing="upper", exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-base` - -- Command(s): `string.alphanumeric()` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-length` - -- Command(s): `string.alphanumeric(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-casing` - -- Command(s): `string.alphanumeric(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-arg-exclude` - -- Command(s): `string.alphanumeric(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-pair-length-casing` - -- Command(s): `string.alphanumeric(length=4, casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-alphanumeric-pair-casing-exclude` - -- Command(s): `string.alphanumeric(casing="upper", exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-binary-base` - -- Command(s): `string.binary()` -- Preview data: -```csv - -``` - -#### `domain-string-binary-arg-length` - -- Command(s): `string.binary(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-binary-arg-prefix` - -- Command(s): `string.binary(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-binary-pair-length-prefix` - -- Command(s): `string.binary(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-base` - -- Command(s): `string.counterString(1, 25, "*")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-1` - -- Command(s): `string.counterString()` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-2` - -- Command(s): `string.counterString(15)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-3` - -- Command(s): `string.counterString(min=5, max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-4` - -- Command(s): `string.counterString(min=12, max=12, delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-min` - -- Command(s): `string.counterString(min=5)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-max` - -- Command(s): `string.counterString(max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-arg-delimiter` - -- Command(s): `string.counterString(delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-pair-min-max` - -- Command(s): `string.counterString(min=5, max=12)` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-pair-max-delimiter` - -- Command(s): `string.counterString(max=12, delimiter="#")` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-base` - -- Command(s): `string.fromCharacters("ABC123", 4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-example-1` - -- Command(s): `string.fromCharacters("ABC123", 6)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-example-2` - -- Command(s): `string.fromCharacters(characters=["A", "B", "C"], length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-arg-characters` - -- Command(s): `string.fromCharacters(characters="ABC123")` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-arg-length` - -- Command(s): `string.fromCharacters(characters="ABC123", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-pair-characters-length` - -- Command(s): `string.fromCharacters(characters="ABC123", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-base` - -- Command(s): `string.hexadecimal()` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-casing` - -- Command(s): `string.hexadecimal(casing="upper")` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-length` - -- Command(s): `string.hexadecimal(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-arg-prefix` - -- Command(s): `string.hexadecimal(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-pair-casing-length` - -- Command(s): `string.hexadecimal(casing="upper", length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-hexadecimal-pair-length-prefix` - -- Command(s): `string.hexadecimal(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-nanoid-base` - -- Command(s): `string.nanoid()` -- Preview data: -```csv - -``` - -#### `domain-string-nanoid-arg-length` - -- Command(s): `string.nanoid(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-base` - -- Command(s): `string.numeric()` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-length` - -- Command(s): `string.numeric(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-allowLeadingZeros` - -- Command(s): `string.numeric(allowLeadingZeros=true)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-arg-exclude` - -- Command(s): `string.numeric(exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-pair-length-allowLeadingZeros` - -- Command(s): `string.numeric(length=4, allowLeadingZeros=true)` -- Preview data: -```csv - -``` - -#### `domain-string-numeric-pair-allowLeadingZeros-exclude` - -- Command(s): `string.numeric(allowLeadingZeros=true, exclude=["A", "B"])` -- Preview data: -```csv - -``` - -#### `domain-string-octal-base` - -- Command(s): `string.octal()` -- Preview data: -```csv - -``` - -#### `domain-string-octal-arg-length` - -- Command(s): `string.octal(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-octal-arg-prefix` - -- Command(s): `string.octal(prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-octal-pair-length-prefix` - -- Command(s): `string.octal(length=4, prefix="#")` -- Preview data: -```csv - -``` - -#### `domain-string-sample-base` - -- Command(s): `string.sample()` -- Preview data: -```csv - -``` - -#### `domain-string-sample-arg-length` - -- Command(s): `string.sample(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-symbol-base` - -- Command(s): `string.symbol()` -- Preview data: -```csv - -``` - -#### `domain-string-symbol-arg-length` - -- Command(s): `string.symbol(length=4)` -- Preview data: -```csv - -``` - -#### `domain-string-ulid-base` - -- Command(s): `string.ulid()` -- Preview data: -```csv - -``` - -#### `domain-string-ulid-arg-refDate` - -- Command(s): `string.ulid(refDate=2)` -- Preview data: -```csv - -``` - -#### `domain-string-uuid-base` - -- Command(s): `string.uuid()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileExt-base` - -- Command(s): `system.commonFileExt()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileName-base` - -- Command(s): `system.commonFileName()` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileName-arg-extension` - -- Command(s): `system.commonFileName(extension="system-commonFileName-extension")` -- Preview data: -```csv - -``` - -#### `domain-system-commonFileType-base` - -- Command(s): `system.commonFileType()` -- Preview data: -```csv - -``` - -#### `domain-system-cron-base` - -- Command(s): `system.cron()` -- Preview data: -```csv - -``` - -#### `domain-system-cron-arg-includeNonStandard` - -- Command(s): `system.cron(includeNonStandard=true)` -- Preview data: -```csv - -``` - -#### `domain-system-cron-arg-includeYear` - -- Command(s): `system.cron(includeYear=true)` -- Preview data: -```csv - -``` - -#### `domain-system-cron-pair-includeNonStandard-includeYear` - -- Command(s): `system.cron(includeNonStandard=true, includeYear=true)` -- Preview data: -```csv - -``` - -#### `domain-system-directoryPath-base` - -- Command(s): `system.directoryPath()` -- Preview data: -```csv - -``` - -#### `domain-system-fileExt-base` - -- Command(s): `system.fileExt()` -- Preview data: -```csv - -``` - -#### `domain-system-fileExt-arg-mimeType` - -- Command(s): `system.fileExt(mimeType="system-fileExt-mimeType")` -- Preview data: -```csv - -``` - -#### `domain-system-fileName-base` - -- Command(s): `system.fileName()` -- Preview data: -```csv - -``` - -#### `domain-system-filePath-base` - -- Command(s): `system.filePath()` -- Preview data: -```csv - -``` - -#### `domain-system-fileType-base` - -- Command(s): `system.fileType()` -- Preview data: -```csv - -``` - -#### `domain-system-mimeType-base` - -- Command(s): `system.mimeType()` -- Preview data: -```csv - -``` - -#### `domain-system-networkInterface-base` - -- Command(s): `system.networkInterface()` -- Preview data: -```csv - -``` - -#### `domain-system-semver-base` - -- Command(s): `system.semver()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-bicycle-base` - -- Command(s): `vehicle.bicycle()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-color-base` - -- Command(s): `vehicle.color()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-fuel-base` - -- Command(s): `vehicle.fuel()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-manufacturer-base` - -- Command(s): `vehicle.manufacturer()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-model-base` - -- Command(s): `vehicle.model()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-type-base` - -- Command(s): `vehicle.type()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vehicle-base` - -- Command(s): `vehicle.vehicle()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vin-base` - -- Command(s): `vehicle.vin()` -- Preview data: -```csv - -``` - -#### `domain-vehicle-vrm-base` - -- Command(s): `vehicle.vrm()` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-base` - -- Command(s): `word.adjective()` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-length` - -- Command(s): `word.adjective(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-max` - -- Command(s): `word.adjective(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-arg-strategy` - -- Command(s): `word.adjective(strategy="word-adjective-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-pair-length-max` - -- Command(s): `word.adjective(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adjective-pair-max-strategy` - -- Command(s): `word.adjective(max=3, strategy="word-adjective-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-base` - -- Command(s): `word.adverb()` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-length` - -- Command(s): `word.adverb(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-max` - -- Command(s): `word.adverb(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-arg-strategy` - -- Command(s): `word.adverb(strategy="word-adverb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-pair-length-max` - -- Command(s): `word.adverb(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-adverb-pair-max-strategy` - -- Command(s): `word.adverb(max=3, strategy="word-adverb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-base` - -- Command(s): `word.conjunction()` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-length` - -- Command(s): `word.conjunction(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-max` - -- Command(s): `word.conjunction(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-arg-strategy` - -- Command(s): `word.conjunction(strategy="word-conjunction-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-pair-length-max` - -- Command(s): `word.conjunction(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-conjunction-pair-max-strategy` - -- Command(s): `word.conjunction(max=3, strategy="word-conjunction-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-base` - -- Command(s): `word.interjection()` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-length` - -- Command(s): `word.interjection(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-max` - -- Command(s): `word.interjection(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-arg-strategy` - -- Command(s): `word.interjection(strategy="word-interjection-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-pair-length-max` - -- Command(s): `word.interjection(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-interjection-pair-max-strategy` - -- Command(s): `word.interjection(max=3, strategy="word-interjection-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-noun-base` - -- Command(s): `word.noun()` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-length` - -- Command(s): `word.noun(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-max` - -- Command(s): `word.noun(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-arg-strategy` - -- Command(s): `word.noun(strategy="word-noun-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-noun-pair-length-max` - -- Command(s): `word.noun(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-noun-pair-max-strategy` - -- Command(s): `word.noun(max=3, strategy="word-noun-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-base` - -- Command(s): `word.preposition()` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-length` - -- Command(s): `word.preposition(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-max` - -- Command(s): `word.preposition(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-arg-strategy` - -- Command(s): `word.preposition(strategy="word-preposition-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-pair-length-max` - -- Command(s): `word.preposition(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-preposition-pair-max-strategy` - -- Command(s): `word.preposition(max=3, strategy="word-preposition-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-sample-base` - -- Command(s): `word.sample()` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-length` - -- Command(s): `word.sample(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-max` - -- Command(s): `word.sample(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-arg-strategy` - -- Command(s): `word.sample(strategy="word-sample-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-sample-pair-length-max` - -- Command(s): `word.sample(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-sample-pair-max-strategy` - -- Command(s): `word.sample(max=3, strategy="word-sample-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-verb-base` - -- Command(s): `word.verb()` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-length` - -- Command(s): `word.verb(length=4)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-max` - -- Command(s): `word.verb(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-arg-strategy` - -- Command(s): `word.verb(strategy="word-verb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-verb-pair-length-max` - -- Command(s): `word.verb(length=4, max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-verb-pair-max-strategy` - -- Command(s): `word.verb(max=3, strategy="word-verb-strategy")` -- Preview data: -```csv - -``` - -#### `domain-word-words-base` - -- Command(s): `word.words()` -- Preview data: -```csv - -``` - -#### `domain-word-words-arg-count` - -- Command(s): `word.words(count=2)` -- Preview data: -```csv - -``` - -#### `domain-word-words-arg-max` - -- Command(s): `word.words(max=3)` -- Preview data: -```csv - -``` - -#### `domain-word-words-pair-count-max` - -- Command(s): `word.words(count=2, max=3)` -- Preview data: -```csv - -``` - - -## UI Scenarios - -Scenario count: **20** -Generated preview data count: **20** -Review-only scenario count: **0** -Non-executable scenario count: **0** -Exact preview parity scenario count: **15** -Structural-only preview parity scenario count: **5** - -### By Source Type - -| Key | Count | -| --- | ---: | -| `domain` | 8 | -| `enum` | 2 | -| `faker` | 6 | -| `literal` | 2 | -| `regex` | 2 | - -### By Origin - -| Key | Count | -| --- | ---: | -| `base` | 4 | -| `custom` | 3 | -| `empty` | 2 | -| `example` | 10 | -| `pairwise` | 1 | - -### UI Parity Modes - -| Mode | Count | -| --- | ---: | -| `exact` | 15 | -| `structural` | 5 | - -### Structural-Only UI Scenarios - -- `custom-regex-base` - `regex("[A-Z]{2}[0-9]{2}")` -- `faker-helpers-fake-base` - `helpers.fake("{{person.firstName}}")` -- `faker-helpers-fromRegExp-example-1` - `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- `faker-helpers-uniqueArray-example-1` - `helpers.uniqueArray(["red", "green", "blue"], 2)` -- `domain-autoIncrement-sequence-example-1` - `autoIncrement.sequence()` - -### Commands By Source Type - -#### `domain` (8) - -- `airline.seat` -- `autoIncrement.sequence` -- `commerce.price` -- `date.birthdate` -- `internet.password` -- `literal.value` -- `string.counterString` -- `string.fromCharacters` - -#### `enum` (2) - -- `enum` -- `enum pairwise` - -#### `faker` (6) - -- `helpers.arrayElement` -- `helpers.fake` -- `helpers.fromRegExp` -- `helpers.mustache` -- `helpers.uniqueArray` -- `helpers.weightedArrayElement` - -#### `literal` (2) - -- `literal` -- `literal empty` - -#### `regex` (2) - -- `regex` -- `regex empty` - -### Scenario Details - -#### `custom-enum-base` - -- Command(s): `enum(active,inactive,pending)` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `custom-enum-pairwise` - -- Command(s): `Status: enum(active,inactive,pending) | Priority: enum(high,medium,low)` -- UI preview parity: `exact` -- Schema Rows: `Status: enum(active,inactive,pending)`, `Priority: enum(high,medium,low)` -- Preview data: -```csv - -``` - -#### `custom-literal-base` - -- Command(s): `literal("Pending")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `custom-literal-empty` - -- Command(s): `literal("")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `custom-regex-base` - -- Command(s): `regex("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` -- Preview data: -```csv - -``` - -#### `custom-regex-empty` - -- Command(s): `regex("")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `faker-helpers-arrayElement-base` - -- Command(s): `helpers.arrayElement(["A", "B"])` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `faker-helpers-fake-base` - -- Command(s): `helpers.fake("{{person.firstName}}")` -- UI preview parity: `structural` -- Preview data: -```csv - -``` - -#### `faker-helpers-fromRegExp-example-1` - -- Command(s): `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` -- Preview data: -```csv - -``` - -#### `faker-helpers-mustache-base` - -- Command(s): `helpers.mustache("{{name}}", { name: "Ada" })` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `faker-helpers-uniqueArray-example-1` - -- Command(s): `helpers.uniqueArray(["red", "green", "blue"], 2)` -- UI preview parity: `structural` -- Preview data: -```csv - -``` - -#### `faker-helpers-weightedArrayElement-example-1` - -- Command(s): `helpers.weightedArrayElement([{ weight: 5, value: "sunny" }, { weight: 1, value: "rainy" }])` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-airline-seat-example-1` - -- Command(s): `airline.seat()` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-autoIncrement-sequence-example-1` - -- Command(s): `autoIncrement.sequence()` -- UI preview parity: `structural` -- Preview data: -```csv - -``` - -#### `domain-commerce-price-example-1` - -- Command(s): `commerce.price(dec=2, max=10, min=1, symbol="$")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-date-birthdate-example-1` - -- Command(s): `date.birthdate(refDate=20000, max=69, min=16, mode="age")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-internet-password-example-1` - -- Command(s): `internet.password(length=10, memorable=false, pattern="[A-Za-z0-9]", prefix="#")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-literal-value-example-1` - -- Command(s): `literal.value("Pending")` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-string-counterString-example-1` - -- Command(s): `string.counterString()` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - -#### `domain-string-fromCharacters-base` - -- Command(s): `string.fromCharacters("ABC123", 4)` -- UI preview parity: `exact` -- Preview data: -```csv - -``` - diff --git a/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json b/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json deleted file mode 100644 index b5f2a721..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json +++ /dev/null @@ -1,52259 +0,0 @@ -{ - "generatedAt": "2026-06-18T21:33:49.483Z", - "coverageScenarios": [ - { - "id": "coverage:custom-enum-base", - "sourceType": "enum", - "command": "", - "label": "enum", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-enum-base" - }, - { - "id": "coverage:custom-enum-pairwise", - "sourceType": "enum", - "command": "", - "label": "enum pairwise", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - }, - { - "name": "Priority", - "sourceType": "enum", - "command": "", - "params": "", - "value": "high,medium,low" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending\nPriority\nhigh,medium,low", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)\nPriority\nenum(high,medium,low)", - "expectedFileExtension": ".csv", - "pairwiseEligible": true, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "pairwise"], - "scenarioId": "custom-enum-pairwise" - }, - { - "id": "coverage:custom-literal-base", - "sourceType": "literal", - "command": "", - "label": "literal", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "Pending" - } - ], - "expectedSchemaText": "Status\nliteral(Pending)", - "expectedUiSchemaText": "Status\nliteral(Pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-literal-base" - }, - { - "id": "coverage:custom-literal-empty", - "sourceType": "literal", - "command": "", - "label": "literal empty", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "" - } - ], - "expectedSchemaText": "Status\nliteral(\"\")", - "expectedUiSchemaText": "Status\nliteral(\"\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "empty"], - "scenarioId": "custom-literal-empty" - }, - { - "id": "coverage:custom-regex-base", - "sourceType": "regex", - "command": "", - "label": "regex", - "rows": [ - { - "name": "Code", - "sourceType": "regex", - "command": "", - "params": "", - "value": "[A-Z]{2}[0-9]{2}" - } - ], - "expectedSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedUiSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-regex-base" - }, - { - "id": "coverage:custom-regex-empty", - "sourceType": "regex", - "command": "", - "label": "regex empty", - "rows": [ - { - "name": "Code", - "sourceType": "regex", - "command": "", - "params": "", - "value": "" - } - ], - "expectedSchemaText": "", - "expectedUiSchemaText": "Code\n", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "empty"], - "scenarioId": "custom-regex-empty" - }, - { - "id": "coverage:faker-helpers-arrayElement-base", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-arrayElement-base" - }, - { - "id": "coverage:faker-helpers-arrayElement-example-1", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElement-example-1" - }, - { - "id": "coverage:faker-helpers-arrayElement-arg-array", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElement-arg-array" - }, - { - "id": "coverage:faker-helpers-arrayElements-base", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\", \"C\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-arrayElements-base" - }, - { - "id": "coverage:faker-helpers-arrayElements-example-1", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\", \"C\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElements-example-1" - }, - { - "id": "coverage:faker-helpers-arrayElements-example-2", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\",\"B\",\"C\"], 5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\",\"B\",\"C\"], 5)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\",\"B\",\"C\"], 5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElements-example-2" - }, - { - "id": "coverage:faker-helpers-arrayElements-arg-array", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElements-arg-array" - }, - { - "id": "coverage:faker-helpers-arrayElements-arg-count", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements arg count", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["count"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElements-arg-count" - }, - { - "id": "coverage:faker-helpers-arrayElements-pair-array-count", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements pair array/count", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["pair"], - "scenarioId": "faker-helpers-arrayElements-pair-array-count" - }, - { - "id": "coverage:faker-helpers-fake-base", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"{{person.firstName}}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-fake-base" - }, - { - "id": "coverage:faker-helpers-fake-example-1", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["example"], - "scenarioId": "faker-helpers-fake-example-1" - }, - { - "id": "coverage:faker-helpers-fake-arg-pattern", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "faker-helpers-fake-arg-pattern" - }, - { - "id": "coverage:faker-helpers-fromRegExp-base", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-fromRegExp-base" - }, - { - "id": "coverage:faker-helpers-fromRegExp-example-1", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}[0-9]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["example"], - "scenarioId": "faker-helpers-fromRegExp-example-1" - }, - { - "id": "coverage:faker-helpers-fromRegExp-arg-pattern", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "faker-helpers-fromRegExp-arg-pattern" - }, - { - "id": "coverage:faker-helpers-maybe-base", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(\"() => unknown\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(\"() => unknown\")", - "expectedUiSchemaText": "Value\nhelpers.maybe(\"() => unknown\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-maybe-base" - }, - { - "id": "coverage:faker-helpers-maybe-example-1", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(() => \"enabled\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(() => \"enabled\")", - "expectedUiSchemaText": "Value\nhelpers.maybe(() => \"enabled\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["callback", "options"], - "origins": ["example"], - "scenarioId": "faker-helpers-maybe-example-1" - }, - { - "id": "coverage:faker-helpers-maybe-example-2", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(() => \"enabled\", { probability: 1 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(() => \"enabled\", { probability: 1 })", - "expectedUiSchemaText": "Value\nhelpers.maybe(() => \"enabled\", { probability: 1 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["callback", "options"], - "origins": ["example"], - "scenarioId": "faker-helpers-maybe-example-2" - }, - { - "id": "coverage:faker-helpers-maybe-arg-callback", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe arg callback", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(\"() => unknown\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(\"() => unknown\")", - "expectedUiSchemaText": "Value\nhelpers.maybe(\"() => unknown\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["callback"], - "origins": ["arg"], - "scenarioId": "faker-helpers-maybe-arg-callback" - }, - { - "id": "coverage:faker-helpers-maybe-arg-options", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe arg options", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(\"() => unknown\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(\"() => unknown\", {})", - "expectedUiSchemaText": "Value\nhelpers.maybe(\"() => unknown\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["options"], - "origins": ["arg"], - "scenarioId": "faker-helpers-maybe-arg-options" - }, - { - "id": "coverage:faker-helpers-maybe-pair-callback-options", - "sourceType": "faker", - "command": "helpers.maybe", - "label": "helpers.maybe pair callback/options", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.maybe", - "params": "(\"() => unknown\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.maybe(\"() => unknown\", {})", - "expectedUiSchemaText": "Value\nhelpers.maybe(\"() => unknown\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["callback", "options"], - "origins": ["pair"], - "scenarioId": "faker-helpers-maybe-pair-callback-options" - }, - { - "id": "coverage:faker-helpers-multiple-base", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(\"() => unknown\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(\"() => unknown\")", - "expectedUiSchemaText": "Value\nhelpers.multiple(\"() => unknown\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-multiple-base" - }, - { - "id": "coverage:faker-helpers-multiple-example-1", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(() => \"sample\", { count: 3 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(() => \"sample\", { count: 3 })", - "expectedUiSchemaText": "Value\nhelpers.multiple(() => \"sample\", { count: 3 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["method", "options"], - "origins": ["example"], - "scenarioId": "faker-helpers-multiple-example-1" - }, - { - "id": "coverage:faker-helpers-multiple-example-2", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(() => \"sample\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(() => \"sample\")", - "expectedUiSchemaText": "Value\nhelpers.multiple(() => \"sample\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["method", "options"], - "origins": ["example"], - "scenarioId": "faker-helpers-multiple-example-2" - }, - { - "id": "coverage:faker-helpers-multiple-arg-method", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple arg method", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(\"() => unknown\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(\"() => unknown\")", - "expectedUiSchemaText": "Value\nhelpers.multiple(\"() => unknown\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["method"], - "origins": ["arg"], - "scenarioId": "faker-helpers-multiple-arg-method" - }, - { - "id": "coverage:faker-helpers-multiple-arg-options", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple arg options", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(\"() => unknown\", 3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(\"() => unknown\", 3)", - "expectedUiSchemaText": "Value\nhelpers.multiple(\"() => unknown\", 3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["options"], - "origins": ["arg"], - "scenarioId": "faker-helpers-multiple-arg-options" - }, - { - "id": "coverage:faker-helpers-multiple-pair-method-options", - "sourceType": "faker", - "command": "helpers.multiple", - "label": "helpers.multiple pair method/options", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.multiple", - "params": "(\"() => unknown\", 3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.multiple(\"() => unknown\", 3)", - "expectedUiSchemaText": "Value\nhelpers.multiple(\"() => unknown\", 3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["method", "options"], - "origins": ["pair"], - "scenarioId": "faker-helpers-multiple-pair-method-options" - }, - { - "id": "coverage:faker-helpers-mustache-base", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", { name: \"Ada\" })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-mustache-base" - }, - { - "id": "coverage:faker-helpers-mustache-example-1", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"Hello {{name}}\", { name: \"Ada\" })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"Hello {{name}}\", { name: \"Ada\" })", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"Hello {{name}}\", { name: \"Ada\" })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text", "data"], - "origins": ["example"], - "scenarioId": "faker-helpers-mustache-example-1" - }, - { - "id": "coverage:faker-helpers-mustache-arg-text", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache arg text", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\")", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text"], - "origins": ["arg"], - "scenarioId": "faker-helpers-mustache-arg-text" - }, - { - "id": "coverage:faker-helpers-mustache-arg-data", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache arg data", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["data"], - "origins": ["arg"], - "scenarioId": "faker-helpers-mustache-arg-data" - }, - { - "id": "coverage:faker-helpers-mustache-pair-text-data", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache pair text/data", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text", "data"], - "origins": ["pair"], - "scenarioId": "faker-helpers-mustache-pair-text-data" - }, - { - "id": "coverage:faker-helpers-rangeToNumber-base", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "({ min: 1, max: 2 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-rangeToNumber-base" - }, - { - "id": "coverage:faker-helpers-rangeToNumber-example-1", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "({ min: 1, max: 2 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["numberOrRange"], - "origins": ["example"], - "scenarioId": "faker-helpers-rangeToNumber-example-1" - }, - { - "id": "coverage:faker-helpers-rangeToNumber-arg-numberOrRange", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber arg numberOrRange", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "(2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber(2)", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber(2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["numberOrRange"], - "origins": ["arg"], - "scenarioId": "faker-helpers-rangeToNumber-arg-numberOrRange" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-base", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-base" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-example-1", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-1" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-example-2", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"1234-[4-9]-##!!-L\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-[4-9]-##!!-L\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-[4-9]-##!!-L\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-2" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-example-3", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 3", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"1234-****-****-L\", \"*\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-****-****-L\", \"*\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-****-****-L\", \"*\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-3" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-arg-string", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-string" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-arg-symbol", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-symbol" - }, - { - "id": "coverage:faker-helpers-replaceCreditCardSymbols-pair-string-symbol", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols pair string/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["pair"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol" - }, - { - "id": "coverage:faker-helpers-replaceSymbols-base", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-replaceSymbols-base" - }, - { - "id": "coverage:faker-helpers-replaceSymbols-example-1", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "(\"##??-##\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols(\"##??-##\")", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols(\"##??-##\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceSymbols-example-1" - }, - { - "id": "coverage:faker-helpers-replaceSymbols-example-2", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceSymbols-example-2" - }, - { - "id": "coverage:faker-helpers-replaceSymbols-arg-string", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "(\"helpers-replaceSymbols-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols(\"helpers-replaceSymbols-string\")", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols(\"helpers-replaceSymbols-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceSymbols-arg-string" - }, - { - "id": "coverage:faker-helpers-shuffle-base", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-shuffle-base" - }, - { - "id": "coverage:faker-helpers-shuffle-example-1", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-shuffle-example-1" - }, - { - "id": "coverage:faker-helpers-shuffle-arg-array", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-shuffle-arg-array" - }, - { - "id": "coverage:faker-helpers-slugify-base", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify()", - "expectedUiSchemaText": "Value\nhelpers.slugify()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-slugify-base" - }, - { - "id": "coverage:faker-helpers-slugify-example-1", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "(\"Hello World 2026\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify(\"Hello World 2026\")", - "expectedUiSchemaText": "Value\nhelpers.slugify(\"Hello World 2026\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-slugify-example-1" - }, - { - "id": "coverage:faker-helpers-slugify-example-2", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify()", - "expectedUiSchemaText": "Value\nhelpers.slugify()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-slugify-example-2" - }, - { - "id": "coverage:faker-helpers-slugify-arg-string", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "(\"helpers-slugify-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify(\"helpers-slugify-string\")", - "expectedUiSchemaText": "Value\nhelpers.slugify(\"helpers-slugify-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-slugify-arg-string" - }, - { - "id": "coverage:faker-helpers-uniqueArray-base", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-uniqueArray-base" - }, - { - "id": "coverage:faker-helpers-uniqueArray-example-1", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"red\", \"green\", \"blue\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source", "length"], - "origins": ["example"], - "scenarioId": "faker-helpers-uniqueArray-example-1" - }, - { - "id": "coverage:faker-helpers-uniqueArray-arg-source", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray arg source", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source"], - "origins": ["arg"], - "scenarioId": "faker-helpers-uniqueArray-arg-source" - }, - { - "id": "coverage:faker-helpers-uniqueArray-arg-length", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray arg length", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "faker-helpers-uniqueArray-arg-length" - }, - { - "id": "coverage:faker-helpers-uniqueArray-pair-source-length", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray pair source/length", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source", "length"], - "origins": ["pair"], - "scenarioId": "faker-helpers-uniqueArray-pair-source-length" - }, - { - "id": "coverage:faker-helpers-weightedArrayElement-base", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-weightedArrayElement-base" - }, - { - "id": "coverage:faker-helpers-weightedArrayElement-example-1", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-weightedArrayElement-example-1" - }, - { - "id": "coverage:faker-helpers-weightedArrayElement-arg-array", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-weightedArrayElement-arg-array" - }, - { - "id": "coverage:domain-airline-aircraftType-base", - "sourceType": "domain", - "command": "airline.aircraftType", - "label": "airline.aircraftType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.aircraftType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.aircraftType()", - "expectedUiSchemaText": "Value\nairline.aircraftType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-aircraftType-base" - }, - { - "id": "coverage:domain-airline-aircraftType-example-1", - "sourceType": "domain", - "command": "airline.aircraftType", - "label": "airline.aircraftType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.aircraftType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.aircraftType()", - "expectedUiSchemaText": "Value\nairline.aircraftType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-aircraftType-example-1" - }, - { - "id": "coverage:domain-airline-flightNumber-base", - "sourceType": "domain", - "command": "airline.flightNumber", - "label": "airline.flightNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.flightNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.flightNumber()", - "expectedUiSchemaText": "Value\nairline.flightNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-flightNumber-base" - }, - { - "id": "coverage:domain-airline-flightNumber-example-1", - "sourceType": "domain", - "command": "airline.flightNumber", - "label": "airline.flightNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.flightNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.flightNumber()", - "expectedUiSchemaText": "Value\nairline.flightNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-flightNumber-example-1" - }, - { - "id": "coverage:domain-airline-iataCode-base", - "sourceType": "domain", - "command": "airline.iataCode", - "label": "airline.iataCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.iataCode()", - "expectedUiSchemaText": "Value\nairline.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-iataCode-base" - }, - { - "id": "coverage:domain-airline-iataCode-example-1", - "sourceType": "domain", - "command": "airline.iataCode", - "label": "airline.iataCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.iataCode()", - "expectedUiSchemaText": "Value\nairline.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-iataCode-example-1" - }, - { - "id": "coverage:domain-airline-name-base", - "sourceType": "domain", - "command": "airline.name", - "label": "airline.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.name()", - "expectedUiSchemaText": "Value\nairline.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-name-base" - }, - { - "id": "coverage:domain-airline-name-example-1", - "sourceType": "domain", - "command": "airline.name", - "label": "airline.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.name()", - "expectedUiSchemaText": "Value\nairline.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-name-example-1" - }, - { - "id": "coverage:domain-airline-recordLocator-base", - "sourceType": "domain", - "command": "airline.recordLocator", - "label": "airline.recordLocator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.recordLocator", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.recordLocator()", - "expectedUiSchemaText": "Value\nairline.recordLocator()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-recordLocator-base" - }, - { - "id": "coverage:domain-airline-recordLocator-example-1", - "sourceType": "domain", - "command": "airline.recordLocator", - "label": "airline.recordLocator example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.recordLocator", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.recordLocator()", - "expectedUiSchemaText": "Value\nairline.recordLocator()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-recordLocator-example-1" - }, - { - "id": "coverage:domain-airline-seat-base", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-seat-base" - }, - { - "id": "coverage:domain-airline-seat-example-1", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-1" - }, - { - "id": "coverage:domain-airline-seat-example-2", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "(aircraftType=\"widebody\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedUiSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-2" - }, - { - "id": "coverage:domain-airline-seat-example-3", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-3" - }, - { - "id": "coverage:domain-airline-seat-arg-aircraftType", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat arg aircraftType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "(aircraftType=\"widebody\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedUiSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["arg"], - "scenarioId": "domain-airline-seat-arg-aircraftType" - }, - { - "id": "coverage:domain-airplane-iataTypeCode-base", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "label": "airplane.iataTypeCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.iataTypeCode()", - "expectedUiSchemaText": "Value\nairplane.iataTypeCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airplane-iataTypeCode-base" - }, - { - "id": "coverage:domain-airplane-iataTypeCode-example-1", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "label": "airplane.iataTypeCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.iataTypeCode()", - "expectedUiSchemaText": "Value\nairplane.iataTypeCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airplane-iataTypeCode-example-1" - }, - { - "id": "coverage:domain-airplane-name-base", - "sourceType": "domain", - "command": "airplane.name", - "label": "airplane.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.name()", - "expectedUiSchemaText": "Value\nairplane.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airplane-name-base" - }, - { - "id": "coverage:domain-airplane-name-example-1", - "sourceType": "domain", - "command": "airplane.name", - "label": "airplane.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.name()", - "expectedUiSchemaText": "Value\nairplane.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airplane-name-example-1" - }, - { - "id": "coverage:domain-airport-iataCode-base", - "sourceType": "domain", - "command": "airport.iataCode", - "label": "airport.iataCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.iataCode()", - "expectedUiSchemaText": "Value\nairport.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airport-iataCode-base" - }, - { - "id": "coverage:domain-airport-iataCode-example-1", - "sourceType": "domain", - "command": "airport.iataCode", - "label": "airport.iataCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.iataCode()", - "expectedUiSchemaText": "Value\nairport.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airport-iataCode-example-1" - }, - { - "id": "coverage:domain-airport-name-base", - "sourceType": "domain", - "command": "airport.name", - "label": "airport.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.name()", - "expectedUiSchemaText": "Value\nairport.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airport-name-base" - }, - { - "id": "coverage:domain-airport-name-example-1", - "sourceType": "domain", - "command": "airport.name", - "label": "airport.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.name()", - "expectedUiSchemaText": "Value\nairport.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airport-name-example-1" - }, - { - "id": "coverage:domain-animal-bear-base", - "sourceType": "domain", - "command": "animal.bear", - "label": "animal.bear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bear", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bear()", - "expectedUiSchemaText": "Value\nanimal.bear()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-bear-base" - }, - { - "id": "coverage:domain-animal-bear-example-1", - "sourceType": "domain", - "command": "animal.bear", - "label": "animal.bear example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bear", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bear()", - "expectedUiSchemaText": "Value\nanimal.bear()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-bear-example-1" - }, - { - "id": "coverage:domain-animal-bird-base", - "sourceType": "domain", - "command": "animal.bird", - "label": "animal.bird", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bird", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bird()", - "expectedUiSchemaText": "Value\nanimal.bird()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-bird-base" - }, - { - "id": "coverage:domain-animal-bird-example-1", - "sourceType": "domain", - "command": "animal.bird", - "label": "animal.bird example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bird", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bird()", - "expectedUiSchemaText": "Value\nanimal.bird()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-bird-example-1" - }, - { - "id": "coverage:domain-animal-cat-base", - "sourceType": "domain", - "command": "animal.cat", - "label": "animal.cat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cat()", - "expectedUiSchemaText": "Value\nanimal.cat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cat-base" - }, - { - "id": "coverage:domain-animal-cat-example-1", - "sourceType": "domain", - "command": "animal.cat", - "label": "animal.cat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cat()", - "expectedUiSchemaText": "Value\nanimal.cat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cat-example-1" - }, - { - "id": "coverage:domain-animal-cetacean-base", - "sourceType": "domain", - "command": "animal.cetacean", - "label": "animal.cetacean", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cetacean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cetacean()", - "expectedUiSchemaText": "Value\nanimal.cetacean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cetacean-base" - }, - { - "id": "coverage:domain-animal-cetacean-example-1", - "sourceType": "domain", - "command": "animal.cetacean", - "label": "animal.cetacean example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cetacean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cetacean()", - "expectedUiSchemaText": "Value\nanimal.cetacean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cetacean-example-1" - }, - { - "id": "coverage:domain-animal-cow-base", - "sourceType": "domain", - "command": "animal.cow", - "label": "animal.cow", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cow", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cow()", - "expectedUiSchemaText": "Value\nanimal.cow()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cow-base" - }, - { - "id": "coverage:domain-animal-cow-example-1", - "sourceType": "domain", - "command": "animal.cow", - "label": "animal.cow example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cow", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cow()", - "expectedUiSchemaText": "Value\nanimal.cow()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cow-example-1" - }, - { - "id": "coverage:domain-animal-crocodilia-base", - "sourceType": "domain", - "command": "animal.crocodilia", - "label": "animal.crocodilia", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.crocodilia", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.crocodilia()", - "expectedUiSchemaText": "Value\nanimal.crocodilia()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-crocodilia-base" - }, - { - "id": "coverage:domain-animal-crocodilia-example-1", - "sourceType": "domain", - "command": "animal.crocodilia", - "label": "animal.crocodilia example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.crocodilia", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.crocodilia()", - "expectedUiSchemaText": "Value\nanimal.crocodilia()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-crocodilia-example-1" - }, - { - "id": "coverage:domain-animal-dog-base", - "sourceType": "domain", - "command": "animal.dog", - "label": "animal.dog", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.dog", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.dog()", - "expectedUiSchemaText": "Value\nanimal.dog()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-dog-base" - }, - { - "id": "coverage:domain-animal-dog-example-1", - "sourceType": "domain", - "command": "animal.dog", - "label": "animal.dog example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.dog", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.dog()", - "expectedUiSchemaText": "Value\nanimal.dog()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-dog-example-1" - }, - { - "id": "coverage:domain-animal-fish-base", - "sourceType": "domain", - "command": "animal.fish", - "label": "animal.fish", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.fish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.fish()", - "expectedUiSchemaText": "Value\nanimal.fish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-fish-base" - }, - { - "id": "coverage:domain-animal-fish-example-1", - "sourceType": "domain", - "command": "animal.fish", - "label": "animal.fish example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.fish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.fish()", - "expectedUiSchemaText": "Value\nanimal.fish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-fish-example-1" - }, - { - "id": "coverage:domain-animal-horse-base", - "sourceType": "domain", - "command": "animal.horse", - "label": "animal.horse", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.horse", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.horse()", - "expectedUiSchemaText": "Value\nanimal.horse()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-horse-base" - }, - { - "id": "coverage:domain-animal-horse-example-1", - "sourceType": "domain", - "command": "animal.horse", - "label": "animal.horse example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.horse", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.horse()", - "expectedUiSchemaText": "Value\nanimal.horse()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-horse-example-1" - }, - { - "id": "coverage:domain-animal-insect-base", - "sourceType": "domain", - "command": "animal.insect", - "label": "animal.insect", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.insect", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.insect()", - "expectedUiSchemaText": "Value\nanimal.insect()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-insect-base" - }, - { - "id": "coverage:domain-animal-insect-example-1", - "sourceType": "domain", - "command": "animal.insect", - "label": "animal.insect example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.insect", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.insect()", - "expectedUiSchemaText": "Value\nanimal.insect()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-insect-example-1" - }, - { - "id": "coverage:domain-animal-lion-base", - "sourceType": "domain", - "command": "animal.lion", - "label": "animal.lion", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.lion", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.lion()", - "expectedUiSchemaText": "Value\nanimal.lion()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-lion-base" - }, - { - "id": "coverage:domain-animal-lion-example-1", - "sourceType": "domain", - "command": "animal.lion", - "label": "animal.lion example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.lion", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.lion()", - "expectedUiSchemaText": "Value\nanimal.lion()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-lion-example-1" - }, - { - "id": "coverage:domain-animal-petName-base", - "sourceType": "domain", - "command": "animal.petName", - "label": "animal.petName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.petName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.petName()", - "expectedUiSchemaText": "Value\nanimal.petName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-petName-base" - }, - { - "id": "coverage:domain-animal-petName-example-1", - "sourceType": "domain", - "command": "animal.petName", - "label": "animal.petName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.petName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.petName()", - "expectedUiSchemaText": "Value\nanimal.petName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-petName-example-1" - }, - { - "id": "coverage:domain-animal-rabbit-base", - "sourceType": "domain", - "command": "animal.rabbit", - "label": "animal.rabbit", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rabbit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rabbit()", - "expectedUiSchemaText": "Value\nanimal.rabbit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-rabbit-base" - }, - { - "id": "coverage:domain-animal-rabbit-example-1", - "sourceType": "domain", - "command": "animal.rabbit", - "label": "animal.rabbit example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rabbit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rabbit()", - "expectedUiSchemaText": "Value\nanimal.rabbit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-rabbit-example-1" - }, - { - "id": "coverage:domain-animal-rodent-base", - "sourceType": "domain", - "command": "animal.rodent", - "label": "animal.rodent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rodent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rodent()", - "expectedUiSchemaText": "Value\nanimal.rodent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-rodent-base" - }, - { - "id": "coverage:domain-animal-rodent-example-1", - "sourceType": "domain", - "command": "animal.rodent", - "label": "animal.rodent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rodent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rodent()", - "expectedUiSchemaText": "Value\nanimal.rodent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-rodent-example-1" - }, - { - "id": "coverage:domain-animal-snake-base", - "sourceType": "domain", - "command": "animal.snake", - "label": "animal.snake", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.snake", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.snake()", - "expectedUiSchemaText": "Value\nanimal.snake()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-snake-base" - }, - { - "id": "coverage:domain-animal-snake-example-1", - "sourceType": "domain", - "command": "animal.snake", - "label": "animal.snake example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.snake", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.snake()", - "expectedUiSchemaText": "Value\nanimal.snake()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-snake-example-1" - }, - { - "id": "coverage:domain-animal-type-base", - "sourceType": "domain", - "command": "animal.type", - "label": "animal.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.type()", - "expectedUiSchemaText": "Value\nanimal.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-type-base" - }, - { - "id": "coverage:domain-animal-type-example-1", - "sourceType": "domain", - "command": "animal.type", - "label": "animal.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.type()", - "expectedUiSchemaText": "Value\nanimal.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-type-example-1" - }, - { - "id": "coverage:domain-autoIncrement-sequence-base", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(1, 5, \"filename\", \".txt\", 3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-autoIncrement-sequence-base" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-1", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence()", - "expectedUiSchemaText": "Value\nautoIncrement.sequence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-1" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-2", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-2" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-3", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-3" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-4", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-4" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-5", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-5" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-6", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-6" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-7", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-7" - }, - { - "id": "coverage:domain-autoIncrement-sequence-example-8", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-8" - }, - { - "id": "coverage:domain-autoIncrement-sequence-arg-start", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg start", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-start" - }, - { - "id": "coverage:domain-autoIncrement-sequence-arg-step", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-step" - }, - { - "id": "coverage:domain-autoIncrement-sequence-arg-prefix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-prefix" - }, - { - "id": "coverage:domain-autoIncrement-sequence-arg-suffix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["suffix"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-suffix" - }, - { - "id": "coverage:domain-autoIncrement-sequence-arg-zeropadding", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg zeropadding", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["zeropadding"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-zeropadding" - }, - { - "id": "coverage:domain-autoIncrement-sequence-pair-start-step", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair start/step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-start-step" - }, - { - "id": "coverage:domain-autoIncrement-sequence-pair-step-prefix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair step/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5, prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-step-prefix" - }, - { - "id": "coverage:domain-autoIncrement-sequence-pair-prefix-suffix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair prefix/suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\", suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix", "suffix"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-prefix-suffix" - }, - { - "id": "coverage:domain-autoIncrement-sequence-pair-suffix-zeropadding", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair suffix/zeropadding", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\", zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["suffix", "zeropadding"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-suffix-zeropadding" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-base", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp()", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-autoIncrement-timestamp-base" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-1", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-1" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-2", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp()", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-2" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-3", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", step=1, type=\"days\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", step=1, type=\"days\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", step=1, type=\"days\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-3" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-4", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-4" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-5", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-5" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-6", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-6" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-7", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-7" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-8", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-8" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-9", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 9", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-9" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-example-10", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 10", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-10" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-arg-start", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg start", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-start" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-arg-step", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-step" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-arg-type", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-type" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-arg-outputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg outputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["outputFormat"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-outputFormat" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-arg-inputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg inputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["inputFormat"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-inputFormat" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-pair-start-step", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair start/step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\", step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-start-step" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-pair-step-type", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair step/type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1, type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step", "type"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-step-type" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-pair-type-outputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair type/outputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\", outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "outputFormat"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-type-outputFormat" - }, - { - "id": "coverage:domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair outputFormat/inputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["outputFormat", "inputFormat"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat" - }, - { - "id": "coverage:domain-book-author-base", - "sourceType": "domain", - "command": "book.author", - "label": "book.author", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.author", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.author()", - "expectedUiSchemaText": "Value\nbook.author()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-author-base" - }, - { - "id": "coverage:domain-book-author-example-1", - "sourceType": "domain", - "command": "book.author", - "label": "book.author example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.author", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.author()", - "expectedUiSchemaText": "Value\nbook.author()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-author-example-1" - }, - { - "id": "coverage:domain-book-format-base", - "sourceType": "domain", - "command": "book.format", - "label": "book.format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.format", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.format()", - "expectedUiSchemaText": "Value\nbook.format()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-format-base" - }, - { - "id": "coverage:domain-book-format-example-1", - "sourceType": "domain", - "command": "book.format", - "label": "book.format example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.format", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.format()", - "expectedUiSchemaText": "Value\nbook.format()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-format-example-1" - }, - { - "id": "coverage:domain-book-genre-base", - "sourceType": "domain", - "command": "book.genre", - "label": "book.genre", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.genre()", - "expectedUiSchemaText": "Value\nbook.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-genre-base" - }, - { - "id": "coverage:domain-book-genre-example-1", - "sourceType": "domain", - "command": "book.genre", - "label": "book.genre example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.genre()", - "expectedUiSchemaText": "Value\nbook.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-genre-example-1" - }, - { - "id": "coverage:domain-book-publisher-base", - "sourceType": "domain", - "command": "book.publisher", - "label": "book.publisher", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.publisher", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.publisher()", - "expectedUiSchemaText": "Value\nbook.publisher()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-publisher-base" - }, - { - "id": "coverage:domain-book-publisher-example-1", - "sourceType": "domain", - "command": "book.publisher", - "label": "book.publisher example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.publisher", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.publisher()", - "expectedUiSchemaText": "Value\nbook.publisher()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-publisher-example-1" - }, - { - "id": "coverage:domain-book-series-base", - "sourceType": "domain", - "command": "book.series", - "label": "book.series", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.series", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.series()", - "expectedUiSchemaText": "Value\nbook.series()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-series-base" - }, - { - "id": "coverage:domain-book-series-example-1", - "sourceType": "domain", - "command": "book.series", - "label": "book.series example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.series", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.series()", - "expectedUiSchemaText": "Value\nbook.series()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-series-example-1" - }, - { - "id": "coverage:domain-book-title-base", - "sourceType": "domain", - "command": "book.title", - "label": "book.title", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.title", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.title()", - "expectedUiSchemaText": "Value\nbook.title()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-title-base" - }, - { - "id": "coverage:domain-book-title-example-1", - "sourceType": "domain", - "command": "book.title", - "label": "book.title example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.title", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.title()", - "expectedUiSchemaText": "Value\nbook.title()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-title-example-1" - }, - { - "id": "coverage:domain-chemicalElement-atomicNumber-base", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "label": "chemicalElement.atomicNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedUiSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-atomicNumber-base" - }, - { - "id": "coverage:domain-chemicalElement-atomicNumber-example-1", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "label": "chemicalElement.atomicNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedUiSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-atomicNumber-example-1" - }, - { - "id": "coverage:domain-chemicalElement-name-base", - "sourceType": "domain", - "command": "chemicalElement.name", - "label": "chemicalElement.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.name()", - "expectedUiSchemaText": "Value\nchemicalElement.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-name-base" - }, - { - "id": "coverage:domain-chemicalElement-name-example-1", - "sourceType": "domain", - "command": "chemicalElement.name", - "label": "chemicalElement.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.name()", - "expectedUiSchemaText": "Value\nchemicalElement.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-name-example-1" - }, - { - "id": "coverage:domain-chemicalElement-symbol-base", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "label": "chemicalElement.symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.symbol()", - "expectedUiSchemaText": "Value\nchemicalElement.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-symbol-base" - }, - { - "id": "coverage:domain-chemicalElement-symbol-example-1", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "label": "chemicalElement.symbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.symbol()", - "expectedUiSchemaText": "Value\nchemicalElement.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-symbol-example-1" - }, - { - "id": "coverage:domain-color-cmyk-base", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk()", - "expectedUiSchemaText": "Value\ncolor.cmyk()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cmyk-base" - }, - { - "id": "coverage:domain-color-cmyk-example-1", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk()", - "expectedUiSchemaText": "Value\ncolor.cmyk()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-cmyk-example-1" - }, - { - "id": "coverage:domain-color-cmyk-example-2", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.cmyk(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-cmyk-example-2" - }, - { - "id": "coverage:domain-color-cmyk-arg-format", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.cmyk(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-cmyk-arg-format" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-base", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-colorByCSSColorSpace-base" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-example-1", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-1" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-example-2", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-2" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-example-3", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(space=\"display-p3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"display-p3\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"display-p3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-3" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-arg-format", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-colorByCSSColorSpace-arg-format" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-arg-space", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace arg space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(space=\"sRGB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"sRGB\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"sRGB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["space"], - "origins": ["arg"], - "scenarioId": "domain-color-colorByCSSColorSpace-arg-space" - }, - { - "id": "coverage:domain-color-colorByCSSColorSpace-pair-format-space", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace pair format/space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"css\", space=\"sRGB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\", space=\"sRGB\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\", space=\"sRGB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["pair"], - "scenarioId": "domain-color-colorByCSSColorSpace-pair-format-space" - }, - { - "id": "coverage:domain-color-cssSupportedFunction-base", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "label": "color.cssSupportedFunction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cssSupportedFunction-base" - }, - { - "id": "coverage:domain-color-cssSupportedFunction-example-1", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "label": "color.cssSupportedFunction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-cssSupportedFunction-example-1" - }, - { - "id": "coverage:domain-color-cssSupportedSpace-base", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "label": "color.cssSupportedSpace", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cssSupportedSpace-base" - }, - { - "id": "coverage:domain-color-cssSupportedSpace-example-1", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "label": "color.cssSupportedSpace example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-cssSupportedSpace-example-1" - }, - { - "id": "coverage:domain-color-hsl-base", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl()", - "expectedUiSchemaText": "Value\ncolor.hsl()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-hsl-base" - }, - { - "id": "coverage:domain-color-hsl-example-1", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl()", - "expectedUiSchemaText": "Value\ncolor.hsl()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-1" - }, - { - "id": "coverage:domain-color-hsl-example-2", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-2" - }, - { - "id": "coverage:domain-color-hsl-example-3", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-3" - }, - { - "id": "coverage:domain-color-hsl-example-4", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-4" - }, - { - "id": "coverage:domain-color-hsl-arg-format", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-hsl-arg-format" - }, - { - "id": "coverage:domain-color-hsl-arg-includeAlpha", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl arg includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha"], - "origins": ["arg"], - "scenarioId": "domain-color-hsl-arg-includeAlpha" - }, - { - "id": "coverage:domain-color-hsl-pair-format-includeAlpha", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl pair format/includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"], - "scenarioId": "domain-color-hsl-pair-format-includeAlpha" - }, - { - "id": "coverage:domain-color-human-base", - "sourceType": "domain", - "command": "color.human", - "label": "color.human", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.human", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.human()", - "expectedUiSchemaText": "Value\ncolor.human()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-human-base" - }, - { - "id": "coverage:domain-color-human-example-1", - "sourceType": "domain", - "command": "color.human", - "label": "color.human example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.human", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.human()", - "expectedUiSchemaText": "Value\ncolor.human()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-human-example-1" - }, - { - "id": "coverage:domain-color-hwb-base", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb()", - "expectedUiSchemaText": "Value\ncolor.hwb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-hwb-base" - }, - { - "id": "coverage:domain-color-hwb-example-1", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb()", - "expectedUiSchemaText": "Value\ncolor.hwb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-hwb-example-1" - }, - { - "id": "coverage:domain-color-hwb-example-2", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.hwb(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-hwb-example-2" - }, - { - "id": "coverage:domain-color-hwb-arg-format", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hwb(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-hwb-arg-format" - }, - { - "id": "coverage:domain-color-lab-base", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab()", - "expectedUiSchemaText": "Value\ncolor.lab()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-lab-base" - }, - { - "id": "coverage:domain-color-lab-example-1", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab()", - "expectedUiSchemaText": "Value\ncolor.lab()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lab-example-1" - }, - { - "id": "coverage:domain-color-lab-example-2", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.lab(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lab-example-2" - }, - { - "id": "coverage:domain-color-lab-arg-format", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.lab(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-lab-arg-format" - }, - { - "id": "coverage:domain-color-lch-base", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch()", - "expectedUiSchemaText": "Value\ncolor.lch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-lch-base" - }, - { - "id": "coverage:domain-color-lch-example-1", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch()", - "expectedUiSchemaText": "Value\ncolor.lch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lch-example-1" - }, - { - "id": "coverage:domain-color-lch-example-2", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.lch(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lch-example-2" - }, - { - "id": "coverage:domain-color-lch-arg-format", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.lch(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-lch-arg-format" - }, - { - "id": "coverage:domain-color-rgb-base", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb()", - "expectedUiSchemaText": "Value\ncolor.rgb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-rgb-base" - }, - { - "id": "coverage:domain-color-rgb-example-1", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb()", - "expectedUiSchemaText": "Value\ncolor.rgb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-1" - }, - { - "id": "coverage:domain-color-rgb-example-2", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-2" - }, - { - "id": "coverage:domain-color-rgb-example-3", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-3" - }, - { - "id": "coverage:domain-color-rgb-example-4", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-4" - }, - { - "id": "coverage:domain-color-rgb-example-5", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-5" - }, - { - "id": "coverage:domain-color-rgb-arg-casing", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-casing" - }, - { - "id": "coverage:domain-color-rgb-arg-format", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-format" - }, - { - "id": "coverage:domain-color-rgb-arg-includeAlpha", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-includeAlpha" - }, - { - "id": "coverage:domain-color-rgb-arg-prefix", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-prefix" - }, - { - "id": "coverage:domain-color-rgb-pair-casing-format", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair casing/format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\", format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\", format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\", format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-casing-format" - }, - { - "id": "coverage:domain-color-rgb-pair-format-includeAlpha", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair format/includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-format-includeAlpha" - }, - { - "id": "coverage:domain-color-rgb-pair-includeAlpha-prefix", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair includeAlpha/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true, prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-includeAlpha-prefix" - }, - { - "id": "coverage:domain-color-space-base", - "sourceType": "domain", - "command": "color.space", - "label": "color.space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.space", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.space()", - "expectedUiSchemaText": "Value\ncolor.space()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-space-base" - }, - { - "id": "coverage:domain-color-space-example-1", - "sourceType": "domain", - "command": "color.space", - "label": "color.space example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.space", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.space()", - "expectedUiSchemaText": "Value\ncolor.space()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-space-example-1" - }, - { - "id": "coverage:domain-commerce-department-base", - "sourceType": "domain", - "command": "commerce.department", - "label": "commerce.department", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.department", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.department()", - "expectedUiSchemaText": "Value\ncommerce.department()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-department-base" - }, - { - "id": "coverage:domain-commerce-department-example-1", - "sourceType": "domain", - "command": "commerce.department", - "label": "commerce.department example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.department", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.department()", - "expectedUiSchemaText": "Value\ncommerce.department()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-department-example-1" - }, - { - "id": "coverage:domain-commerce-isbn-base", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn()", - "expectedUiSchemaText": "Value\ncommerce.isbn()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-isbn-base" - }, - { - "id": "coverage:domain-commerce-isbn-example-1", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn()", - "expectedUiSchemaText": "Value\ncommerce.isbn()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-1" - }, - { - "id": "coverage:domain-commerce-isbn-example-2", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-2" - }, - { - "id": "coverage:domain-commerce-isbn-example-3", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-3" - }, - { - "id": "coverage:domain-commerce-isbn-arg-separator", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-commerce-isbn-arg-separator" - }, - { - "id": "coverage:domain-commerce-isbn-arg-variant", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn arg variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["arg"], - "scenarioId": "domain-commerce-isbn-arg-variant" - }, - { - "id": "coverage:domain-commerce-isbn-pair-separator-variant", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn pair separator/variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\", variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\", variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\", variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["pair"], - "scenarioId": "domain-commerce-isbn-pair-separator-variant" - }, - { - "id": "coverage:domain-commerce-price-base", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price()", - "expectedUiSchemaText": "Value\ncommerce.price()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-price-base" - }, - { - "id": "coverage:domain-commerce-price-example-1", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2, max=10, min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-1" - }, - { - "id": "coverage:domain-commerce-price-example-2", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price()", - "expectedUiSchemaText": "Value\ncommerce.price()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-2" - }, - { - "id": "coverage:domain-commerce-price-example-3", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-3" - }, - { - "id": "coverage:domain-commerce-price-example-4", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-4" - }, - { - "id": "coverage:domain-commerce-price-example-5", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=10, min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-5" - }, - { - "id": "coverage:domain-commerce-price-example-6", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-6" - }, - { - "id": "coverage:domain-commerce-price-arg-dec", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-dec" - }, - { - "id": "coverage:domain-commerce-price-arg-max", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-max" - }, - { - "id": "coverage:domain-commerce-price-arg-min", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-min" - }, - { - "id": "coverage:domain-commerce-price-arg-symbol", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-symbol" - }, - { - "id": "coverage:domain-commerce-price-pair-dec-max", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair dec/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2, max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2, max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2, max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-dec-max" - }, - { - "id": "coverage:domain-commerce-price-pair-max-min", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100, min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-max-min" - }, - { - "id": "coverage:domain-commerce-price-pair-min-symbol", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair min/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "symbol"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-min-symbol" - }, - { - "id": "coverage:domain-commerce-product-base", - "sourceType": "domain", - "command": "commerce.product", - "label": "commerce.product", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.product", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.product()", - "expectedUiSchemaText": "Value\ncommerce.product()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-product-base" - }, - { - "id": "coverage:domain-commerce-product-example-1", - "sourceType": "domain", - "command": "commerce.product", - "label": "commerce.product example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.product", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.product()", - "expectedUiSchemaText": "Value\ncommerce.product()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-product-example-1" - }, - { - "id": "coverage:domain-commerce-productAdjective-base", - "sourceType": "domain", - "command": "commerce.productAdjective", - "label": "commerce.productAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productAdjective()", - "expectedUiSchemaText": "Value\ncommerce.productAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productAdjective-base" - }, - { - "id": "coverage:domain-commerce-productAdjective-example-1", - "sourceType": "domain", - "command": "commerce.productAdjective", - "label": "commerce.productAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productAdjective()", - "expectedUiSchemaText": "Value\ncommerce.productAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productAdjective-example-1" - }, - { - "id": "coverage:domain-commerce-productDescription-base", - "sourceType": "domain", - "command": "commerce.productDescription", - "label": "commerce.productDescription", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productDescription()", - "expectedUiSchemaText": "Value\ncommerce.productDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productDescription-base" - }, - { - "id": "coverage:domain-commerce-productDescription-example-1", - "sourceType": "domain", - "command": "commerce.productDescription", - "label": "commerce.productDescription example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productDescription()", - "expectedUiSchemaText": "Value\ncommerce.productDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productDescription-example-1" - }, - { - "id": "coverage:domain-commerce-productMaterial-base", - "sourceType": "domain", - "command": "commerce.productMaterial", - "label": "commerce.productMaterial", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productMaterial", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productMaterial()", - "expectedUiSchemaText": "Value\ncommerce.productMaterial()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productMaterial-base" - }, - { - "id": "coverage:domain-commerce-productMaterial-example-1", - "sourceType": "domain", - "command": "commerce.productMaterial", - "label": "commerce.productMaterial example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productMaterial", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productMaterial()", - "expectedUiSchemaText": "Value\ncommerce.productMaterial()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productMaterial-example-1" - }, - { - "id": "coverage:domain-commerce-productName-base", - "sourceType": "domain", - "command": "commerce.productName", - "label": "commerce.productName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productName()", - "expectedUiSchemaText": "Value\ncommerce.productName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productName-base" - }, - { - "id": "coverage:domain-commerce-productName-example-1", - "sourceType": "domain", - "command": "commerce.productName", - "label": "commerce.productName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productName()", - "expectedUiSchemaText": "Value\ncommerce.productName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productName-example-1" - }, - { - "id": "coverage:domain-commerce-upc-base", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc()", - "expectedUiSchemaText": "Value\ncommerce.upc()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-upc-base" - }, - { - "id": "coverage:domain-commerce-upc-example-1", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc()", - "expectedUiSchemaText": "Value\ncommerce.upc()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["example"], - "scenarioId": "domain-commerce-upc-example-1" - }, - { - "id": "coverage:domain-commerce-upc-example-2", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "(prefix=\"01234\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedUiSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["example"], - "scenarioId": "domain-commerce-upc-example-2" - }, - { - "id": "coverage:domain-commerce-upc-arg-prefix", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "(prefix=\"01234\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedUiSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-commerce-upc-arg-prefix" - }, - { - "id": "coverage:domain-company-buzzAdjective-base", - "sourceType": "domain", - "command": "company.buzzAdjective", - "label": "company.buzzAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzAdjective()", - "expectedUiSchemaText": "Value\ncompany.buzzAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzAdjective-base" - }, - { - "id": "coverage:domain-company-buzzAdjective-example-1", - "sourceType": "domain", - "command": "company.buzzAdjective", - "label": "company.buzzAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzAdjective()", - "expectedUiSchemaText": "Value\ncompany.buzzAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzAdjective-example-1" - }, - { - "id": "coverage:domain-company-buzzNoun-base", - "sourceType": "domain", - "command": "company.buzzNoun", - "label": "company.buzzNoun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzNoun()", - "expectedUiSchemaText": "Value\ncompany.buzzNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzNoun-base" - }, - { - "id": "coverage:domain-company-buzzNoun-example-1", - "sourceType": "domain", - "command": "company.buzzNoun", - "label": "company.buzzNoun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzNoun()", - "expectedUiSchemaText": "Value\ncompany.buzzNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzNoun-example-1" - }, - { - "id": "coverage:domain-company-buzzPhrase-base", - "sourceType": "domain", - "command": "company.buzzPhrase", - "label": "company.buzzPhrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzPhrase()", - "expectedUiSchemaText": "Value\ncompany.buzzPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzPhrase-base" - }, - { - "id": "coverage:domain-company-buzzPhrase-example-1", - "sourceType": "domain", - "command": "company.buzzPhrase", - "label": "company.buzzPhrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzPhrase()", - "expectedUiSchemaText": "Value\ncompany.buzzPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzPhrase-example-1" - }, - { - "id": "coverage:domain-company-buzzVerb-base", - "sourceType": "domain", - "command": "company.buzzVerb", - "label": "company.buzzVerb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzVerb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzVerb()", - "expectedUiSchemaText": "Value\ncompany.buzzVerb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzVerb-base" - }, - { - "id": "coverage:domain-company-buzzVerb-example-1", - "sourceType": "domain", - "command": "company.buzzVerb", - "label": "company.buzzVerb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzVerb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzVerb()", - "expectedUiSchemaText": "Value\ncompany.buzzVerb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzVerb-example-1" - }, - { - "id": "coverage:domain-company-catchPhrase-base", - "sourceType": "domain", - "command": "company.catchPhrase", - "label": "company.catchPhrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhrase()", - "expectedUiSchemaText": "Value\ncompany.catchPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhrase-base" - }, - { - "id": "coverage:domain-company-catchPhrase-example-1", - "sourceType": "domain", - "command": "company.catchPhrase", - "label": "company.catchPhrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhrase()", - "expectedUiSchemaText": "Value\ncompany.catchPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhrase-example-1" - }, - { - "id": "coverage:domain-company-catchPhraseAdjective-base", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "label": "company.catchPhraseAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseAdjective-base" - }, - { - "id": "coverage:domain-company-catchPhraseAdjective-example-1", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "label": "company.catchPhraseAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseAdjective-example-1" - }, - { - "id": "coverage:domain-company-catchPhraseDescriptor-base", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "label": "company.catchPhraseDescriptor", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseDescriptor-base" - }, - { - "id": "coverage:domain-company-catchPhraseDescriptor-example-1", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "label": "company.catchPhraseDescriptor example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseDescriptor-example-1" - }, - { - "id": "coverage:domain-company-catchPhraseNoun-base", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "label": "company.catchPhraseNoun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseNoun-base" - }, - { - "id": "coverage:domain-company-catchPhraseNoun-example-1", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "label": "company.catchPhraseNoun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseNoun-example-1" - }, - { - "id": "coverage:domain-company-name-base", - "sourceType": "domain", - "command": "company.name", - "label": "company.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.name()", - "expectedUiSchemaText": "Value\ncompany.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-name-base" - }, - { - "id": "coverage:domain-company-name-example-1", - "sourceType": "domain", - "command": "company.name", - "label": "company.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.name()", - "expectedUiSchemaText": "Value\ncompany.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-name-example-1" - }, - { - "id": "coverage:domain-database-collation-base", - "sourceType": "domain", - "command": "database.collation", - "label": "database.collation", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.collation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.collation()", - "expectedUiSchemaText": "Value\ndatabase.collation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-collation-base" - }, - { - "id": "coverage:domain-database-collation-example-1", - "sourceType": "domain", - "command": "database.collation", - "label": "database.collation example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.collation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.collation()", - "expectedUiSchemaText": "Value\ndatabase.collation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-collation-example-1" - }, - { - "id": "coverage:domain-database-column-base", - "sourceType": "domain", - "command": "database.column", - "label": "database.column", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.column", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.column()", - "expectedUiSchemaText": "Value\ndatabase.column()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-column-base" - }, - { - "id": "coverage:domain-database-column-example-1", - "sourceType": "domain", - "command": "database.column", - "label": "database.column example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.column", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.column()", - "expectedUiSchemaText": "Value\ndatabase.column()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-column-example-1" - }, - { - "id": "coverage:domain-database-engine-base", - "sourceType": "domain", - "command": "database.engine", - "label": "database.engine", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.engine", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.engine()", - "expectedUiSchemaText": "Value\ndatabase.engine()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-engine-base" - }, - { - "id": "coverage:domain-database-engine-example-1", - "sourceType": "domain", - "command": "database.engine", - "label": "database.engine example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.engine", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.engine()", - "expectedUiSchemaText": "Value\ndatabase.engine()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-engine-example-1" - }, - { - "id": "coverage:domain-database-mongodbObjectId-base", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "label": "database.mongodbObjectId", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedUiSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-mongodbObjectId-base" - }, - { - "id": "coverage:domain-database-mongodbObjectId-example-1", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "label": "database.mongodbObjectId example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedUiSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-mongodbObjectId-example-1" - }, - { - "id": "coverage:domain-database-type-base", - "sourceType": "domain", - "command": "database.type", - "label": "database.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.type()", - "expectedUiSchemaText": "Value\ndatabase.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-type-base" - }, - { - "id": "coverage:domain-database-type-example-1", - "sourceType": "domain", - "command": "database.type", - "label": "database.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.type()", - "expectedUiSchemaText": "Value\ndatabase.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-type-example-1" - }, - { - "id": "coverage:domain-datatype-boolean-base", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean()", - "expectedUiSchemaText": "Value\ndatatype.boolean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-datatype-boolean-base" - }, - { - "id": "coverage:domain-datatype-boolean-example-1", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean()", - "expectedUiSchemaText": "Value\ndatatype.boolean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["example"], - "scenarioId": "domain-datatype-boolean-example-1" - }, - { - "id": "coverage:domain-datatype-boolean-example-2", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "(probability=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean(probability=0.5)", - "expectedUiSchemaText": "Value\ndatatype.boolean(probability=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["example"], - "scenarioId": "domain-datatype-boolean-example-2" - }, - { - "id": "coverage:domain-datatype-boolean-arg-probability", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean arg probability", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "(probability=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean(probability=2)", - "expectedUiSchemaText": "Value\ndatatype.boolean(probability=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["arg"], - "scenarioId": "domain-datatype-boolean-arg-probability" - }, - { - "id": "coverage:domain-datatype-enum-base", - "sourceType": "domain", - "command": "datatype.enum", - "label": "datatype.enum", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.enum", - "params": "(\"active\", \"inactive\", \"pending\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.enum(\"active\", \"inactive\", \"pending\")", - "expectedUiSchemaText": "Value\nenum(\"active\", \"inactive\", \"pending\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-datatype-enum-base" - }, - { - "id": "coverage:domain-datatype-enum-arg-values", - "sourceType": "domain", - "command": "datatype.enum", - "label": "datatype.enum arg values", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.enum", - "params": "(values=\"comma-separated list\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.enum(values=\"comma-separated list\")", - "expectedUiSchemaText": "Value\nenum(values=\"comma-separated list\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["values"], - "origins": ["arg"], - "scenarioId": "domain-datatype-enum-arg-values" - }, - { - "id": "coverage:domain-date-anytime-base", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime()", - "expectedUiSchemaText": "Value\ndate.anytime()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-anytime-base" - }, - { - "id": "coverage:domain-date-anytime-example-1", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime()", - "expectedUiSchemaText": "Value\ndate.anytime()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-date-anytime-example-1" - }, - { - "id": "coverage:domain-date-anytime-example-2", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-date-anytime-example-2" - }, - { - "id": "coverage:domain-date-anytime-arg-refDate", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-anytime-arg-refDate" - }, - { - "id": "coverage:domain-date-between-base", - "sourceType": "domain", - "command": "date.between", - "label": "date.between", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(1577836800000, 1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(1577836800000, 1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(1577836800000, 1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-between-base" - }, - { - "id": "coverage:domain-date-between-example-1", - "sourceType": "domain", - "command": "date.between", - "label": "date.between example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["example"], - "scenarioId": "domain-date-between-example-1" - }, - { - "id": "coverage:domain-date-between-example-2", - "sourceType": "domain", - "command": "date.between", - "label": "date.between example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1609459200000, to=1640995200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1609459200000, to=1640995200000)", - "expectedUiSchemaText": "Value\ndate.between(from=1609459200000, to=1640995200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["example"], - "scenarioId": "domain-date-between-example-2" - }, - { - "id": "coverage:domain-date-between-arg-from", - "sourceType": "domain", - "command": "date.between", - "label": "date.between arg from", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from"], - "origins": ["arg"], - "scenarioId": "domain-date-between-arg-from" - }, - { - "id": "coverage:domain-date-between-arg-to", - "sourceType": "domain", - "command": "date.between", - "label": "date.between arg to", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["to"], - "origins": ["arg"], - "scenarioId": "domain-date-between-arg-to" - }, - { - "id": "coverage:domain-date-between-pair-from-to", - "sourceType": "domain", - "command": "date.between", - "label": "date.between pair from/to", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["pair"], - "scenarioId": "domain-date-between-pair-from-to" - }, - { - "id": "coverage:domain-date-birthdate-base", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate()", - "expectedUiSchemaText": "Value\ndate.birthdate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-birthdate-base" - }, - { - "id": "coverage:domain-date-birthdate-example-1", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=20000, max=69, min=16, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-1" - }, - { - "id": "coverage:domain-date-birthdate-example-2", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate()", - "expectedUiSchemaText": "Value\ndate.birthdate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-2" - }, - { - "id": "coverage:domain-date-birthdate-example-3", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-3" - }, - { - "id": "coverage:domain-date-birthdate-example-4", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-4" - }, - { - "id": "coverage:domain-date-birthdate-example-5", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=10, min=1)", - "expectedUiSchemaText": "Value\ndate.birthdate(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-5" - }, - { - "id": "coverage:domain-date-birthdate-example-6", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-6" - }, - { - "id": "coverage:domain-date-birthdate-arg-refDate", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-refDate" - }, - { - "id": "coverage:domain-date-birthdate-arg-max", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-max" - }, - { - "id": "coverage:domain-date-birthdate-arg-min", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(min=18, max=65, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(min=18, max=65, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(min=18, max=65, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-min" - }, - { - "id": "coverage:domain-date-birthdate-arg-mode", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg mode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(mode=\"age\", min=18, max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(mode=\"age\", min=18, max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(mode=\"age\", min=18, max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mode"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-mode" - }, - { - "id": "coverage:domain-date-birthdate-pair-refDate-max", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair refDate/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-refDate-max" - }, - { - "id": "coverage:domain-date-birthdate-pair-max-min", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-max-min" - }, - { - "id": "coverage:domain-date-birthdate-pair-min-mode", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair min/mode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(min=18, mode=\"age\", max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(min=18, mode=\"age\", max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(min=18, mode=\"age\", max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "mode"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-min-mode" - }, - { - "id": "coverage:domain-date-future-base", - "sourceType": "domain", - "command": "date.future", - "label": "date.future", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future()", - "expectedUiSchemaText": "Value\ndate.future()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-future-base" - }, - { - "id": "coverage:domain-date-future-example-1", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future()", - "expectedUiSchemaText": "Value\ndate.future()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-1" - }, - { - "id": "coverage:domain-date-future-example-2", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-2" - }, - { - "id": "coverage:domain-date-future-example-3", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(years=2)", - "expectedUiSchemaText": "Value\ndate.future(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-3" - }, - { - "id": "coverage:domain-date-future-arg-refDate", - "sourceType": "domain", - "command": "date.future", - "label": "date.future arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-future-arg-refDate" - }, - { - "id": "coverage:domain-date-future-arg-years", - "sourceType": "domain", - "command": "date.future", - "label": "date.future arg years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(years=2)", - "expectedUiSchemaText": "Value\ndate.future(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["years"], - "origins": ["arg"], - "scenarioId": "domain-date-future-arg-years" - }, - { - "id": "coverage:domain-date-future-pair-refDate-years", - "sourceType": "domain", - "command": "date.future", - "label": "date.future pair refDate/years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000, years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000, years=2)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000, years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["pair"], - "scenarioId": "domain-date-future-pair-refDate-years" - }, - { - "id": "coverage:domain-date-month-base", - "sourceType": "domain", - "command": "date.month", - "label": "date.month", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month()", - "expectedUiSchemaText": "Value\ndate.month()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-month-base" - }, - { - "id": "coverage:domain-date-month-example-1", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month()", - "expectedUiSchemaText": "Value\ndate.month()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-1" - }, - { - "id": "coverage:domain-date-month-example-2", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-2" - }, - { - "id": "coverage:domain-date-month-example-3", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(context=true)", - "expectedUiSchemaText": "Value\ndate.month(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-3" - }, - { - "id": "coverage:domain-date-month-arg-abbreviated", - "sourceType": "domain", - "command": "date.month", - "label": "date.month arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-date-month-arg-abbreviated" - }, - { - "id": "coverage:domain-date-month-arg-context", - "sourceType": "domain", - "command": "date.month", - "label": "date.month arg context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(context=true)", - "expectedUiSchemaText": "Value\ndate.month(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["context"], - "origins": ["arg"], - "scenarioId": "domain-date-month-arg-context" - }, - { - "id": "coverage:domain-date-month-pair-abbreviated-context", - "sourceType": "domain", - "command": "date.month", - "label": "date.month pair abbreviated/context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true, context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true, context=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true, context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"], - "scenarioId": "domain-date-month-pair-abbreviated-context" - }, - { - "id": "coverage:domain-date-past-base", - "sourceType": "domain", - "command": "date.past", - "label": "date.past", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past()", - "expectedUiSchemaText": "Value\ndate.past()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-past-base" - }, - { - "id": "coverage:domain-date-past-example-1", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past()", - "expectedUiSchemaText": "Value\ndate.past()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-1" - }, - { - "id": "coverage:domain-date-past-example-2", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-2" - }, - { - "id": "coverage:domain-date-past-example-3", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(years=2)", - "expectedUiSchemaText": "Value\ndate.past(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-3" - }, - { - "id": "coverage:domain-date-past-arg-refDate", - "sourceType": "domain", - "command": "date.past", - "label": "date.past arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-past-arg-refDate" - }, - { - "id": "coverage:domain-date-past-arg-years", - "sourceType": "domain", - "command": "date.past", - "label": "date.past arg years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(years=2)", - "expectedUiSchemaText": "Value\ndate.past(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["years"], - "origins": ["arg"], - "scenarioId": "domain-date-past-arg-years" - }, - { - "id": "coverage:domain-date-past-pair-refDate-years", - "sourceType": "domain", - "command": "date.past", - "label": "date.past pair refDate/years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000, years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000, years=2)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000, years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["pair"], - "scenarioId": "domain-date-past-pair-refDate-years" - }, - { - "id": "coverage:domain-date-recent-base", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent()", - "expectedUiSchemaText": "Value\ndate.recent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-recent-base" - }, - { - "id": "coverage:domain-date-recent-example-1", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent()", - "expectedUiSchemaText": "Value\ndate.recent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-1" - }, - { - "id": "coverage:domain-date-recent-example-2", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7)", - "expectedUiSchemaText": "Value\ndate.recent(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-2" - }, - { - "id": "coverage:domain-date-recent-example-3", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-3" - }, - { - "id": "coverage:domain-date-recent-arg-days", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent arg days", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7)", - "expectedUiSchemaText": "Value\ndate.recent(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days"], - "origins": ["arg"], - "scenarioId": "domain-date-recent-arg-days" - }, - { - "id": "coverage:domain-date-recent-arg-refDate", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-recent-arg-refDate" - }, - { - "id": "coverage:domain-date-recent-pair-days-refDate", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent pair days/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7, refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7, refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(days=7, refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-date-recent-pair-days-refDate" - }, - { - "id": "coverage:domain-date-soon-base", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon()", - "expectedUiSchemaText": "Value\ndate.soon()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-soon-base" - }, - { - "id": "coverage:domain-date-soon-example-1", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon()", - "expectedUiSchemaText": "Value\ndate.soon()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-1" - }, - { - "id": "coverage:domain-date-soon-example-2", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7)", - "expectedUiSchemaText": "Value\ndate.soon(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-2" - }, - { - "id": "coverage:domain-date-soon-example-3", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-3" - }, - { - "id": "coverage:domain-date-soon-arg-days", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon arg days", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7)", - "expectedUiSchemaText": "Value\ndate.soon(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days"], - "origins": ["arg"], - "scenarioId": "domain-date-soon-arg-days" - }, - { - "id": "coverage:domain-date-soon-arg-refDate", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-soon-arg-refDate" - }, - { - "id": "coverage:domain-date-soon-pair-days-refDate", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon pair days/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7, refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7, refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(days=7, refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-date-soon-pair-days-refDate" - }, - { - "id": "coverage:domain-date-timeZone-base", - "sourceType": "domain", - "command": "date.timeZone", - "label": "date.timeZone", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.timeZone()", - "expectedUiSchemaText": "Value\ndate.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-timeZone-base" - }, - { - "id": "coverage:domain-date-timeZone-example-1", - "sourceType": "domain", - "command": "date.timeZone", - "label": "date.timeZone example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.timeZone()", - "expectedUiSchemaText": "Value\ndate.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-date-timeZone-example-1" - }, - { - "id": "coverage:domain-date-weekday-base", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday()", - "expectedUiSchemaText": "Value\ndate.weekday()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-weekday-base" - }, - { - "id": "coverage:domain-date-weekday-example-1", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday()", - "expectedUiSchemaText": "Value\ndate.weekday()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-1" - }, - { - "id": "coverage:domain-date-weekday-example-2", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-2" - }, - { - "id": "coverage:domain-date-weekday-example-3", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-3" - }, - { - "id": "coverage:domain-date-weekday-arg-abbreviated", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-date-weekday-arg-abbreviated" - }, - { - "id": "coverage:domain-date-weekday-arg-context", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday arg context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["context"], - "origins": ["arg"], - "scenarioId": "domain-date-weekday-arg-context" - }, - { - "id": "coverage:domain-date-weekday-pair-abbreviated-context", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday pair abbreviated/context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true, context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true, context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true, context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"], - "scenarioId": "domain-date-weekday-pair-abbreviated-context" - }, - { - "id": "coverage:domain-finance-accountName-base", - "sourceType": "domain", - "command": "finance.accountName", - "label": "finance.accountName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountName()", - "expectedUiSchemaText": "Value\nfinance.accountName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-accountName-base" - }, - { - "id": "coverage:domain-finance-accountName-example-1", - "sourceType": "domain", - "command": "finance.accountName", - "label": "finance.accountName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountName()", - "expectedUiSchemaText": "Value\nfinance.accountName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-accountName-example-1" - }, - { - "id": "coverage:domain-finance-accountNumber-base", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber()", - "expectedUiSchemaText": "Value\nfinance.accountNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-accountNumber-base" - }, - { - "id": "coverage:domain-finance-accountNumber-example-1", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber()", - "expectedUiSchemaText": "Value\nfinance.accountNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-accountNumber-example-1" - }, - { - "id": "coverage:domain-finance-accountNumber-example-2", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber(length=5)", - "expectedUiSchemaText": "Value\nfinance.accountNumber(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-accountNumber-example-2" - }, - { - "id": "coverage:domain-finance-accountNumber-arg-length", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber(length=4)", - "expectedUiSchemaText": "Value\nfinance.accountNumber(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-finance-accountNumber-arg-length" - }, - { - "id": "coverage:domain-finance-amount-base", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount()", - "expectedUiSchemaText": "Value\nfinance.amount()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-amount-base" - }, - { - "id": "coverage:domain-finance-amount-example-1", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount()", - "expectedUiSchemaText": "Value\nfinance.amount()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-1" - }, - { - "id": "coverage:domain-finance-amount-example-2", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-2" - }, - { - "id": "coverage:domain-finance-amount-example-3", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-3" - }, - { - "id": "coverage:domain-finance-amount-example-4", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-4" - }, - { - "id": "coverage:domain-finance-amount-example-5", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=10, min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-5" - }, - { - "id": "coverage:domain-finance-amount-example-6", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-6" - }, - { - "id": "coverage:domain-finance-amount-arg-autoFormat", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg autoFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-autoFormat" - }, - { - "id": "coverage:domain-finance-amount-arg-dec", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-dec" - }, - { - "id": "coverage:domain-finance-amount-arg-max", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-max" - }, - { - "id": "coverage:domain-finance-amount-arg-min", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-min" - }, - { - "id": "coverage:domain-finance-amount-arg-symbol", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-symbol" - }, - { - "id": "coverage:domain-finance-amount-pair-autoFormat-dec", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair autoFormat/dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true, dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true, dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true, dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-autoFormat-dec" - }, - { - "id": "coverage:domain-finance-amount-pair-dec-max", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair dec/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2, max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2, max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2, max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-dec-max" - }, - { - "id": "coverage:domain-finance-amount-pair-max-min", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100, min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-max-min" - }, - { - "id": "coverage:domain-finance-amount-pair-min-symbol", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair min/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "symbol"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-min-symbol" - }, - { - "id": "coverage:domain-finance-bic-base", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic()", - "expectedUiSchemaText": "Value\nfinance.bic()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-bic-base" - }, - { - "id": "coverage:domain-finance-bic-example-1", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic()", - "expectedUiSchemaText": "Value\nfinance.bic()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["example"], - "scenarioId": "domain-finance-bic-example-1" - }, - { - "id": "coverage:domain-finance-bic-example-2", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "(includeBranchCode=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedUiSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["example"], - "scenarioId": "domain-finance-bic-example-2" - }, - { - "id": "coverage:domain-finance-bic-arg-includeBranchCode", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic arg includeBranchCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "(includeBranchCode=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedUiSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["arg"], - "scenarioId": "domain-finance-bic-arg-includeBranchCode" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-base", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-bitcoinAddress-base" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-example-1", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-1" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-example-2", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-2" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-example-3", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-3" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-arg-type", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress arg type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type"], - "origins": ["arg"], - "scenarioId": "domain-finance-bitcoinAddress-arg-type" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-arg-network", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress arg network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["network"], - "origins": ["arg"], - "scenarioId": "domain-finance-bitcoinAddress-arg-network" - }, - { - "id": "coverage:domain-finance-bitcoinAddress-pair-type-network", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress pair type/network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\", network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\", network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\", network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["pair"], - "scenarioId": "domain-finance-bitcoinAddress-pair-type-network" - }, - { - "id": "coverage:domain-finance-creditCardCVV-base", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "label": "finance.creditCardCVV", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardCVV()", - "expectedUiSchemaText": "Value\nfinance.creditCardCVV()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardCVV-base" - }, - { - "id": "coverage:domain-finance-creditCardCVV-example-1", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "label": "finance.creditCardCVV example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardCVV()", - "expectedUiSchemaText": "Value\nfinance.creditCardCVV()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardCVV-example-1" - }, - { - "id": "coverage:domain-finance-creditCardIssuer-base", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "label": "finance.creditCardIssuer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedUiSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardIssuer-base" - }, - { - "id": "coverage:domain-finance-creditCardIssuer-example-1", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "label": "finance.creditCardIssuer example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedUiSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardIssuer-example-1" - }, - { - "id": "coverage:domain-finance-creditCardNumber-base", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber()", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardNumber-base" - }, - { - "id": "coverage:domain-finance-creditCardNumber-example-1", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber()", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardNumber-example-1" - }, - { - "id": "coverage:domain-finance-creditCardNumber-example-2", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "(issuer=\"Visa\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber(issuer=\"Visa\")", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber(issuer=\"Visa\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardNumber-example-2" - }, - { - "id": "coverage:domain-finance-creditCardNumber-arg-issuer", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber arg issuer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "(issuer=\"finance-creditCardNumber-issuer\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber(issuer=\"finance-creditCardNumber-issuer\")", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber(issuer=\"finance-creditCardNumber-issuer\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["arg"], - "scenarioId": "domain-finance-creditCardNumber-arg-issuer" - }, - { - "id": "coverage:domain-finance-currencyCode-base", - "sourceType": "domain", - "command": "finance.currencyCode", - "label": "finance.currencyCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyCode()", - "expectedUiSchemaText": "Value\nfinance.currencyCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyCode-base" - }, - { - "id": "coverage:domain-finance-currencyCode-example-1", - "sourceType": "domain", - "command": "finance.currencyCode", - "label": "finance.currencyCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyCode()", - "expectedUiSchemaText": "Value\nfinance.currencyCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyCode-example-1" - }, - { - "id": "coverage:domain-finance-currencyName-base", - "sourceType": "domain", - "command": "finance.currencyName", - "label": "finance.currencyName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyName()", - "expectedUiSchemaText": "Value\nfinance.currencyName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyName-base" - }, - { - "id": "coverage:domain-finance-currencyName-example-1", - "sourceType": "domain", - "command": "finance.currencyName", - "label": "finance.currencyName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyName()", - "expectedUiSchemaText": "Value\nfinance.currencyName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyName-example-1" - }, - { - "id": "coverage:domain-finance-currencyNumericCode-base", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "label": "finance.currencyNumericCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedUiSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyNumericCode-base" - }, - { - "id": "coverage:domain-finance-currencyNumericCode-example-1", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "label": "finance.currencyNumericCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedUiSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyNumericCode-example-1" - }, - { - "id": "coverage:domain-finance-currencySymbol-base", - "sourceType": "domain", - "command": "finance.currencySymbol", - "label": "finance.currencySymbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencySymbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencySymbol()", - "expectedUiSchemaText": "Value\nfinance.currencySymbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencySymbol-base" - }, - { - "id": "coverage:domain-finance-currencySymbol-example-1", - "sourceType": "domain", - "command": "finance.currencySymbol", - "label": "finance.currencySymbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencySymbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencySymbol()", - "expectedUiSchemaText": "Value\nfinance.currencySymbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencySymbol-example-1" - }, - { - "id": "coverage:domain-finance-ethereumAddress-base", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "label": "finance.ethereumAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.ethereumAddress()", - "expectedUiSchemaText": "Value\nfinance.ethereumAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-ethereumAddress-base" - }, - { - "id": "coverage:domain-finance-ethereumAddress-example-1", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "label": "finance.ethereumAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.ethereumAddress()", - "expectedUiSchemaText": "Value\nfinance.ethereumAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-ethereumAddress-example-1" - }, - { - "id": "coverage:domain-finance-iban-base", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban()", - "expectedUiSchemaText": "Value\nfinance.iban()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-iban-base" - }, - { - "id": "coverage:domain-finance-iban-example-1", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban()", - "expectedUiSchemaText": "Value\nfinance.iban()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-1" - }, - { - "id": "coverage:domain-finance-iban-example-2", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-2" - }, - { - "id": "coverage:domain-finance-iban-example-3", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-3" - }, - { - "id": "coverage:domain-finance-iban-arg-countryCode", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban arg countryCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode"], - "origins": ["arg"], - "scenarioId": "domain-finance-iban-arg-countryCode" - }, - { - "id": "coverage:domain-finance-iban-arg-formatted", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban arg formatted", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["formatted"], - "origins": ["arg"], - "scenarioId": "domain-finance-iban-arg-formatted" - }, - { - "id": "coverage:domain-finance-iban-pair-countryCode-formatted", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban pair countryCode/formatted", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\", formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\", formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\", formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["pair"], - "scenarioId": "domain-finance-iban-pair-countryCode-formatted" - }, - { - "id": "coverage:domain-finance-litecoinAddress-base", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "label": "finance.litecoinAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.litecoinAddress()", - "expectedUiSchemaText": "Value\nfinance.litecoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-litecoinAddress-base" - }, - { - "id": "coverage:domain-finance-litecoinAddress-example-1", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "label": "finance.litecoinAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.litecoinAddress()", - "expectedUiSchemaText": "Value\nfinance.litecoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-litecoinAddress-example-1" - }, - { - "id": "coverage:domain-finance-pin-base", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin()", - "expectedUiSchemaText": "Value\nfinance.pin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-pin-base" - }, - { - "id": "coverage:domain-finance-pin-example-1", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin()", - "expectedUiSchemaText": "Value\nfinance.pin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-pin-example-1" - }, - { - "id": "coverage:domain-finance-pin-example-2", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin(length=5)", - "expectedUiSchemaText": "Value\nfinance.pin(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-pin-example-2" - }, - { - "id": "coverage:domain-finance-pin-arg-length", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin(length=4)", - "expectedUiSchemaText": "Value\nfinance.pin(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-finance-pin-arg-length" - }, - { - "id": "coverage:domain-finance-routingNumber-base", - "sourceType": "domain", - "command": "finance.routingNumber", - "label": "finance.routingNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.routingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.routingNumber()", - "expectedUiSchemaText": "Value\nfinance.routingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-routingNumber-base" - }, - { - "id": "coverage:domain-finance-routingNumber-example-1", - "sourceType": "domain", - "command": "finance.routingNumber", - "label": "finance.routingNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.routingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.routingNumber()", - "expectedUiSchemaText": "Value\nfinance.routingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-routingNumber-example-1" - }, - { - "id": "coverage:domain-finance-transactionDescription-base", - "sourceType": "domain", - "command": "finance.transactionDescription", - "label": "finance.transactionDescription", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionDescription()", - "expectedUiSchemaText": "Value\nfinance.transactionDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-transactionDescription-base" - }, - { - "id": "coverage:domain-finance-transactionDescription-example-1", - "sourceType": "domain", - "command": "finance.transactionDescription", - "label": "finance.transactionDescription example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionDescription()", - "expectedUiSchemaText": "Value\nfinance.transactionDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-transactionDescription-example-1" - }, - { - "id": "coverage:domain-finance-transactionType-base", - "sourceType": "domain", - "command": "finance.transactionType", - "label": "finance.transactionType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionType()", - "expectedUiSchemaText": "Value\nfinance.transactionType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-transactionType-base" - }, - { - "id": "coverage:domain-finance-transactionType-example-1", - "sourceType": "domain", - "command": "finance.transactionType", - "label": "finance.transactionType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionType()", - "expectedUiSchemaText": "Value\nfinance.transactionType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-transactionType-example-1" - }, - { - "id": "coverage:domain-food-adjective-base", - "sourceType": "domain", - "command": "food.adjective", - "label": "food.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.adjective()", - "expectedUiSchemaText": "Value\nfood.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-adjective-base" - }, - { - "id": "coverage:domain-food-adjective-example-1", - "sourceType": "domain", - "command": "food.adjective", - "label": "food.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.adjective()", - "expectedUiSchemaText": "Value\nfood.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-adjective-example-1" - }, - { - "id": "coverage:domain-food-description-base", - "sourceType": "domain", - "command": "food.description", - "label": "food.description", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.description", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.description()", - "expectedUiSchemaText": "Value\nfood.description()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-description-base" - }, - { - "id": "coverage:domain-food-description-example-1", - "sourceType": "domain", - "command": "food.description", - "label": "food.description example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.description", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.description()", - "expectedUiSchemaText": "Value\nfood.description()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-description-example-1" - }, - { - "id": "coverage:domain-food-dish-base", - "sourceType": "domain", - "command": "food.dish", - "label": "food.dish", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.dish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.dish()", - "expectedUiSchemaText": "Value\nfood.dish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-dish-base" - }, - { - "id": "coverage:domain-food-dish-example-1", - "sourceType": "domain", - "command": "food.dish", - "label": "food.dish example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.dish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.dish()", - "expectedUiSchemaText": "Value\nfood.dish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-dish-example-1" - }, - { - "id": "coverage:domain-food-ethnicCategory-base", - "sourceType": "domain", - "command": "food.ethnicCategory", - "label": "food.ethnicCategory", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ethnicCategory", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ethnicCategory()", - "expectedUiSchemaText": "Value\nfood.ethnicCategory()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-ethnicCategory-base" - }, - { - "id": "coverage:domain-food-ethnicCategory-example-1", - "sourceType": "domain", - "command": "food.ethnicCategory", - "label": "food.ethnicCategory example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ethnicCategory", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ethnicCategory()", - "expectedUiSchemaText": "Value\nfood.ethnicCategory()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-ethnicCategory-example-1" - }, - { - "id": "coverage:domain-food-fruit-base", - "sourceType": "domain", - "command": "food.fruit", - "label": "food.fruit", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.fruit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.fruit()", - "expectedUiSchemaText": "Value\nfood.fruit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-fruit-base" - }, - { - "id": "coverage:domain-food-fruit-example-1", - "sourceType": "domain", - "command": "food.fruit", - "label": "food.fruit example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.fruit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.fruit()", - "expectedUiSchemaText": "Value\nfood.fruit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-fruit-example-1" - }, - { - "id": "coverage:domain-food-ingredient-base", - "sourceType": "domain", - "command": "food.ingredient", - "label": "food.ingredient", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ingredient", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ingredient()", - "expectedUiSchemaText": "Value\nfood.ingredient()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-ingredient-base" - }, - { - "id": "coverage:domain-food-ingredient-example-1", - "sourceType": "domain", - "command": "food.ingredient", - "label": "food.ingredient example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ingredient", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ingredient()", - "expectedUiSchemaText": "Value\nfood.ingredient()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-ingredient-example-1" - }, - { - "id": "coverage:domain-food-meat-base", - "sourceType": "domain", - "command": "food.meat", - "label": "food.meat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.meat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.meat()", - "expectedUiSchemaText": "Value\nfood.meat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-meat-base" - }, - { - "id": "coverage:domain-food-meat-example-1", - "sourceType": "domain", - "command": "food.meat", - "label": "food.meat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.meat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.meat()", - "expectedUiSchemaText": "Value\nfood.meat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-meat-example-1" - }, - { - "id": "coverage:domain-food-spice-base", - "sourceType": "domain", - "command": "food.spice", - "label": "food.spice", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.spice", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.spice()", - "expectedUiSchemaText": "Value\nfood.spice()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-spice-base" - }, - { - "id": "coverage:domain-food-spice-example-1", - "sourceType": "domain", - "command": "food.spice", - "label": "food.spice example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.spice", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.spice()", - "expectedUiSchemaText": "Value\nfood.spice()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-spice-example-1" - }, - { - "id": "coverage:domain-food-vegetable-base", - "sourceType": "domain", - "command": "food.vegetable", - "label": "food.vegetable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.vegetable", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.vegetable()", - "expectedUiSchemaText": "Value\nfood.vegetable()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-vegetable-base" - }, - { - "id": "coverage:domain-food-vegetable-example-1", - "sourceType": "domain", - "command": "food.vegetable", - "label": "food.vegetable example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.vegetable", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.vegetable()", - "expectedUiSchemaText": "Value\nfood.vegetable()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-vegetable-example-1" - }, - { - "id": "coverage:domain-git-branch-base", - "sourceType": "domain", - "command": "git.branch", - "label": "git.branch", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.branch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.branch()", - "expectedUiSchemaText": "Value\ngit.branch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-branch-base" - }, - { - "id": "coverage:domain-git-branch-example-1", - "sourceType": "domain", - "command": "git.branch", - "label": "git.branch example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.branch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.branch()", - "expectedUiSchemaText": "Value\ngit.branch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-branch-example-1" - }, - { - "id": "coverage:domain-git-commitDate-base", - "sourceType": "domain", - "command": "git.commitDate", - "label": "git.commitDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitDate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitDate()", - "expectedUiSchemaText": "Value\ngit.commitDate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitDate-base" - }, - { - "id": "coverage:domain-git-commitDate-example-1", - "sourceType": "domain", - "command": "git.commitDate", - "label": "git.commitDate example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitDate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitDate()", - "expectedUiSchemaText": "Value\ngit.commitDate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitDate-example-1" - }, - { - "id": "coverage:domain-git-commitEntry-base", - "sourceType": "domain", - "command": "git.commitEntry", - "label": "git.commitEntry", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitEntry", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitEntry()", - "expectedUiSchemaText": "Value\ngit.commitEntry()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitEntry-base" - }, - { - "id": "coverage:domain-git-commitEntry-example-1", - "sourceType": "domain", - "command": "git.commitEntry", - "label": "git.commitEntry example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitEntry", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitEntry()", - "expectedUiSchemaText": "Value\ngit.commitEntry()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitEntry-example-1" - }, - { - "id": "coverage:domain-git-commitMessage-base", - "sourceType": "domain", - "command": "git.commitMessage", - "label": "git.commitMessage", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitMessage", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitMessage()", - "expectedUiSchemaText": "Value\ngit.commitMessage()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitMessage-base" - }, - { - "id": "coverage:domain-git-commitMessage-example-1", - "sourceType": "domain", - "command": "git.commitMessage", - "label": "git.commitMessage example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitMessage", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitMessage()", - "expectedUiSchemaText": "Value\ngit.commitMessage()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitMessage-example-1" - }, - { - "id": "coverage:domain-git-commitSha-base", - "sourceType": "domain", - "command": "git.commitSha", - "label": "git.commitSha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitSha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitSha()", - "expectedUiSchemaText": "Value\ngit.commitSha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitSha-base" - }, - { - "id": "coverage:domain-git-commitSha-example-1", - "sourceType": "domain", - "command": "git.commitSha", - "label": "git.commitSha example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitSha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitSha()", - "expectedUiSchemaText": "Value\ngit.commitSha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitSha-example-1" - }, - { - "id": "coverage:domain-hacker-abbreviation-base", - "sourceType": "domain", - "command": "hacker.abbreviation", - "label": "hacker.abbreviation", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.abbreviation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.abbreviation()", - "expectedUiSchemaText": "Value\nhacker.abbreviation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-abbreviation-base" - }, - { - "id": "coverage:domain-hacker-abbreviation-example-1", - "sourceType": "domain", - "command": "hacker.abbreviation", - "label": "hacker.abbreviation example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.abbreviation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.abbreviation()", - "expectedUiSchemaText": "Value\nhacker.abbreviation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-abbreviation-example-1" - }, - { - "id": "coverage:domain-hacker-adjective-base", - "sourceType": "domain", - "command": "hacker.adjective", - "label": "hacker.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.adjective()", - "expectedUiSchemaText": "Value\nhacker.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-adjective-base" - }, - { - "id": "coverage:domain-hacker-adjective-example-1", - "sourceType": "domain", - "command": "hacker.adjective", - "label": "hacker.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.adjective()", - "expectedUiSchemaText": "Value\nhacker.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-adjective-example-1" - }, - { - "id": "coverage:domain-hacker-ingverb-base", - "sourceType": "domain", - "command": "hacker.ingverb", - "label": "hacker.ingverb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.ingverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.ingverb()", - "expectedUiSchemaText": "Value\nhacker.ingverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-ingverb-base" - }, - { - "id": "coverage:domain-hacker-ingverb-example-1", - "sourceType": "domain", - "command": "hacker.ingverb", - "label": "hacker.ingverb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.ingverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.ingverb()", - "expectedUiSchemaText": "Value\nhacker.ingverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-ingverb-example-1" - }, - { - "id": "coverage:domain-hacker-noun-base", - "sourceType": "domain", - "command": "hacker.noun", - "label": "hacker.noun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.noun()", - "expectedUiSchemaText": "Value\nhacker.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-noun-base" - }, - { - "id": "coverage:domain-hacker-noun-example-1", - "sourceType": "domain", - "command": "hacker.noun", - "label": "hacker.noun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.noun()", - "expectedUiSchemaText": "Value\nhacker.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-noun-example-1" - }, - { - "id": "coverage:domain-hacker-phrase-base", - "sourceType": "domain", - "command": "hacker.phrase", - "label": "hacker.phrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.phrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.phrase()", - "expectedUiSchemaText": "Value\nhacker.phrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-phrase-base" - }, - { - "id": "coverage:domain-hacker-phrase-example-1", - "sourceType": "domain", - "command": "hacker.phrase", - "label": "hacker.phrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.phrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.phrase()", - "expectedUiSchemaText": "Value\nhacker.phrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-phrase-example-1" - }, - { - "id": "coverage:domain-hacker-verb-base", - "sourceType": "domain", - "command": "hacker.verb", - "label": "hacker.verb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.verb()", - "expectedUiSchemaText": "Value\nhacker.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-verb-base" - }, - { - "id": "coverage:domain-hacker-verb-example-1", - "sourceType": "domain", - "command": "hacker.verb", - "label": "hacker.verb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.verb()", - "expectedUiSchemaText": "Value\nhacker.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-verb-example-1" - }, - { - "id": "coverage:domain-image-avatar-base", - "sourceType": "domain", - "command": "image.avatar", - "label": "image.avatar", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatar", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatar()", - "expectedUiSchemaText": "Value\nimage.avatar()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-avatar-base" - }, - { - "id": "coverage:domain-image-avatar-example-1", - "sourceType": "domain", - "command": "image.avatar", - "label": "image.avatar example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatar", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatar()", - "expectedUiSchemaText": "Value\nimage.avatar()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-avatar-example-1" - }, - { - "id": "coverage:domain-image-avatarGitHub-base", - "sourceType": "domain", - "command": "image.avatarGitHub", - "label": "image.avatarGitHub", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarGitHub", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarGitHub()", - "expectedUiSchemaText": "Value\nimage.avatarGitHub()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-avatarGitHub-base" - }, - { - "id": "coverage:domain-image-avatarGitHub-example-1", - "sourceType": "domain", - "command": "image.avatarGitHub", - "label": "image.avatarGitHub example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarGitHub", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarGitHub()", - "expectedUiSchemaText": "Value\nimage.avatarGitHub()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-avatarGitHub-example-1" - }, - { - "id": "coverage:domain-image-dataUri-base", - "sourceType": "domain", - "command": "image.dataUri", - "label": "image.dataUri", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.dataUri", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.dataUri()", - "expectedUiSchemaText": "Value\nimage.dataUri()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-dataUri-base" - }, - { - "id": "coverage:domain-image-dataUri-example-1", - "sourceType": "domain", - "command": "image.dataUri", - "label": "image.dataUri example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.dataUri", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.dataUri()", - "expectedUiSchemaText": "Value\nimage.dataUri()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-dataUri-example-1" - }, - { - "id": "coverage:domain-image-personPortrait-base", - "sourceType": "domain", - "command": "image.personPortrait", - "label": "image.personPortrait", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.personPortrait", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.personPortrait()", - "expectedUiSchemaText": "Value\nimage.personPortrait()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-personPortrait-base" - }, - { - "id": "coverage:domain-image-personPortrait-example-1", - "sourceType": "domain", - "command": "image.personPortrait", - "label": "image.personPortrait example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.personPortrait", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.personPortrait()", - "expectedUiSchemaText": "Value\nimage.personPortrait()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-personPortrait-example-1" - }, - { - "id": "coverage:domain-image-url-base", - "sourceType": "domain", - "command": "image.url", - "label": "image.url", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url()", - "expectedUiSchemaText": "Value\nimage.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-url-base" - }, - { - "id": "coverage:domain-image-url-example-1", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url()", - "expectedUiSchemaText": "Value\nimage.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-1" - }, - { - "id": "coverage:domain-image-url-example-2", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=1)", - "expectedUiSchemaText": "Value\nimage.url(height=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-2" - }, - { - "id": "coverage:domain-image-url-example-3", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(width=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(width=1)", - "expectedUiSchemaText": "Value\nimage.url(width=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-3" - }, - { - "id": "coverage:domain-image-url-arg-height", - "sourceType": "domain", - "command": "image.url", - "label": "image.url arg height", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=2)", - "expectedUiSchemaText": "Value\nimage.url(height=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height"], - "origins": ["arg"], - "scenarioId": "domain-image-url-arg-height" - }, - { - "id": "coverage:domain-image-url-arg-width", - "sourceType": "domain", - "command": "image.url", - "label": "image.url arg width", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(width=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(width=3)", - "expectedUiSchemaText": "Value\nimage.url(width=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["width"], - "origins": ["arg"], - "scenarioId": "domain-image-url-arg-width" - }, - { - "id": "coverage:domain-image-url-pair-height-width", - "sourceType": "domain", - "command": "image.url", - "label": "image.url pair height/width", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=2, width=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=2, width=3)", - "expectedUiSchemaText": "Value\nimage.url(height=2, width=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["pair"], - "scenarioId": "domain-image-url-pair-height-width" - }, - { - "id": "coverage:domain-image-urlPicsumPhotos-base", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "label": "image.urlPicsumPhotos", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedUiSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-urlPicsumPhotos-base" - }, - { - "id": "coverage:domain-image-urlPicsumPhotos-example-1", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "label": "image.urlPicsumPhotos example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedUiSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-urlPicsumPhotos-example-1" - }, - { - "id": "coverage:domain-internet-displayName-base", - "sourceType": "domain", - "command": "internet.displayName", - "label": "internet.displayName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.displayName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.displayName()", - "expectedUiSchemaText": "Value\ninternet.displayName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-displayName-base" - }, - { - "id": "coverage:domain-internet-displayName-example-1", - "sourceType": "domain", - "command": "internet.displayName", - "label": "internet.displayName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.displayName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.displayName()", - "expectedUiSchemaText": "Value\ninternet.displayName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-displayName-example-1" - }, - { - "id": "coverage:domain-internet-domainName-base", - "sourceType": "domain", - "command": "internet.domainName", - "label": "internet.domainName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainName()", - "expectedUiSchemaText": "Value\ninternet.domainName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainName-base" - }, - { - "id": "coverage:domain-internet-domainName-example-1", - "sourceType": "domain", - "command": "internet.domainName", - "label": "internet.domainName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainName()", - "expectedUiSchemaText": "Value\ninternet.domainName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainName-example-1" - }, - { - "id": "coverage:domain-internet-domainSuffix-base", - "sourceType": "domain", - "command": "internet.domainSuffix", - "label": "internet.domainSuffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainSuffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainSuffix()", - "expectedUiSchemaText": "Value\ninternet.domainSuffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainSuffix-base" - }, - { - "id": "coverage:domain-internet-domainSuffix-example-1", - "sourceType": "domain", - "command": "internet.domainSuffix", - "label": "internet.domainSuffix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainSuffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainSuffix()", - "expectedUiSchemaText": "Value\ninternet.domainSuffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainSuffix-example-1" - }, - { - "id": "coverage:domain-internet-domainWord-base", - "sourceType": "domain", - "command": "internet.domainWord", - "label": "internet.domainWord", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainWord", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainWord()", - "expectedUiSchemaText": "Value\ninternet.domainWord()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainWord-base" - }, - { - "id": "coverage:domain-internet-domainWord-example-1", - "sourceType": "domain", - "command": "internet.domainWord", - "label": "internet.domainWord example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainWord", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainWord()", - "expectedUiSchemaText": "Value\ninternet.domainWord()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainWord-example-1" - }, - { - "id": "coverage:domain-internet-email-base", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email()", - "expectedUiSchemaText": "Value\ninternet.email()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-email-base" - }, - { - "id": "coverage:domain-internet-email-example-1", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email()", - "expectedUiSchemaText": "Value\ninternet.email()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-1" - }, - { - "id": "coverage:domain-internet-email-example-2", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-2" - }, - { - "id": "coverage:domain-internet-email-example-3", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-3" - }, - { - "id": "coverage:domain-internet-email-example-4", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-4" - }, - { - "id": "coverage:domain-internet-email-example-5", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-5" - }, - { - "id": "coverage:domain-internet-email-arg-allowSpecialCharacters", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg allowSpecialCharacters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-allowSpecialCharacters" - }, - { - "id": "coverage:domain-internet-email-arg-firstName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-firstName" - }, - { - "id": "coverage:domain-internet-email-arg-lastName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-lastName" - }, - { - "id": "coverage:domain-internet-email-arg-provider", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg provider", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["provider"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-provider" - }, - { - "id": "coverage:domain-internet-email-pair-allowSpecialCharacters-firstName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair allowSpecialCharacters/firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true, firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true, firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true, firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-allowSpecialCharacters-firstName" - }, - { - "id": "coverage:domain-internet-email-pair-firstName-lastName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair firstName/lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\", lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-firstName-lastName" - }, - { - "id": "coverage:domain-internet-email-pair-lastName-provider", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair lastName/provider", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\", provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\", provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\", provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName", "provider"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-lastName-provider" - }, - { - "id": "coverage:domain-internet-emoji-base", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji()", - "expectedUiSchemaText": "Value\ninternet.emoji()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-emoji-base" - }, - { - "id": "coverage:domain-internet-emoji-example-1", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji()", - "expectedUiSchemaText": "Value\ninternet.emoji()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["example"], - "scenarioId": "domain-internet-emoji-example-1" - }, - { - "id": "coverage:domain-internet-emoji-example-2", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "(types=[\"food\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedUiSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["example"], - "scenarioId": "domain-internet-emoji-example-2" - }, - { - "id": "coverage:domain-internet-emoji-arg-types", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji arg types", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "(types=[\"food\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedUiSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["arg"], - "scenarioId": "domain-internet-emoji-arg-types" - }, - { - "id": "coverage:domain-internet-exampleEmail-base", - "sourceType": "domain", - "command": "internet.exampleEmail", - "label": "internet.exampleEmail", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.exampleEmail", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.exampleEmail()", - "expectedUiSchemaText": "Value\ninternet.exampleEmail()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-exampleEmail-base" - }, - { - "id": "coverage:domain-internet-exampleEmail-example-1", - "sourceType": "domain", - "command": "internet.exampleEmail", - "label": "internet.exampleEmail example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.exampleEmail", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.exampleEmail()", - "expectedUiSchemaText": "Value\ninternet.exampleEmail()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-exampleEmail-example-1" - }, - { - "id": "coverage:domain-internet-httpMethod-base", - "sourceType": "domain", - "command": "internet.httpMethod", - "label": "internet.httpMethod", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpMethod", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpMethod()", - "expectedUiSchemaText": "Value\ninternet.httpMethod()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-httpMethod-base" - }, - { - "id": "coverage:domain-internet-httpMethod-example-1", - "sourceType": "domain", - "command": "internet.httpMethod", - "label": "internet.httpMethod example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpMethod", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpMethod()", - "expectedUiSchemaText": "Value\ninternet.httpMethod()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-httpMethod-example-1" - }, - { - "id": "coverage:domain-internet-httpStatusCode-base", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "label": "internet.httpStatusCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpStatusCode()", - "expectedUiSchemaText": "Value\ninternet.httpStatusCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-httpStatusCode-base" - }, - { - "id": "coverage:domain-internet-httpStatusCode-example-1", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "label": "internet.httpStatusCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpStatusCode()", - "expectedUiSchemaText": "Value\ninternet.httpStatusCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-httpStatusCode-example-1" - }, - { - "id": "coverage:domain-internet-ip-base", - "sourceType": "domain", - "command": "internet.ip", - "label": "internet.ip", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ip", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ip()", - "expectedUiSchemaText": "Value\ninternet.ip()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ip-base" - }, - { - "id": "coverage:domain-internet-ip-example-1", - "sourceType": "domain", - "command": "internet.ip", - "label": "internet.ip example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ip", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ip()", - "expectedUiSchemaText": "Value\ninternet.ip()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-ip-example-1" - }, - { - "id": "coverage:domain-internet-ipv4-base", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4()", - "expectedUiSchemaText": "Value\ninternet.ipv4()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ipv4-base" - }, - { - "id": "coverage:domain-internet-ipv4-example-1", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4()", - "expectedUiSchemaText": "Value\ninternet.ipv4()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-1" - }, - { - "id": "coverage:domain-internet-ipv4-example-2", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-2" - }, - { - "id": "coverage:domain-internet-ipv4-example-3", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-3" - }, - { - "id": "coverage:domain-internet-ipv4-arg-cidrBlock", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 arg cidrBlock", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock"], - "origins": ["arg"], - "scenarioId": "domain-internet-ipv4-arg-cidrBlock" - }, - { - "id": "coverage:domain-internet-ipv4-arg-network", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 arg network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["network"], - "origins": ["arg"], - "scenarioId": "domain-internet-ipv4-arg-network" - }, - { - "id": "coverage:domain-internet-ipv4-pair-cidrBlock-network", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 pair cidrBlock/network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["pair"], - "scenarioId": "domain-internet-ipv4-pair-cidrBlock-network" - }, - { - "id": "coverage:domain-internet-ipv6-base", - "sourceType": "domain", - "command": "internet.ipv6", - "label": "internet.ipv6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv6", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv6()", - "expectedUiSchemaText": "Value\ninternet.ipv6()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ipv6-base" - }, - { - "id": "coverage:domain-internet-ipv6-example-1", - "sourceType": "domain", - "command": "internet.ipv6", - "label": "internet.ipv6 example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv6", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv6()", - "expectedUiSchemaText": "Value\ninternet.ipv6()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-ipv6-example-1" - }, - { - "id": "coverage:domain-internet-jwt-base", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt()", - "expectedUiSchemaText": "Value\ninternet.jwt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-jwt-base" - }, - { - "id": "coverage:domain-internet-jwt-example-1", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt()", - "expectedUiSchemaText": "Value\ninternet.jwt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-1" - }, - { - "id": "coverage:domain-internet-jwt-example-2", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={\"value\":\"sample\"})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={\"value\":\"sample\"})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={\"value\":\"sample\"})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-2" - }, - { - "id": "coverage:domain-internet-jwt-example-3", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={\"value\":\"sample\"})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={\"value\":\"sample\"})", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={\"value\":\"sample\"})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-3" - }, - { - "id": "coverage:domain-internet-jwt-example-4", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(refDate=1718755200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(refDate=1718755200000)", - "expectedUiSchemaText": "Value\ninternet.jwt(refDate=1718755200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-4" - }, - { - "id": "coverage:domain-internet-jwt-arg-header", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg header", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-header" - }, - { - "id": "coverage:domain-internet-jwt-arg-payload", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg payload", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={})", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["payload"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-payload" - }, - { - "id": "coverage:domain-internet-jwt-arg-refDate", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(refDate=1)", - "expectedUiSchemaText": "Value\ninternet.jwt(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-refDate" - }, - { - "id": "coverage:domain-internet-jwt-pair-header-payload", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt pair header/payload", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={}, payload={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={}, payload={})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={}, payload={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload"], - "origins": ["pair"], - "scenarioId": "domain-internet-jwt-pair-header-payload" - }, - { - "id": "coverage:domain-internet-jwt-pair-payload-refDate", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt pair payload/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={}, refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={}, refDate=1)", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={}, refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["payload", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-internet-jwt-pair-payload-refDate" - }, - { - "id": "coverage:domain-internet-jwtAlgorithm-base", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "label": "internet.jwtAlgorithm", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedUiSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-jwtAlgorithm-base" - }, - { - "id": "coverage:domain-internet-jwtAlgorithm-example-1", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "label": "internet.jwtAlgorithm example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedUiSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-jwtAlgorithm-example-1" - }, - { - "id": "coverage:domain-internet-mac-base", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac()", - "expectedUiSchemaText": "Value\ninternet.mac()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-mac-base" - }, - { - "id": "coverage:domain-internet-mac-example-1", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac()", - "expectedUiSchemaText": "Value\ninternet.mac()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["example"], - "scenarioId": "domain-internet-mac-example-1" - }, - { - "id": "coverage:domain-internet-mac-example-2", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac(separator=\"-\")", - "expectedUiSchemaText": "Value\ninternet.mac(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["example"], - "scenarioId": "domain-internet-mac-example-2" - }, - { - "id": "coverage:domain-internet-mac-arg-separator", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "(separator=\":\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac(separator=\":\")", - "expectedUiSchemaText": "Value\ninternet.mac(separator=\":\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-internet-mac-arg-separator" - }, - { - "id": "coverage:domain-internet-password-base", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password()", - "expectedUiSchemaText": "Value\ninternet.password()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-password-base" - }, - { - "id": "coverage:domain-internet-password-example-1", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password()", - "expectedUiSchemaText": "Value\ninternet.password()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-1" - }, - { - "id": "coverage:domain-internet-password-example-2", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12)", - "expectedUiSchemaText": "Value\ninternet.password(length=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-2" - }, - { - "id": "coverage:domain-internet-password-example-3", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-3" - }, - { - "id": "coverage:domain-internet-password-example-4", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-4" - }, - { - "id": "coverage:domain-internet-password-example-5", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-5" - }, - { - "id": "coverage:domain-internet-password-example-6", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=false, pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-6" - }, - { - "id": "coverage:domain-internet-password-example-7", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-7" - }, - { - "id": "coverage:domain-internet-password-example-8", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-8" - }, - { - "id": "coverage:domain-internet-password-arg-length", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12)", - "expectedUiSchemaText": "Value\ninternet.password(length=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-length" - }, - { - "id": "coverage:domain-internet-password-arg-memorable", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg memorable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["memorable"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-memorable" - }, - { - "id": "coverage:domain-internet-password-arg-pattern", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-pattern" - }, - { - "id": "coverage:domain-internet-password-arg-prefix", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-prefix" - }, - { - "id": "coverage:domain-internet-password-pair-length-memorable", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair length/memorable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-length-memorable" - }, - { - "id": "coverage:domain-internet-password-pair-memorable-pattern", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair memorable/pattern", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true, pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true, pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true, pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["memorable", "pattern"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-memorable-pattern" - }, - { - "id": "coverage:domain-internet-password-pair-pattern-prefix", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair pattern/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\", prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\", prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\", prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-pattern-prefix" - }, - { - "id": "coverage:domain-internet-port-base", - "sourceType": "domain", - "command": "internet.port", - "label": "internet.port", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.port", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.port()", - "expectedUiSchemaText": "Value\ninternet.port()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-port-base" - }, - { - "id": "coverage:domain-internet-port-example-1", - "sourceType": "domain", - "command": "internet.port", - "label": "internet.port example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.port", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.port()", - "expectedUiSchemaText": "Value\ninternet.port()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-port-example-1" - }, - { - "id": "coverage:domain-internet-protocol-base", - "sourceType": "domain", - "command": "internet.protocol", - "label": "internet.protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.protocol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.protocol()", - "expectedUiSchemaText": "Value\ninternet.protocol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-protocol-base" - }, - { - "id": "coverage:domain-internet-protocol-example-1", - "sourceType": "domain", - "command": "internet.protocol", - "label": "internet.protocol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.protocol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.protocol()", - "expectedUiSchemaText": "Value\ninternet.protocol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-protocol-example-1" - }, - { - "id": "coverage:domain-internet-url-base", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url()", - "expectedUiSchemaText": "Value\ninternet.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-url-base" - }, - { - "id": "coverage:domain-internet-url-example-1", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url()", - "expectedUiSchemaText": "Value\ninternet.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-1" - }, - { - "id": "coverage:domain-internet-url-example-2", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-2" - }, - { - "id": "coverage:domain-internet-url-example-3", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-3" - }, - { - "id": "coverage:domain-internet-url-arg-appendSlash", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url arg appendSlash", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash"], - "origins": ["arg"], - "scenarioId": "domain-internet-url-arg-appendSlash" - }, - { - "id": "coverage:domain-internet-url-arg-protocol", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url arg protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["protocol"], - "origins": ["arg"], - "scenarioId": "domain-internet-url-arg-protocol" - }, - { - "id": "coverage:domain-internet-url-pair-appendSlash-protocol", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url pair appendSlash/protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true, protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true, protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true, protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["pair"], - "scenarioId": "domain-internet-url-pair-appendSlash-protocol" - }, - { - "id": "coverage:domain-internet-userAgent-base", - "sourceType": "domain", - "command": "internet.userAgent", - "label": "internet.userAgent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.userAgent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.userAgent()", - "expectedUiSchemaText": "Value\ninternet.userAgent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-userAgent-base" - }, - { - "id": "coverage:domain-internet-userAgent-example-1", - "sourceType": "domain", - "command": "internet.userAgent", - "label": "internet.userAgent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.userAgent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.userAgent()", - "expectedUiSchemaText": "Value\ninternet.userAgent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-userAgent-example-1" - }, - { - "id": "coverage:domain-internet-username-base", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username()", - "expectedUiSchemaText": "Value\ninternet.username()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-username-base" - }, - { - "id": "coverage:domain-internet-username-example-1", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username()", - "expectedUiSchemaText": "Value\ninternet.username()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-1" - }, - { - "id": "coverage:domain-internet-username-example-2", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-2" - }, - { - "id": "coverage:domain-internet-username-example-3", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-3" - }, - { - "id": "coverage:domain-internet-username-arg-firstName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username arg firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName"], - "origins": ["arg"], - "scenarioId": "domain-internet-username-arg-firstName" - }, - { - "id": "coverage:domain-internet-username-arg-lastName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username arg lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName"], - "origins": ["arg"], - "scenarioId": "domain-internet-username-arg-lastName" - }, - { - "id": "coverage:domain-internet-username-pair-firstName-lastName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username pair firstName/lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\", lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"], - "scenarioId": "domain-internet-username-pair-firstName-lastName" - }, - { - "id": "coverage:domain-literal-value-base", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value()", - "expectedUiSchemaText": "Value\nliteral.value()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-literal-value-base" - }, - { - "id": "coverage:domain-literal-value-example-1", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=\"Pending\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedUiSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-1" - }, - { - "id": "coverage:domain-literal-value-example-2", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=\"\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=\"\")", - "expectedUiSchemaText": "Value\nliteral.value(value=\"\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-2" - }, - { - "id": "coverage:domain-literal-value-example-3", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value()", - "expectedUiSchemaText": "Value\nliteral.value()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-3" - }, - { - "id": "coverage:domain-literal-value-example-4", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=1)", - "expectedUiSchemaText": "Value\nliteral.value(value=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-4" - }, - { - "id": "coverage:domain-literal-value-arg-value", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value arg value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=true)", - "expectedUiSchemaText": "Value\nliteral.value(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["arg"], - "scenarioId": "domain-literal-value-arg-value" - }, - { - "id": "coverage:domain-location-buildingNumber-base", - "sourceType": "domain", - "command": "location.buildingNumber", - "label": "location.buildingNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.buildingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.buildingNumber()", - "expectedUiSchemaText": "Value\nlocation.buildingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-buildingNumber-base" - }, - { - "id": "coverage:domain-location-buildingNumber-example-1", - "sourceType": "domain", - "command": "location.buildingNumber", - "label": "location.buildingNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.buildingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.buildingNumber()", - "expectedUiSchemaText": "Value\nlocation.buildingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-buildingNumber-example-1" - }, - { - "id": "coverage:domain-location-cardinalDirection-base", - "sourceType": "domain", - "command": "location.cardinalDirection", - "label": "location.cardinalDirection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.cardinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.cardinalDirection()", - "expectedUiSchemaText": "Value\nlocation.cardinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-cardinalDirection-base" - }, - { - "id": "coverage:domain-location-cardinalDirection-example-1", - "sourceType": "domain", - "command": "location.cardinalDirection", - "label": "location.cardinalDirection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.cardinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.cardinalDirection()", - "expectedUiSchemaText": "Value\nlocation.cardinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-cardinalDirection-example-1" - }, - { - "id": "coverage:domain-location-city-base", - "sourceType": "domain", - "command": "location.city", - "label": "location.city", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.city", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.city()", - "expectedUiSchemaText": "Value\nlocation.city()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-city-base" - }, - { - "id": "coverage:domain-location-city-example-1", - "sourceType": "domain", - "command": "location.city", - "label": "location.city example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.city", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.city()", - "expectedUiSchemaText": "Value\nlocation.city()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-city-example-1" - }, - { - "id": "coverage:domain-location-continent-base", - "sourceType": "domain", - "command": "location.continent", - "label": "location.continent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.continent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.continent()", - "expectedUiSchemaText": "Value\nlocation.continent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-continent-base" - }, - { - "id": "coverage:domain-location-continent-example-1", - "sourceType": "domain", - "command": "location.continent", - "label": "location.continent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.continent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.continent()", - "expectedUiSchemaText": "Value\nlocation.continent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-continent-example-1" - }, - { - "id": "coverage:domain-location-country-base", - "sourceType": "domain", - "command": "location.country", - "label": "location.country", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.country", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.country()", - "expectedUiSchemaText": "Value\nlocation.country()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-country-base" - }, - { - "id": "coverage:domain-location-country-example-1", - "sourceType": "domain", - "command": "location.country", - "label": "location.country example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.country", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.country()", - "expectedUiSchemaText": "Value\nlocation.country()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-country-example-1" - }, - { - "id": "coverage:domain-location-countryCode-base", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode()", - "expectedUiSchemaText": "Value\nlocation.countryCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-countryCode-base" - }, - { - "id": "coverage:domain-location-countryCode-example-1", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode()", - "expectedUiSchemaText": "Value\nlocation.countryCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["example"], - "scenarioId": "domain-location-countryCode-example-1" - }, - { - "id": "coverage:domain-location-countryCode-example-2", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "(variant=\"alpha-3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedUiSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["example"], - "scenarioId": "domain-location-countryCode-example-2" - }, - { - "id": "coverage:domain-location-countryCode-arg-variant", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode arg variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "(variant=\"alpha-3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedUiSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["arg"], - "scenarioId": "domain-location-countryCode-arg-variant" - }, - { - "id": "coverage:domain-location-county-base", - "sourceType": "domain", - "command": "location.county", - "label": "location.county", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.county", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.county()", - "expectedUiSchemaText": "Value\nlocation.county()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-county-base" - }, - { - "id": "coverage:domain-location-county-example-1", - "sourceType": "domain", - "command": "location.county", - "label": "location.county example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.county", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.county()", - "expectedUiSchemaText": "Value\nlocation.county()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-county-example-1" - }, - { - "id": "coverage:domain-location-direction-base", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction()", - "expectedUiSchemaText": "Value\nlocation.direction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-direction-base" - }, - { - "id": "coverage:domain-location-direction-example-1", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction()", - "expectedUiSchemaText": "Value\nlocation.direction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-direction-example-1" - }, - { - "id": "coverage:domain-location-direction-example-2", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-direction-example-2" - }, - { - "id": "coverage:domain-location-direction-arg-abbreviated", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-location-direction-arg-abbreviated" - }, - { - "id": "coverage:domain-location-latitude-base", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude()", - "expectedUiSchemaText": "Value\nlocation.latitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-latitude-base" - }, - { - "id": "coverage:domain-location-latitude-example-1", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude()", - "expectedUiSchemaText": "Value\nlocation.latitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-1" - }, - { - "id": "coverage:domain-location-latitude-example-2", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=10, min=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-2" - }, - { - "id": "coverage:domain-location-latitude-example-3", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=5)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-3" - }, - { - "id": "coverage:domain-location-latitude-example-4", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(precision=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(precision=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(precision=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-4" - }, - { - "id": "coverage:domain-location-latitude-arg-min", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(min=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-min" - }, - { - "id": "coverage:domain-location-latitude-arg-max", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=3)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-max" - }, - { - "id": "coverage:domain-location-latitude-arg-precision", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(precision=4)", - "expectedUiSchemaText": "Value\nlocation.latitude(precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["precision"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-precision" - }, - { - "id": "coverage:domain-location-latitude-pair-min-max", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(min=1, max=3)", - "expectedUiSchemaText": "Value\nlocation.latitude(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-location-latitude-pair-min-max" - }, - { - "id": "coverage:domain-location-latitude-pair-max-precision", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude pair max/precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=3, precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=3, precision=4)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=3, precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "precision"], - "origins": ["pair"], - "scenarioId": "domain-location-latitude-pair-max-precision" - }, - { - "id": "coverage:domain-location-longitude-base", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude()", - "expectedUiSchemaText": "Value\nlocation.longitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-longitude-base" - }, - { - "id": "coverage:domain-location-longitude-example-1", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude()", - "expectedUiSchemaText": "Value\nlocation.longitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-1" - }, - { - "id": "coverage:domain-location-longitude-example-2", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=10, min=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-2" - }, - { - "id": "coverage:domain-location-longitude-example-3", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=5)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-3" - }, - { - "id": "coverage:domain-location-longitude-example-4", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(precision=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(precision=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(precision=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-4" - }, - { - "id": "coverage:domain-location-longitude-arg-min", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(min=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-min" - }, - { - "id": "coverage:domain-location-longitude-arg-max", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=3)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-max" - }, - { - "id": "coverage:domain-location-longitude-arg-precision", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(precision=4)", - "expectedUiSchemaText": "Value\nlocation.longitude(precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["precision"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-precision" - }, - { - "id": "coverage:domain-location-longitude-pair-min-max", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(min=1, max=3)", - "expectedUiSchemaText": "Value\nlocation.longitude(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-location-longitude-pair-min-max" - }, - { - "id": "coverage:domain-location-longitude-pair-max-precision", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude pair max/precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=3, precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=3, precision=4)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=3, precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "precision"], - "origins": ["pair"], - "scenarioId": "domain-location-longitude-pair-max-precision" - }, - { - "id": "coverage:domain-location-ordinalDirection-base", - "sourceType": "domain", - "command": "location.ordinalDirection", - "label": "location.ordinalDirection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.ordinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.ordinalDirection()", - "expectedUiSchemaText": "Value\nlocation.ordinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-ordinalDirection-base" - }, - { - "id": "coverage:domain-location-ordinalDirection-example-1", - "sourceType": "domain", - "command": "location.ordinalDirection", - "label": "location.ordinalDirection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.ordinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.ordinalDirection()", - "expectedUiSchemaText": "Value\nlocation.ordinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-ordinalDirection-example-1" - }, - { - "id": "coverage:domain-location-secondaryAddress-base", - "sourceType": "domain", - "command": "location.secondaryAddress", - "label": "location.secondaryAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.secondaryAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.secondaryAddress()", - "expectedUiSchemaText": "Value\nlocation.secondaryAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-secondaryAddress-base" - }, - { - "id": "coverage:domain-location-secondaryAddress-example-1", - "sourceType": "domain", - "command": "location.secondaryAddress", - "label": "location.secondaryAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.secondaryAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.secondaryAddress()", - "expectedUiSchemaText": "Value\nlocation.secondaryAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-secondaryAddress-example-1" - }, - { - "id": "coverage:domain-location-state-base", - "sourceType": "domain", - "command": "location.state", - "label": "location.state", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state()", - "expectedUiSchemaText": "Value\nlocation.state()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-state-base" - }, - { - "id": "coverage:domain-location-state-example-1", - "sourceType": "domain", - "command": "location.state", - "label": "location.state example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state()", - "expectedUiSchemaText": "Value\nlocation.state()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-state-example-1" - }, - { - "id": "coverage:domain-location-state-example-2", - "sourceType": "domain", - "command": "location.state", - "label": "location.state example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-state-example-2" - }, - { - "id": "coverage:domain-location-state-arg-abbreviated", - "sourceType": "domain", - "command": "location.state", - "label": "location.state arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-location-state-arg-abbreviated" - }, - { - "id": "coverage:domain-location-street-base", - "sourceType": "domain", - "command": "location.street", - "label": "location.street", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.street", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.street()", - "expectedUiSchemaText": "Value\nlocation.street()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-street-base" - }, - { - "id": "coverage:domain-location-street-example-1", - "sourceType": "domain", - "command": "location.street", - "label": "location.street example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.street", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.street()", - "expectedUiSchemaText": "Value\nlocation.street()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-street-example-1" - }, - { - "id": "coverage:domain-location-streetAddress-base", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress()", - "expectedUiSchemaText": "Value\nlocation.streetAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-streetAddress-base" - }, - { - "id": "coverage:domain-location-streetAddress-example-1", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress()", - "expectedUiSchemaText": "Value\nlocation.streetAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["example"], - "scenarioId": "domain-location-streetAddress-example-1" - }, - { - "id": "coverage:domain-location-streetAddress-example-2", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "(useFullAddress=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedUiSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["example"], - "scenarioId": "domain-location-streetAddress-example-2" - }, - { - "id": "coverage:domain-location-streetAddress-arg-useFullAddress", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress arg useFullAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "(useFullAddress=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedUiSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["arg"], - "scenarioId": "domain-location-streetAddress-arg-useFullAddress" - }, - { - "id": "coverage:domain-location-timeZone-base", - "sourceType": "domain", - "command": "location.timeZone", - "label": "location.timeZone", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.timeZone()", - "expectedUiSchemaText": "Value\nlocation.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-timeZone-base" - }, - { - "id": "coverage:domain-location-timeZone-example-1", - "sourceType": "domain", - "command": "location.timeZone", - "label": "location.timeZone example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.timeZone()", - "expectedUiSchemaText": "Value\nlocation.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-timeZone-example-1" - }, - { - "id": "coverage:domain-location-zipCode-base", - "sourceType": "domain", - "command": "location.zipCode", - "label": "location.zipCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.zipCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.zipCode()", - "expectedUiSchemaText": "Value\nlocation.zipCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-zipCode-base" - }, - { - "id": "coverage:domain-location-zipCode-example-1", - "sourceType": "domain", - "command": "location.zipCode", - "label": "location.zipCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.zipCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.zipCode()", - "expectedUiSchemaText": "Value\nlocation.zipCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-zipCode-example-1" - }, - { - "id": "coverage:domain-lorem-lines-base", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines()", - "expectedUiSchemaText": "Value\nlorem.lines()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-lines-base" - }, - { - "id": "coverage:domain-lorem-lines-example-1", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines()", - "expectedUiSchemaText": "Value\nlorem.lines()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-1" - }, - { - "id": "coverage:domain-lorem-lines-example-2", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.lines(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-2" - }, - { - "id": "coverage:domain-lorem-lines-example-3", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=5)", - "expectedUiSchemaText": "Value\nlorem.lines(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-3" - }, - { - "id": "coverage:domain-lorem-lines-example-4", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-4" - }, - { - "id": "coverage:domain-lorem-lines-example-5", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-5" - }, - { - "id": "coverage:domain-lorem-lines-example-6", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-6" - }, - { - "id": "coverage:domain-lorem-lines-arg-min", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(min=1)", - "expectedUiSchemaText": "Value\nlorem.lines(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-min" - }, - { - "id": "coverage:domain-lorem-lines-arg-max", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=3)", - "expectedUiSchemaText": "Value\nlorem.lines(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-max" - }, - { - "id": "coverage:domain-lorem-lines-arg-lineCount", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCount" - }, - { - "id": "coverage:domain-lorem-lines-arg-lineCountMax", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCountMax" - }, - { - "id": "coverage:domain-lorem-lines-arg-lineCountMin", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMin=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMin=1)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMin=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCountMin" - }, - { - "id": "coverage:domain-lorem-lines-pair-min-max", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.lines(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-min-max" - }, - { - "id": "coverage:domain-lorem-lines-pair-max-lineCount", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair max/lineCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=3, lineCount=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=3, lineCount=2)", - "expectedUiSchemaText": "Value\nlorem.lines(max=3, lineCount=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "lineCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-max-lineCount" - }, - { - "id": "coverage:domain-lorem-lines-pair-lineCount-lineCountMax", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair lineCount/lineCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=2, lineCountMax=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=2, lineCountMax=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=2, lineCountMax=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCount", "lineCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-lineCount-lineCountMax" - }, - { - "id": "coverage:domain-lorem-lines-pair-lineCountMax-lineCountMin", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair lineCountMax/lineCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=2, lineCountMin=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=2, lineCountMin=1)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=2, lineCountMin=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMax", "lineCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-lineCountMax-lineCountMin" - }, - { - "id": "coverage:domain-lorem-paragraph-base", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph()", - "expectedUiSchemaText": "Value\nlorem.paragraph()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-paragraph-base" - }, - { - "id": "coverage:domain-lorem-paragraph-example-1", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph()", - "expectedUiSchemaText": "Value\nlorem.paragraph()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-1" - }, - { - "id": "coverage:domain-lorem-paragraph-example-2", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-2" - }, - { - "id": "coverage:domain-lorem-paragraph-example-3", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-3" - }, - { - "id": "coverage:domain-lorem-paragraph-example-4", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-4" - }, - { - "id": "coverage:domain-lorem-paragraph-example-5", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-5" - }, - { - "id": "coverage:domain-lorem-paragraph-example-6", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-6" - }, - { - "id": "coverage:domain-lorem-paragraph-arg-min", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraph(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-min" - }, - { - "id": "coverage:domain-lorem-paragraph-arg-max", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-max" - }, - { - "id": "coverage:domain-lorem-paragraph-arg-sentenceCount", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCount" - }, - { - "id": "coverage:domain-lorem-paragraph-arg-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMax" - }, - { - "id": "coverage:domain-lorem-paragraph-arg-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMin" - }, - { - "id": "coverage:domain-lorem-paragraph-pair-min-max", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraph(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-min-max" - }, - { - "id": "coverage:domain-lorem-paragraph-pair-max-sentenceCount", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair max/sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=3, sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=3, sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=3, sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-max-sentenceCount" - }, - { - "id": "coverage:domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair sentenceCount/sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=4, sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=4, sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=4, sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount", "sentenceCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax" - }, - { - "id": "coverage:domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair sentenceCountMax/sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5, sentenceCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin" - }, - { - "id": "coverage:domain-lorem-paragraphs-base", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs()", - "expectedUiSchemaText": "Value\nlorem.paragraphs()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-paragraphs-base" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-1", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs()", - "expectedUiSchemaText": "Value\nlorem.paragraphs()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-1" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-2", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-2" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-3", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-3" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-4", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-4" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-5", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-5" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-6", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-6" - }, - { - "id": "coverage:domain-lorem-paragraphs-example-7", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-7" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-min", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-min" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-max", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-max" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-paragraphCount", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCount" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-separator", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-separator" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-paragraphCountMax", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMax" - }, - { - "id": "coverage:domain-lorem-paragraphs-arg-paragraphCountMin", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMin" - }, - { - "id": "coverage:domain-lorem-paragraphs-pair-min-max", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-min-max" - }, - { - "id": "coverage:domain-lorem-paragraphs-pair-max-paragraphCount", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair max/paragraphCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=3, paragraphCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=3, paragraphCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=3, paragraphCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "paragraphCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-max-paragraphCount" - }, - { - "id": "coverage:domain-lorem-paragraphs-pair-paragraphCount-separator", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair paragraphCount/separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=4, separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=4, separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=4, separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCount", "separator"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-paragraphCount-separator" - }, - { - "id": "coverage:domain-lorem-paragraphs-pair-separator-paragraphCountMax", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair separator/paragraphCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\", paragraphCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\", paragraphCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\", paragraphCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "paragraphCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-separator-paragraphCountMax" - }, - { - "id": "coverage:domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair paragraphCountMax/paragraphCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=6, paragraphCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMax", "paragraphCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin" - }, - { - "id": "coverage:domain-lorem-sentence-base", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence()", - "expectedUiSchemaText": "Value\nlorem.sentence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-sentence-base" - }, - { - "id": "coverage:domain-lorem-sentence-example-1", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence()", - "expectedUiSchemaText": "Value\nlorem.sentence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-1" - }, - { - "id": "coverage:domain-lorem-sentence-example-2", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-2" - }, - { - "id": "coverage:domain-lorem-sentence-example-3", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-3" - }, - { - "id": "coverage:domain-lorem-sentence-example-4", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-4" - }, - { - "id": "coverage:domain-lorem-sentence-example-5", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-5" - }, - { - "id": "coverage:domain-lorem-sentence-example-6", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-6" - }, - { - "id": "coverage:domain-lorem-sentence-arg-min", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(min=1)", - "expectedUiSchemaText": "Value\nlorem.sentence(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-min" - }, - { - "id": "coverage:domain-lorem-sentence-arg-max", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=3)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-max" - }, - { - "id": "coverage:domain-lorem-sentence-arg-wordCount", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCount" - }, - { - "id": "coverage:domain-lorem-sentence-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCountMax" - }, - { - "id": "coverage:domain-lorem-sentence-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCountMin" - }, - { - "id": "coverage:domain-lorem-sentence-pair-min-max", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.sentence(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-min-max" - }, - { - "id": "coverage:domain-lorem-sentence-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-max-wordCount" - }, - { - "id": "coverage:domain-lorem-sentence-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-wordCount-wordCountMax" - }, - { - "id": "coverage:domain-lorem-sentence-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-wordCountMax-wordCountMin" - }, - { - "id": "coverage:domain-lorem-sentences-base", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences()", - "expectedUiSchemaText": "Value\nlorem.sentences()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-sentences-base" - }, - { - "id": "coverage:domain-lorem-sentences-example-1", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences()", - "expectedUiSchemaText": "Value\nlorem.sentences()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-1" - }, - { - "id": "coverage:domain-lorem-sentences-example-2", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-2" - }, - { - "id": "coverage:domain-lorem-sentences-example-3", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-3" - }, - { - "id": "coverage:domain-lorem-sentences-example-4", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-4" - }, - { - "id": "coverage:domain-lorem-sentences-example-5", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-5" - }, - { - "id": "coverage:domain-lorem-sentences-example-6", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-6" - }, - { - "id": "coverage:domain-lorem-sentences-example-7", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-7" - }, - { - "id": "coverage:domain-lorem-sentences-arg-min", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(min=1)", - "expectedUiSchemaText": "Value\nlorem.sentences(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-min" - }, - { - "id": "coverage:domain-lorem-sentences-arg-max", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=3)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-max" - }, - { - "id": "coverage:domain-lorem-sentences-arg-sentenceCount", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCount" - }, - { - "id": "coverage:domain-lorem-sentences-arg-separator", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-separator" - }, - { - "id": "coverage:domain-lorem-sentences-arg-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCountMax" - }, - { - "id": "coverage:domain-lorem-sentences-arg-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCountMin" - }, - { - "id": "coverage:domain-lorem-sentences-pair-min-max", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.sentences(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-min-max" - }, - { - "id": "coverage:domain-lorem-sentences-pair-max-sentenceCount", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair max/sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=3, sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=3, sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=3, sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-max-sentenceCount" - }, - { - "id": "coverage:domain-lorem-sentences-pair-sentenceCount-separator", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair sentenceCount/separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=4, separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=4, separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=4, separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount", "separator"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-sentenceCount-separator" - }, - { - "id": "coverage:domain-lorem-sentences-pair-separator-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair separator/sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\", sentenceCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\", sentenceCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\", sentenceCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "sentenceCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-separator-sentenceCountMax" - }, - { - "id": "coverage:domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair sentenceCountMax/sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=6, sentenceCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=6, sentenceCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=6, sentenceCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin" - }, - { - "id": "coverage:domain-lorem-slug-base", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug()", - "expectedUiSchemaText": "Value\nlorem.slug()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-slug-base" - }, - { - "id": "coverage:domain-lorem-slug-example-1", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug()", - "expectedUiSchemaText": "Value\nlorem.slug()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-1" - }, - { - "id": "coverage:domain-lorem-slug-example-2", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.slug(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-2" - }, - { - "id": "coverage:domain-lorem-slug-example-3", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=5)", - "expectedUiSchemaText": "Value\nlorem.slug(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-3" - }, - { - "id": "coverage:domain-lorem-slug-example-4", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-4" - }, - { - "id": "coverage:domain-lorem-slug-example-5", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-5" - }, - { - "id": "coverage:domain-lorem-slug-example-6", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-6" - }, - { - "id": "coverage:domain-lorem-slug-arg-min", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(min=1)", - "expectedUiSchemaText": "Value\nlorem.slug(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-min" - }, - { - "id": "coverage:domain-lorem-slug-arg-max", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=3)", - "expectedUiSchemaText": "Value\nlorem.slug(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-max" - }, - { - "id": "coverage:domain-lorem-slug-arg-wordCount", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCount" - }, - { - "id": "coverage:domain-lorem-slug-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCountMax" - }, - { - "id": "coverage:domain-lorem-slug-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCountMin" - }, - { - "id": "coverage:domain-lorem-slug-pair-min-max", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.slug(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-min-max" - }, - { - "id": "coverage:domain-lorem-slug-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.slug(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-max-wordCount" - }, - { - "id": "coverage:domain-lorem-slug-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-wordCount-wordCountMax" - }, - { - "id": "coverage:domain-lorem-slug-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-wordCountMax-wordCountMin" - }, - { - "id": "coverage:domain-lorem-text-base", - "sourceType": "domain", - "command": "lorem.text", - "label": "lorem.text", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.text", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.text()", - "expectedUiSchemaText": "Value\nlorem.text()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-text-base" - }, - { - "id": "coverage:domain-lorem-text-example-1", - "sourceType": "domain", - "command": "lorem.text", - "label": "lorem.text example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.text", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.text()", - "expectedUiSchemaText": "Value\nlorem.text()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-lorem-text-example-1" - }, - { - "id": "coverage:domain-lorem-word-base", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word()", - "expectedUiSchemaText": "Value\nlorem.word()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-word-base" - }, - { - "id": "coverage:domain-lorem-word-example-1", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word()", - "expectedUiSchemaText": "Value\nlorem.word()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-1" - }, - { - "id": "coverage:domain-lorem-word-example-2", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.word(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-2" - }, - { - "id": "coverage:domain-lorem-word-example-3", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=5)", - "expectedUiSchemaText": "Value\nlorem.word(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-3" - }, - { - "id": "coverage:domain-lorem-word-example-4", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=5)", - "expectedUiSchemaText": "Value\nlorem.word(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-4" - }, - { - "id": "coverage:domain-lorem-word-example-5", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-5" - }, - { - "id": "coverage:domain-lorem-word-arg-min", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(min=1)", - "expectedUiSchemaText": "Value\nlorem.word(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-min" - }, - { - "id": "coverage:domain-lorem-word-arg-max", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=3)", - "expectedUiSchemaText": "Value\nlorem.word(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-max" - }, - { - "id": "coverage:domain-lorem-word-arg-length", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=4)", - "expectedUiSchemaText": "Value\nlorem.word(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-length" - }, - { - "id": "coverage:domain-lorem-word-arg-strategy", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-strategy" - }, - { - "id": "coverage:domain-lorem-word-pair-min-max", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.word(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-min-max" - }, - { - "id": "coverage:domain-lorem-word-pair-max-length", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair max/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=3, length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=3, length=4)", - "expectedUiSchemaText": "Value\nlorem.word(max=3, length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "length"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-max-length" - }, - { - "id": "coverage:domain-lorem-word-pair-length-strategy", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair length/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=4, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=4, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(length=4, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-length-strategy" - }, - { - "id": "coverage:domain-lorem-words-base", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words()", - "expectedUiSchemaText": "Value\nlorem.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-words-base" - }, - { - "id": "coverage:domain-lorem-words-example-1", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words()", - "expectedUiSchemaText": "Value\nlorem.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-1" - }, - { - "id": "coverage:domain-lorem-words-example-2", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.words(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-2" - }, - { - "id": "coverage:domain-lorem-words-example-3", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=5)", - "expectedUiSchemaText": "Value\nlorem.words(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-3" - }, - { - "id": "coverage:domain-lorem-words-example-4", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-4" - }, - { - "id": "coverage:domain-lorem-words-example-5", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-5" - }, - { - "id": "coverage:domain-lorem-words-example-6", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-6" - }, - { - "id": "coverage:domain-lorem-words-arg-min", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(min=1)", - "expectedUiSchemaText": "Value\nlorem.words(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-min" - }, - { - "id": "coverage:domain-lorem-words-arg-max", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=3)", - "expectedUiSchemaText": "Value\nlorem.words(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-max" - }, - { - "id": "coverage:domain-lorem-words-arg-wordCount", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCount" - }, - { - "id": "coverage:domain-lorem-words-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCountMax" - }, - { - "id": "coverage:domain-lorem-words-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCountMin" - }, - { - "id": "coverage:domain-lorem-words-pair-min-max", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.words(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-min-max" - }, - { - "id": "coverage:domain-lorem-words-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.words(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-max-wordCount" - }, - { - "id": "coverage:domain-lorem-words-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-wordCount-wordCountMax" - }, - { - "id": "coverage:domain-lorem-words-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-wordCountMax-wordCountMin" - }, - { - "id": "coverage:domain-music-album-base", - "sourceType": "domain", - "command": "music.album", - "label": "music.album", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.album", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.album()", - "expectedUiSchemaText": "Value\nmusic.album()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-album-base" - }, - { - "id": "coverage:domain-music-album-example-1", - "sourceType": "domain", - "command": "music.album", - "label": "music.album example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.album", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.album()", - "expectedUiSchemaText": "Value\nmusic.album()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-album-example-1" - }, - { - "id": "coverage:domain-music-artist-base", - "sourceType": "domain", - "command": "music.artist", - "label": "music.artist", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.artist", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.artist()", - "expectedUiSchemaText": "Value\nmusic.artist()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-artist-base" - }, - { - "id": "coverage:domain-music-artist-example-1", - "sourceType": "domain", - "command": "music.artist", - "label": "music.artist example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.artist", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.artist()", - "expectedUiSchemaText": "Value\nmusic.artist()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-artist-example-1" - }, - { - "id": "coverage:domain-music-genre-base", - "sourceType": "domain", - "command": "music.genre", - "label": "music.genre", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.genre()", - "expectedUiSchemaText": "Value\nmusic.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-genre-base" - }, - { - "id": "coverage:domain-music-genre-example-1", - "sourceType": "domain", - "command": "music.genre", - "label": "music.genre example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.genre()", - "expectedUiSchemaText": "Value\nmusic.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-genre-example-1" - }, - { - "id": "coverage:domain-music-songName-base", - "sourceType": "domain", - "command": "music.songName", - "label": "music.songName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.songName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.songName()", - "expectedUiSchemaText": "Value\nmusic.songName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-songName-base" - }, - { - "id": "coverage:domain-music-songName-example-1", - "sourceType": "domain", - "command": "music.songName", - "label": "music.songName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.songName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.songName()", - "expectedUiSchemaText": "Value\nmusic.songName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-songName-example-1" - }, - { - "id": "coverage:domain-number-bigInt-base", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt()", - "expectedUiSchemaText": "Value\nnumber.bigInt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-bigInt-base" - }, - { - "id": "coverage:domain-number-bigInt-example-1", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt()", - "expectedUiSchemaText": "Value\nnumber.bigInt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-number-bigInt-example-1" - }, - { - "id": "coverage:domain-number-bigInt-example-2", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedUiSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-number-bigInt-example-2" - }, - { - "id": "coverage:domain-number-bigInt-arg-value", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt arg value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedUiSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["arg"], - "scenarioId": "domain-number-bigInt-arg-value" - }, - { - "id": "coverage:domain-number-binary-base", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary()", - "expectedUiSchemaText": "Value\nnumber.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-binary-base" - }, - { - "id": "coverage:domain-number-binary-example-1", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary()", - "expectedUiSchemaText": "Value\nnumber.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-1" - }, - { - "id": "coverage:domain-number-binary-example-2", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=5)", - "expectedUiSchemaText": "Value\nnumber.binary(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-2" - }, - { - "id": "coverage:domain-number-binary-example-3", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-3" - }, - { - "id": "coverage:domain-number-binary-arg-max", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=3)", - "expectedUiSchemaText": "Value\nnumber.binary(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-binary-arg-max" - }, - { - "id": "coverage:domain-number-binary-arg-min", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-binary-arg-min" - }, - { - "id": "coverage:domain-number-binary-pair-max-min", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-binary-pair-max-min" - }, - { - "id": "coverage:domain-number-float-base", - "sourceType": "domain", - "command": "number.float", - "label": "number.float", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float()", - "expectedUiSchemaText": "Value\nnumber.float()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-float-base" - }, - { - "id": "coverage:domain-number-float-example-1", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float()", - "expectedUiSchemaText": "Value\nnumber.float()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-1" - }, - { - "id": "coverage:domain-number-float-example-2", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-2" - }, - { - "id": "coverage:domain-number-float-example-3", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-3" - }, - { - "id": "coverage:domain-number-float-example-4", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-4" - }, - { - "id": "coverage:domain-number-float-example-5", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10, fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10, fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10, fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-5" - }, - { - "id": "coverage:domain-number-float-example-6", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10, multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10, multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10, multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-6" - }, - { - "id": "coverage:domain-number-float-example-7", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=10)", - "expectedUiSchemaText": "Value\nnumber.float(max=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-7" - }, - { - "id": "coverage:domain-number-float-arg-fractionDigits", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg fractionDigits", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-fractionDigits" - }, - { - "id": "coverage:domain-number-float-arg-max", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=3)", - "expectedUiSchemaText": "Value\nnumber.float(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-max" - }, - { - "id": "coverage:domain-number-float-arg-min", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1)", - "expectedUiSchemaText": "Value\nnumber.float(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-min" - }, - { - "id": "coverage:domain-number-float-arg-multipleOf", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["multipleOf"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-multipleOf" - }, - { - "id": "coverage:domain-number-float-pair-fractionDigits-max", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair fractionDigits/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2, max=3)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-fractionDigits-max" - }, - { - "id": "coverage:domain-number-float-pair-max-min", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.float(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-max-min" - }, - { - "id": "coverage:domain-number-float-pair-min-multipleOf", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair min/multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "multipleOf"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-min-multipleOf" - }, - { - "id": "coverage:domain-number-hex-base", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex()", - "expectedUiSchemaText": "Value\nnumber.hex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-hex-base" - }, - { - "id": "coverage:domain-number-hex-example-1", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex()", - "expectedUiSchemaText": "Value\nnumber.hex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-1" - }, - { - "id": "coverage:domain-number-hex-example-2", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.hex(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-2" - }, - { - "id": "coverage:domain-number-hex-example-3", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=5)", - "expectedUiSchemaText": "Value\nnumber.hex(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-3" - }, - { - "id": "coverage:domain-number-hex-arg-min", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(min=1)", - "expectedUiSchemaText": "Value\nnumber.hex(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-hex-arg-min" - }, - { - "id": "coverage:domain-number-hex-arg-max", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=3)", - "expectedUiSchemaText": "Value\nnumber.hex(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-hex-arg-max" - }, - { - "id": "coverage:domain-number-hex-pair-min-max", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.hex(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-hex-pair-min-max" - }, - { - "id": "coverage:domain-number-int-base", - "sourceType": "domain", - "command": "number.int", - "label": "number.int", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int()", - "expectedUiSchemaText": "Value\nnumber.int()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-int-base" - }, - { - "id": "coverage:domain-number-int-example-1", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int()", - "expectedUiSchemaText": "Value\nnumber.int()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-1" - }, - { - "id": "coverage:domain-number-int-example-2", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.int(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-2" - }, - { - "id": "coverage:domain-number-int-example-3", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=5)", - "expectedUiSchemaText": "Value\nnumber.int(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-3" - }, - { - "id": "coverage:domain-number-int-example-4", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(multipleOf=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(multipleOf=1)", - "expectedUiSchemaText": "Value\nnumber.int(multipleOf=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-4" - }, - { - "id": "coverage:domain-number-int-arg-min", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(min=1)", - "expectedUiSchemaText": "Value\nnumber.int(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-min" - }, - { - "id": "coverage:domain-number-int-arg-max", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=3)", - "expectedUiSchemaText": "Value\nnumber.int(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-max" - }, - { - "id": "coverage:domain-number-int-arg-multipleOf", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(multipleOf=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(multipleOf=4)", - "expectedUiSchemaText": "Value\nnumber.int(multipleOf=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["multipleOf"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-multipleOf" - }, - { - "id": "coverage:domain-number-int-pair-min-max", - "sourceType": "domain", - "command": "number.int", - "label": "number.int pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.int(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-int-pair-min-max" - }, - { - "id": "coverage:domain-number-int-pair-max-multipleOf", - "sourceType": "domain", - "command": "number.int", - "label": "number.int pair max/multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=3, multipleOf=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=3, multipleOf=4)", - "expectedUiSchemaText": "Value\nnumber.int(max=3, multipleOf=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "multipleOf"], - "origins": ["pair"], - "scenarioId": "domain-number-int-pair-max-multipleOf" - }, - { - "id": "coverage:domain-number-octal-base", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal()", - "expectedUiSchemaText": "Value\nnumber.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-octal-base" - }, - { - "id": "coverage:domain-number-octal-example-1", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal()", - "expectedUiSchemaText": "Value\nnumber.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-1" - }, - { - "id": "coverage:domain-number-octal-example-2", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=5)", - "expectedUiSchemaText": "Value\nnumber.octal(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-2" - }, - { - "id": "coverage:domain-number-octal-example-3", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-3" - }, - { - "id": "coverage:domain-number-octal-arg-max", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=3)", - "expectedUiSchemaText": "Value\nnumber.octal(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-octal-arg-max" - }, - { - "id": "coverage:domain-number-octal-arg-min", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-octal-arg-min" - }, - { - "id": "coverage:domain-number-octal-pair-max-min", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-octal-pair-max-min" - }, - { - "id": "coverage:domain-number-romanNumeral-base", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral()", - "expectedUiSchemaText": "Value\nnumber.romanNumeral()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-romanNumeral-base" - }, - { - "id": "coverage:domain-number-romanNumeral-example-1", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral()", - "expectedUiSchemaText": "Value\nnumber.romanNumeral()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-1" - }, - { - "id": "coverage:domain-number-romanNumeral-example-2", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-2" - }, - { - "id": "coverage:domain-number-romanNumeral-example-3", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=5)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-3" - }, - { - "id": "coverage:domain-number-romanNumeral-arg-min", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(min=1)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-romanNumeral-arg-min" - }, - { - "id": "coverage:domain-number-romanNumeral-arg-max", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=3)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-romanNumeral-arg-max" - }, - { - "id": "coverage:domain-number-romanNumeral-pair-min-max", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-romanNumeral-pair-min-max" - }, - { - "id": "coverage:domain-person-bio-base", - "sourceType": "domain", - "command": "person.bio", - "label": "person.bio", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.bio", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.bio()", - "expectedUiSchemaText": "Value\nperson.bio()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-bio-base" - }, - { - "id": "coverage:domain-person-bio-example-1", - "sourceType": "domain", - "command": "person.bio", - "label": "person.bio example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.bio", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.bio()", - "expectedUiSchemaText": "Value\nperson.bio()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-bio-example-1" - }, - { - "id": "coverage:domain-person-firstName-base", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName()", - "expectedUiSchemaText": "Value\nperson.firstName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-firstName-base" - }, - { - "id": "coverage:domain-person-firstName-example-1", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName()", - "expectedUiSchemaText": "Value\nperson.firstName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-firstName-example-1" - }, - { - "id": "coverage:domain-person-firstName-example-2", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-firstName-example-2" - }, - { - "id": "coverage:domain-person-firstName-arg-sex", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-firstName-arg-sex" - }, - { - "id": "coverage:domain-person-fullName-base", - "sourceType": "domain", - "command": "person.fullName", - "label": "person.fullName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.fullName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.fullName()", - "expectedUiSchemaText": "Value\nperson.fullName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-fullName-base" - }, - { - "id": "coverage:domain-person-fullName-example-1", - "sourceType": "domain", - "command": "person.fullName", - "label": "person.fullName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.fullName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.fullName()", - "expectedUiSchemaText": "Value\nperson.fullName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-fullName-example-1" - }, - { - "id": "coverage:domain-person-gender-base", - "sourceType": "domain", - "command": "person.gender", - "label": "person.gender", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.gender", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.gender()", - "expectedUiSchemaText": "Value\nperson.gender()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-gender-base" - }, - { - "id": "coverage:domain-person-gender-example-1", - "sourceType": "domain", - "command": "person.gender", - "label": "person.gender example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.gender", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.gender()", - "expectedUiSchemaText": "Value\nperson.gender()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-gender-example-1" - }, - { - "id": "coverage:domain-person-jobArea-base", - "sourceType": "domain", - "command": "person.jobArea", - "label": "person.jobArea", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobArea", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobArea()", - "expectedUiSchemaText": "Value\nperson.jobArea()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobArea-base" - }, - { - "id": "coverage:domain-person-jobArea-example-1", - "sourceType": "domain", - "command": "person.jobArea", - "label": "person.jobArea example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobArea", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobArea()", - "expectedUiSchemaText": "Value\nperson.jobArea()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobArea-example-1" - }, - { - "id": "coverage:domain-person-jobDescriptor-base", - "sourceType": "domain", - "command": "person.jobDescriptor", - "label": "person.jobDescriptor", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobDescriptor()", - "expectedUiSchemaText": "Value\nperson.jobDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobDescriptor-base" - }, - { - "id": "coverage:domain-person-jobDescriptor-example-1", - "sourceType": "domain", - "command": "person.jobDescriptor", - "label": "person.jobDescriptor example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobDescriptor()", - "expectedUiSchemaText": "Value\nperson.jobDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobDescriptor-example-1" - }, - { - "id": "coverage:domain-person-jobTitle-base", - "sourceType": "domain", - "command": "person.jobTitle", - "label": "person.jobTitle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobTitle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobTitle()", - "expectedUiSchemaText": "Value\nperson.jobTitle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobTitle-base" - }, - { - "id": "coverage:domain-person-jobTitle-example-1", - "sourceType": "domain", - "command": "person.jobTitle", - "label": "person.jobTitle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobTitle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobTitle()", - "expectedUiSchemaText": "Value\nperson.jobTitle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobTitle-example-1" - }, - { - "id": "coverage:domain-person-jobType-base", - "sourceType": "domain", - "command": "person.jobType", - "label": "person.jobType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobType()", - "expectedUiSchemaText": "Value\nperson.jobType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobType-base" - }, - { - "id": "coverage:domain-person-jobType-example-1", - "sourceType": "domain", - "command": "person.jobType", - "label": "person.jobType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobType()", - "expectedUiSchemaText": "Value\nperson.jobType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobType-example-1" - }, - { - "id": "coverage:domain-person-lastName-base", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName()", - "expectedUiSchemaText": "Value\nperson.lastName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-lastName-base" - }, - { - "id": "coverage:domain-person-lastName-example-1", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName()", - "expectedUiSchemaText": "Value\nperson.lastName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-lastName-example-1" - }, - { - "id": "coverage:domain-person-lastName-example-2", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-lastName-example-2" - }, - { - "id": "coverage:domain-person-lastName-arg-sex", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-lastName-arg-sex" - }, - { - "id": "coverage:domain-person-middleName-base", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName()", - "expectedUiSchemaText": "Value\nperson.middleName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-middleName-base" - }, - { - "id": "coverage:domain-person-middleName-example-1", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName()", - "expectedUiSchemaText": "Value\nperson.middleName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-middleName-example-1" - }, - { - "id": "coverage:domain-person-middleName-example-2", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-middleName-example-2" - }, - { - "id": "coverage:domain-person-middleName-arg-sex", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-middleName-arg-sex" - }, - { - "id": "coverage:domain-person-prefix-base", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix()", - "expectedUiSchemaText": "Value\nperson.prefix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-prefix-base" - }, - { - "id": "coverage:domain-person-prefix-example-1", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix()", - "expectedUiSchemaText": "Value\nperson.prefix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-prefix-example-1" - }, - { - "id": "coverage:domain-person-prefix-example-2", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-prefix-example-2" - }, - { - "id": "coverage:domain-person-prefix-arg-sex", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-prefix-arg-sex" - }, - { - "id": "coverage:domain-person-sex-base", - "sourceType": "domain", - "command": "person.sex", - "label": "person.sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sex()", - "expectedUiSchemaText": "Value\nperson.sex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-sex-base" - }, - { - "id": "coverage:domain-person-sex-example-1", - "sourceType": "domain", - "command": "person.sex", - "label": "person.sex example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sex()", - "expectedUiSchemaText": "Value\nperson.sex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-sex-example-1" - }, - { - "id": "coverage:domain-person-sexType-base", - "sourceType": "domain", - "command": "person.sexType", - "label": "person.sexType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sexType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sexType()", - "expectedUiSchemaText": "Value\nperson.sexType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-sexType-base" - }, - { - "id": "coverage:domain-person-sexType-example-1", - "sourceType": "domain", - "command": "person.sexType", - "label": "person.sexType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sexType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sexType()", - "expectedUiSchemaText": "Value\nperson.sexType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-sexType-example-1" - }, - { - "id": "coverage:domain-person-suffix-base", - "sourceType": "domain", - "command": "person.suffix", - "label": "person.suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.suffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.suffix()", - "expectedUiSchemaText": "Value\nperson.suffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-suffix-base" - }, - { - "id": "coverage:domain-person-suffix-example-1", - "sourceType": "domain", - "command": "person.suffix", - "label": "person.suffix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.suffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.suffix()", - "expectedUiSchemaText": "Value\nperson.suffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-suffix-example-1" - }, - { - "id": "coverage:domain-person-zodiacSign-base", - "sourceType": "domain", - "command": "person.zodiacSign", - "label": "person.zodiacSign", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.zodiacSign", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.zodiacSign()", - "expectedUiSchemaText": "Value\nperson.zodiacSign()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-zodiacSign-base" - }, - { - "id": "coverage:domain-person-zodiacSign-example-1", - "sourceType": "domain", - "command": "person.zodiacSign", - "label": "person.zodiacSign example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.zodiacSign", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.zodiacSign()", - "expectedUiSchemaText": "Value\nperson.zodiacSign()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-zodiacSign-example-1" - }, - { - "id": "coverage:domain-phone-imei-base", - "sourceType": "domain", - "command": "phone.imei", - "label": "phone.imei", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.imei", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.imei()", - "expectedUiSchemaText": "Value\nphone.imei()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-phone-imei-base" - }, - { - "id": "coverage:domain-phone-imei-example-1", - "sourceType": "domain", - "command": "phone.imei", - "label": "phone.imei example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.imei", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.imei()", - "expectedUiSchemaText": "Value\nphone.imei()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-phone-imei-example-1" - }, - { - "id": "coverage:domain-phone-number-base", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number()", - "expectedUiSchemaText": "Value\nphone.number()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-phone-number-base" - }, - { - "id": "coverage:domain-phone-number-example-1", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number()", - "expectedUiSchemaText": "Value\nphone.number()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["example"], - "scenarioId": "domain-phone-number-example-1" - }, - { - "id": "coverage:domain-phone-number-example-2", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "(style=\"international\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number(style=\"international\")", - "expectedUiSchemaText": "Value\nphone.number(style=\"international\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["example"], - "scenarioId": "domain-phone-number-example-2" - }, - { - "id": "coverage:domain-phone-number-arg-style", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number arg style", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "(style=\"international\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number(style=\"international\")", - "expectedUiSchemaText": "Value\nphone.number(style=\"international\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["arg"], - "scenarioId": "domain-phone-number-arg-style" - }, - { - "id": "coverage:domain-string-alpha-base", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha()", - "expectedUiSchemaText": "Value\nstring.alpha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-alpha-base" - }, - { - "id": "coverage:domain-string-alpha-example-1", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha()", - "expectedUiSchemaText": "Value\nstring.alpha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-1" - }, - { - "id": "coverage:domain-string-alpha-example-2", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5)", - "expectedUiSchemaText": "Value\nstring.alpha(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-2" - }, - { - "id": "coverage:domain-string-alpha-example-3", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-3" - }, - { - "id": "coverage:domain-string-alpha-example-4", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-4" - }, - { - "id": "coverage:domain-string-alpha-example-5", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alpha(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-5" - }, - { - "id": "coverage:domain-string-alpha-example-6", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-6" - }, - { - "id": "coverage:domain-string-alpha-arg-length", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=4)", - "expectedUiSchemaText": "Value\nstring.alpha(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-length" - }, - { - "id": "coverage:domain-string-alpha-arg-casing", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-casing" - }, - { - "id": "coverage:domain-string-alpha-arg-exclude", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alpha(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-exclude" - }, - { - "id": "coverage:domain-string-alpha-pair-length-casing", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha pair length/casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=4, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=4, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(length=4, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing"], - "origins": ["pair"], - "scenarioId": "domain-string-alpha-pair-length-casing" - }, - { - "id": "coverage:domain-string-alpha-pair-casing-exclude", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha pair casing/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\", exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-alpha-pair-casing-exclude" - }, - { - "id": "coverage:domain-string-alphanumeric-base", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric()", - "expectedUiSchemaText": "Value\nstring.alphanumeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-alphanumeric-base" - }, - { - "id": "coverage:domain-string-alphanumeric-example-1", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric()", - "expectedUiSchemaText": "Value\nstring.alphanumeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-1" - }, - { - "id": "coverage:domain-string-alphanumeric-example-2", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=5)", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-2" - }, - { - "id": "coverage:domain-string-alphanumeric-example-3", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-3" - }, - { - "id": "coverage:domain-string-alphanumeric-example-4", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-4" - }, - { - "id": "coverage:domain-string-alphanumeric-arg-length", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=4)", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-length" - }, - { - "id": "coverage:domain-string-alphanumeric-arg-casing", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-casing" - }, - { - "id": "coverage:domain-string-alphanumeric-arg-exclude", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-exclude" - }, - { - "id": "coverage:domain-string-alphanumeric-pair-length-casing", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric pair length/casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=4, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=4, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=4, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing"], - "origins": ["pair"], - "scenarioId": "domain-string-alphanumeric-pair-length-casing" - }, - { - "id": "coverage:domain-string-alphanumeric-pair-casing-exclude", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric pair casing/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\", exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-alphanumeric-pair-casing-exclude" - }, - { - "id": "coverage:domain-string-binary-base", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary()", - "expectedUiSchemaText": "Value\nstring.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-binary-base" - }, - { - "id": "coverage:domain-string-binary-example-1", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary()", - "expectedUiSchemaText": "Value\nstring.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-1" - }, - { - "id": "coverage:domain-string-binary-example-2", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=5)", - "expectedUiSchemaText": "Value\nstring.binary(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-2" - }, - { - "id": "coverage:domain-string-binary-example-3", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.binary(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-3" - }, - { - "id": "coverage:domain-string-binary-arg-length", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=4)", - "expectedUiSchemaText": "Value\nstring.binary(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-binary-arg-length" - }, - { - "id": "coverage:domain-string-binary-arg-prefix", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.binary(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-binary-arg-prefix" - }, - { - "id": "coverage:domain-string-binary-pair-length-prefix", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.binary(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-binary-pair-length-prefix" - }, - { - "id": "coverage:domain-string-counterString-base", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(1, 25, \"*\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(1, 25, \"*\")", - "expectedUiSchemaText": "Value\nstring.counterString(1, 25, \"*\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-counterString-base" - }, - { - "id": "coverage:domain-string-counterString-example-1", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString()", - "expectedUiSchemaText": "Value\nstring.counterString()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-1" - }, - { - "id": "coverage:domain-string-counterString-example-2", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=15)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=15)", - "expectedUiSchemaText": "Value\nstring.counterString(min=15)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-2" - }, - { - "id": "coverage:domain-string-counterString-example-3", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5, max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-3" - }, - { - "id": "coverage:domain-string-counterString-example-4", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=12, max=12, delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=12, max=12, delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(min=12, max=12, delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-4" - }, - { - "id": "coverage:domain-string-counterString-example-5", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=10, min=1)", - "expectedUiSchemaText": "Value\nstring.counterString(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-5" - }, - { - "id": "coverage:domain-string-counterString-example-6", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-6" - }, - { - "id": "coverage:domain-string-counterString-example-7", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-7" - }, - { - "id": "coverage:domain-string-counterString-arg-min", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-min" - }, - { - "id": "coverage:domain-string-counterString-arg-max", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-max" - }, - { - "id": "coverage:domain-string-counterString-arg-delimiter", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg delimiter", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["delimiter"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-delimiter" - }, - { - "id": "coverage:domain-string-counterString-pair-min-max", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5, max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-string-counterString-pair-min-max" - }, - { - "id": "coverage:domain-string-counterString-pair-max-delimiter", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString pair max/delimiter", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12, delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12, delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(max=12, delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "delimiter"], - "origins": ["pair"], - "scenarioId": "domain-string-counterString-pair-max-delimiter" - }, - { - "id": "coverage:domain-string-fromCharacters-base", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(\"ABC123\", 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-fromCharacters-base" - }, - { - "id": "coverage:domain-string-fromCharacters-example-1", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=6)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-1" - }, - { - "id": "coverage:domain-string-fromCharacters-example-2", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=[\"A\", \"B\", \"C\"], length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=[\"A\", \"B\", \"C\"], length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=[\"A\", \"B\", \"C\"], length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-2" - }, - { - "id": "coverage:domain-string-fromCharacters-example-3", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-3" - }, - { - "id": "coverage:domain-string-fromCharacters-arg-characters", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters arg characters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\")", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters"], - "origins": ["arg"], - "scenarioId": "domain-string-fromCharacters-arg-characters" - }, - { - "id": "coverage:domain-string-fromCharacters-arg-length", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-fromCharacters-arg-length" - }, - { - "id": "coverage:domain-string-fromCharacters-pair-characters-length", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters pair characters/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["pair"], - "scenarioId": "domain-string-fromCharacters-pair-characters-length" - }, - { - "id": "coverage:domain-string-hexadecimal-base", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal()", - "expectedUiSchemaText": "Value\nstring.hexadecimal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-hexadecimal-base" - }, - { - "id": "coverage:domain-string-hexadecimal-example-1", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal()", - "expectedUiSchemaText": "Value\nstring.hexadecimal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-1" - }, - { - "id": "coverage:domain-string-hexadecimal-example-2", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-2" - }, - { - "id": "coverage:domain-string-hexadecimal-example-3", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=5)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-3" - }, - { - "id": "coverage:domain-string-hexadecimal-example-4", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-4" - }, - { - "id": "coverage:domain-string-hexadecimal-arg-casing", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-casing" - }, - { - "id": "coverage:domain-string-hexadecimal-arg-length", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=4)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-length" - }, - { - "id": "coverage:domain-string-hexadecimal-arg-prefix", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-prefix" - }, - { - "id": "coverage:domain-string-hexadecimal-pair-casing-length", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal pair casing/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\", length=4)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length"], - "origins": ["pair"], - "scenarioId": "domain-string-hexadecimal-pair-casing-length" - }, - { - "id": "coverage:domain-string-hexadecimal-pair-length-prefix", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-hexadecimal-pair-length-prefix" - }, - { - "id": "coverage:domain-string-nanoid-base", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid()", - "expectedUiSchemaText": "Value\nstring.nanoid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-nanoid-base" - }, - { - "id": "coverage:domain-string-nanoid-example-1", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid()", - "expectedUiSchemaText": "Value\nstring.nanoid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-nanoid-example-1" - }, - { - "id": "coverage:domain-string-nanoid-example-2", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid(length=5)", - "expectedUiSchemaText": "Value\nstring.nanoid(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-nanoid-example-2" - }, - { - "id": "coverage:domain-string-nanoid-arg-length", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid(length=4)", - "expectedUiSchemaText": "Value\nstring.nanoid(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-nanoid-arg-length" - }, - { - "id": "coverage:domain-string-numeric-base", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric()", - "expectedUiSchemaText": "Value\nstring.numeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-numeric-base" - }, - { - "id": "coverage:domain-string-numeric-example-1", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric()", - "expectedUiSchemaText": "Value\nstring.numeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-1" - }, - { - "id": "coverage:domain-string-numeric-example-2", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=5)", - "expectedUiSchemaText": "Value\nstring.numeric(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-2" - }, - { - "id": "coverage:domain-string-numeric-example-3", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-3" - }, - { - "id": "coverage:domain-string-numeric-example-4", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.numeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-4" - }, - { - "id": "coverage:domain-string-numeric-arg-length", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=4)", - "expectedUiSchemaText": "Value\nstring.numeric(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-length" - }, - { - "id": "coverage:domain-string-numeric-arg-allowLeadingZeros", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg allowLeadingZeros", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowLeadingZeros"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-allowLeadingZeros" - }, - { - "id": "coverage:domain-string-numeric-arg-exclude", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.numeric(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-exclude" - }, - { - "id": "coverage:domain-string-numeric-pair-length-allowLeadingZeros", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric pair length/allowLeadingZeros", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=4, allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=4, allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(length=4, allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros"], - "origins": ["pair"], - "scenarioId": "domain-string-numeric-pair-length-allowLeadingZeros" - }, - { - "id": "coverage:domain-string-numeric-pair-allowLeadingZeros-exclude", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric pair allowLeadingZeros/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowLeadingZeros", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-numeric-pair-allowLeadingZeros-exclude" - }, - { - "id": "coverage:domain-string-octal-base", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal()", - "expectedUiSchemaText": "Value\nstring.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-octal-base" - }, - { - "id": "coverage:domain-string-octal-example-1", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal()", - "expectedUiSchemaText": "Value\nstring.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-1" - }, - { - "id": "coverage:domain-string-octal-example-2", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=5)", - "expectedUiSchemaText": "Value\nstring.octal(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-2" - }, - { - "id": "coverage:domain-string-octal-example-3", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.octal(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-3" - }, - { - "id": "coverage:domain-string-octal-arg-length", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=4)", - "expectedUiSchemaText": "Value\nstring.octal(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-octal-arg-length" - }, - { - "id": "coverage:domain-string-octal-arg-prefix", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.octal(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-octal-arg-prefix" - }, - { - "id": "coverage:domain-string-octal-pair-length-prefix", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.octal(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-octal-pair-length-prefix" - }, - { - "id": "coverage:domain-string-sample-base", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample()", - "expectedUiSchemaText": "Value\nstring.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-sample-base" - }, - { - "id": "coverage:domain-string-sample-example-1", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample()", - "expectedUiSchemaText": "Value\nstring.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-sample-example-1" - }, - { - "id": "coverage:domain-string-sample-example-2", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample(length=5)", - "expectedUiSchemaText": "Value\nstring.sample(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-sample-example-2" - }, - { - "id": "coverage:domain-string-sample-arg-length", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample(length=4)", - "expectedUiSchemaText": "Value\nstring.sample(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-sample-arg-length" - }, - { - "id": "coverage:domain-string-symbol-base", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol()", - "expectedUiSchemaText": "Value\nstring.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-symbol-base" - }, - { - "id": "coverage:domain-string-symbol-example-1", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol()", - "expectedUiSchemaText": "Value\nstring.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-symbol-example-1" - }, - { - "id": "coverage:domain-string-symbol-example-2", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol(length=5)", - "expectedUiSchemaText": "Value\nstring.symbol(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-symbol-example-2" - }, - { - "id": "coverage:domain-string-symbol-arg-length", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol(length=4)", - "expectedUiSchemaText": "Value\nstring.symbol(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-symbol-arg-length" - }, - { - "id": "coverage:domain-string-ulid-base", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid()", - "expectedUiSchemaText": "Value\nstring.ulid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-ulid-base" - }, - { - "id": "coverage:domain-string-ulid-example-1", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid()", - "expectedUiSchemaText": "Value\nstring.ulid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-string-ulid-example-1" - }, - { - "id": "coverage:domain-string-ulid-example-2", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "(refDate=1718755200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid(refDate=1718755200000)", - "expectedUiSchemaText": "Value\nstring.ulid(refDate=1718755200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-string-ulid-example-2" - }, - { - "id": "coverage:domain-string-ulid-arg-refDate", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid(refDate=1)", - "expectedUiSchemaText": "Value\nstring.ulid(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-string-ulid-arg-refDate" - }, - { - "id": "coverage:domain-string-uuid-base", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid()", - "expectedUiSchemaText": "Value\nstring.uuid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-uuid-base" - }, - { - "id": "coverage:domain-string-uuid-example-1", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid()", - "expectedUiSchemaText": "Value\nstring.uuid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-1" - }, - { - "id": "coverage:domain-string-uuid-example-2", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(version=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(version=7)", - "expectedUiSchemaText": "Value\nstring.uuid(version=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-2" - }, - { - "id": "coverage:domain-string-uuid-example-3", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(refDate=\"2026-06-18T00:00:00.000Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(refDate=\"2026-06-18T00:00:00.000Z\")", - "expectedUiSchemaText": "Value\nstring.uuid(refDate=\"2026-06-18T00:00:00.000Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-3" - }, - { - "id": "coverage:domain-string-uuid-arg-version", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid arg version", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(version=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(version=4)", - "expectedUiSchemaText": "Value\nstring.uuid(version=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version"], - "origins": ["arg"], - "scenarioId": "domain-string-uuid-arg-version" - }, - { - "id": "coverage:domain-string-uuid-arg-refDate", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(refDate=1)", - "expectedUiSchemaText": "Value\nstring.uuid(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-string-uuid-arg-refDate" - }, - { - "id": "coverage:domain-string-uuid-pair-version-refDate", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid pair version/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(version=4, refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(version=4, refDate=1)", - "expectedUiSchemaText": "Value\nstring.uuid(version=4, refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-string-uuid-pair-version-refDate" - }, - { - "id": "coverage:domain-system-commonFileExt-base", - "sourceType": "domain", - "command": "system.commonFileExt", - "label": "system.commonFileExt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileExt()", - "expectedUiSchemaText": "Value\nsystem.commonFileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileExt-base" - }, - { - "id": "coverage:domain-system-commonFileExt-example-1", - "sourceType": "domain", - "command": "system.commonFileExt", - "label": "system.commonFileExt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileExt()", - "expectedUiSchemaText": "Value\nsystem.commonFileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-commonFileExt-example-1" - }, - { - "id": "coverage:domain-system-commonFileName-base", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName()", - "expectedUiSchemaText": "Value\nsystem.commonFileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileName-base" - }, - { - "id": "coverage:domain-system-commonFileName-example-1", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName()", - "expectedUiSchemaText": "Value\nsystem.commonFileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["example"], - "scenarioId": "domain-system-commonFileName-example-1" - }, - { - "id": "coverage:domain-system-commonFileName-example-2", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "(extension=\"txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName(extension=\"txt\")", - "expectedUiSchemaText": "Value\nsystem.commonFileName(extension=\"txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["example"], - "scenarioId": "domain-system-commonFileName-example-2" - }, - { - "id": "coverage:domain-system-commonFileName-arg-extension", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName arg extension", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "(extension=\"system-commonFileName-extension\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName(extension=\"system-commonFileName-extension\")", - "expectedUiSchemaText": "Value\nsystem.commonFileName(extension=\"system-commonFileName-extension\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["arg"], - "scenarioId": "domain-system-commonFileName-arg-extension" - }, - { - "id": "coverage:domain-system-commonFileType-base", - "sourceType": "domain", - "command": "system.commonFileType", - "label": "system.commonFileType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileType()", - "expectedUiSchemaText": "Value\nsystem.commonFileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileType-base" - }, - { - "id": "coverage:domain-system-commonFileType-example-1", - "sourceType": "domain", - "command": "system.commonFileType", - "label": "system.commonFileType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileType()", - "expectedUiSchemaText": "Value\nsystem.commonFileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-commonFileType-example-1" - }, - { - "id": "coverage:domain-system-cron-base", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron()", - "expectedUiSchemaText": "Value\nsystem.cron()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-cron-base" - }, - { - "id": "coverage:domain-system-cron-example-1", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron()", - "expectedUiSchemaText": "Value\nsystem.cron()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-1" - }, - { - "id": "coverage:domain-system-cron-example-2", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-2" - }, - { - "id": "coverage:domain-system-cron-example-3", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-3" - }, - { - "id": "coverage:domain-system-cron-arg-includeNonStandard", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron arg includeNonStandard", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard"], - "origins": ["arg"], - "scenarioId": "domain-system-cron-arg-includeNonStandard" - }, - { - "id": "coverage:domain-system-cron-arg-includeYear", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron arg includeYear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeYear"], - "origins": ["arg"], - "scenarioId": "domain-system-cron-arg-includeYear" - }, - { - "id": "coverage:domain-system-cron-pair-includeNonStandard-includeYear", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron pair includeNonStandard/includeYear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true, includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true, includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true, includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["pair"], - "scenarioId": "domain-system-cron-pair-includeNonStandard-includeYear" - }, - { - "id": "coverage:domain-system-directoryPath-base", - "sourceType": "domain", - "command": "system.directoryPath", - "label": "system.directoryPath", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.directoryPath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.directoryPath()", - "expectedUiSchemaText": "Value\nsystem.directoryPath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-directoryPath-base" - }, - { - "id": "coverage:domain-system-directoryPath-example-1", - "sourceType": "domain", - "command": "system.directoryPath", - "label": "system.directoryPath example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.directoryPath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.directoryPath()", - "expectedUiSchemaText": "Value\nsystem.directoryPath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-directoryPath-example-1" - }, - { - "id": "coverage:domain-system-fileExt-base", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt()", - "expectedUiSchemaText": "Value\nsystem.fileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileExt-base" - }, - { - "id": "coverage:domain-system-fileExt-example-1", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt()", - "expectedUiSchemaText": "Value\nsystem.fileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["example"], - "scenarioId": "domain-system-fileExt-example-1" - }, - { - "id": "coverage:domain-system-fileExt-example-2", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "(mimeType=\"image/png\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt(mimeType=\"image/png\")", - "expectedUiSchemaText": "Value\nsystem.fileExt(mimeType=\"image/png\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["example"], - "scenarioId": "domain-system-fileExt-example-2" - }, - { - "id": "coverage:domain-system-fileExt-arg-mimeType", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt arg mimeType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "(mimeType=\"system-fileExt-mimeType\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt(mimeType=\"system-fileExt-mimeType\")", - "expectedUiSchemaText": "Value\nsystem.fileExt(mimeType=\"system-fileExt-mimeType\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["arg"], - "scenarioId": "domain-system-fileExt-arg-mimeType" - }, - { - "id": "coverage:domain-system-fileName-base", - "sourceType": "domain", - "command": "system.fileName", - "label": "system.fileName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileName()", - "expectedUiSchemaText": "Value\nsystem.fileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileName-base" - }, - { - "id": "coverage:domain-system-fileName-example-1", - "sourceType": "domain", - "command": "system.fileName", - "label": "system.fileName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileName()", - "expectedUiSchemaText": "Value\nsystem.fileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-fileName-example-1" - }, - { - "id": "coverage:domain-system-filePath-base", - "sourceType": "domain", - "command": "system.filePath", - "label": "system.filePath", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.filePath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.filePath()", - "expectedUiSchemaText": "Value\nsystem.filePath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-filePath-base" - }, - { - "id": "coverage:domain-system-filePath-example-1", - "sourceType": "domain", - "command": "system.filePath", - "label": "system.filePath example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.filePath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.filePath()", - "expectedUiSchemaText": "Value\nsystem.filePath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-filePath-example-1" - }, - { - "id": "coverage:domain-system-fileType-base", - "sourceType": "domain", - "command": "system.fileType", - "label": "system.fileType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileType()", - "expectedUiSchemaText": "Value\nsystem.fileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileType-base" - }, - { - "id": "coverage:domain-system-fileType-example-1", - "sourceType": "domain", - "command": "system.fileType", - "label": "system.fileType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileType()", - "expectedUiSchemaText": "Value\nsystem.fileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-fileType-example-1" - }, - { - "id": "coverage:domain-system-mimeType-base", - "sourceType": "domain", - "command": "system.mimeType", - "label": "system.mimeType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.mimeType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.mimeType()", - "expectedUiSchemaText": "Value\nsystem.mimeType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-mimeType-base" - }, - { - "id": "coverage:domain-system-mimeType-example-1", - "sourceType": "domain", - "command": "system.mimeType", - "label": "system.mimeType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.mimeType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.mimeType()", - "expectedUiSchemaText": "Value\nsystem.mimeType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-mimeType-example-1" - }, - { - "id": "coverage:domain-system-networkInterface-base", - "sourceType": "domain", - "command": "system.networkInterface", - "label": "system.networkInterface", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.networkInterface", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.networkInterface()", - "expectedUiSchemaText": "Value\nsystem.networkInterface()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-networkInterface-base" - }, - { - "id": "coverage:domain-system-networkInterface-example-1", - "sourceType": "domain", - "command": "system.networkInterface", - "label": "system.networkInterface example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.networkInterface", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.networkInterface()", - "expectedUiSchemaText": "Value\nsystem.networkInterface()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-networkInterface-example-1" - }, - { - "id": "coverage:domain-system-semver-base", - "sourceType": "domain", - "command": "system.semver", - "label": "system.semver", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.semver", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.semver()", - "expectedUiSchemaText": "Value\nsystem.semver()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-semver-base" - }, - { - "id": "coverage:domain-system-semver-example-1", - "sourceType": "domain", - "command": "system.semver", - "label": "system.semver example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.semver", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.semver()", - "expectedUiSchemaText": "Value\nsystem.semver()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-semver-example-1" - }, - { - "id": "coverage:domain-vehicle-bicycle-base", - "sourceType": "domain", - "command": "vehicle.bicycle", - "label": "vehicle.bicycle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.bicycle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.bicycle()", - "expectedUiSchemaText": "Value\nvehicle.bicycle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-bicycle-base" - }, - { - "id": "coverage:domain-vehicle-bicycle-example-1", - "sourceType": "domain", - "command": "vehicle.bicycle", - "label": "vehicle.bicycle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.bicycle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.bicycle()", - "expectedUiSchemaText": "Value\nvehicle.bicycle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-bicycle-example-1" - }, - { - "id": "coverage:domain-vehicle-color-base", - "sourceType": "domain", - "command": "vehicle.color", - "label": "vehicle.color", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.color()", - "expectedUiSchemaText": "Value\nvehicle.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-color-base" - }, - { - "id": "coverage:domain-vehicle-color-example-1", - "sourceType": "domain", - "command": "vehicle.color", - "label": "vehicle.color example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.color()", - "expectedUiSchemaText": "Value\nvehicle.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-color-example-1" - }, - { - "id": "coverage:domain-vehicle-fuel-base", - "sourceType": "domain", - "command": "vehicle.fuel", - "label": "vehicle.fuel", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.fuel", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.fuel()", - "expectedUiSchemaText": "Value\nvehicle.fuel()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-fuel-base" - }, - { - "id": "coverage:domain-vehicle-fuel-example-1", - "sourceType": "domain", - "command": "vehicle.fuel", - "label": "vehicle.fuel example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.fuel", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.fuel()", - "expectedUiSchemaText": "Value\nvehicle.fuel()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-fuel-example-1" - }, - { - "id": "coverage:domain-vehicle-manufacturer-base", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "label": "vehicle.manufacturer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.manufacturer()", - "expectedUiSchemaText": "Value\nvehicle.manufacturer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-manufacturer-base" - }, - { - "id": "coverage:domain-vehicle-manufacturer-example-1", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "label": "vehicle.manufacturer example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.manufacturer()", - "expectedUiSchemaText": "Value\nvehicle.manufacturer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-manufacturer-example-1" - }, - { - "id": "coverage:domain-vehicle-model-base", - "sourceType": "domain", - "command": "vehicle.model", - "label": "vehicle.model", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.model", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.model()", - "expectedUiSchemaText": "Value\nvehicle.model()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-model-base" - }, - { - "id": "coverage:domain-vehicle-model-example-1", - "sourceType": "domain", - "command": "vehicle.model", - "label": "vehicle.model example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.model", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.model()", - "expectedUiSchemaText": "Value\nvehicle.model()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-model-example-1" - }, - { - "id": "coverage:domain-vehicle-type-base", - "sourceType": "domain", - "command": "vehicle.type", - "label": "vehicle.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.type()", - "expectedUiSchemaText": "Value\nvehicle.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-type-base" - }, - { - "id": "coverage:domain-vehicle-type-example-1", - "sourceType": "domain", - "command": "vehicle.type", - "label": "vehicle.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.type()", - "expectedUiSchemaText": "Value\nvehicle.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-type-example-1" - }, - { - "id": "coverage:domain-vehicle-vehicle-base", - "sourceType": "domain", - "command": "vehicle.vehicle", - "label": "vehicle.vehicle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vehicle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vehicle()", - "expectedUiSchemaText": "Value\nvehicle.vehicle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vehicle-base" - }, - { - "id": "coverage:domain-vehicle-vehicle-example-1", - "sourceType": "domain", - "command": "vehicle.vehicle", - "label": "vehicle.vehicle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vehicle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vehicle()", - "expectedUiSchemaText": "Value\nvehicle.vehicle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vehicle-example-1" - }, - { - "id": "coverage:domain-vehicle-vin-base", - "sourceType": "domain", - "command": "vehicle.vin", - "label": "vehicle.vin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vin()", - "expectedUiSchemaText": "Value\nvehicle.vin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vin-base" - }, - { - "id": "coverage:domain-vehicle-vin-example-1", - "sourceType": "domain", - "command": "vehicle.vin", - "label": "vehicle.vin example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vin()", - "expectedUiSchemaText": "Value\nvehicle.vin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vin-example-1" - }, - { - "id": "coverage:domain-vehicle-vrm-base", - "sourceType": "domain", - "command": "vehicle.vrm", - "label": "vehicle.vrm", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vrm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vrm()", - "expectedUiSchemaText": "Value\nvehicle.vrm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vrm-base" - }, - { - "id": "coverage:domain-vehicle-vrm-example-1", - "sourceType": "domain", - "command": "vehicle.vrm", - "label": "vehicle.vrm example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vrm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vrm()", - "expectedUiSchemaText": "Value\nvehicle.vrm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vrm-example-1" - }, - { - "id": "coverage:domain-word-adjective-base", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective()", - "expectedUiSchemaText": "Value\nword.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-adjective-base" - }, - { - "id": "coverage:domain-word-adjective-example-1", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective()", - "expectedUiSchemaText": "Value\nword.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-1" - }, - { - "id": "coverage:domain-word-adjective-example-2", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=5)", - "expectedUiSchemaText": "Value\nword.adjective(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-2" - }, - { - "id": "coverage:domain-word-adjective-example-3", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=5)", - "expectedUiSchemaText": "Value\nword.adjective(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-3" - }, - { - "id": "coverage:domain-word-adjective-example-4", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-4" - }, - { - "id": "coverage:domain-word-adjective-arg-length", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=4)", - "expectedUiSchemaText": "Value\nword.adjective(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-length" - }, - { - "id": "coverage:domain-word-adjective-arg-max", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=3)", - "expectedUiSchemaText": "Value\nword.adjective(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-max" - }, - { - "id": "coverage:domain-word-adjective-arg-strategy", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-strategy" - }, - { - "id": "coverage:domain-word-adjective-pair-length-max", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.adjective(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-adjective-pair-length-max" - }, - { - "id": "coverage:domain-word-adjective-pair-max-strategy", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-adjective-pair-max-strategy" - }, - { - "id": "coverage:domain-word-adverb-base", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb()", - "expectedUiSchemaText": "Value\nword.adverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-adverb-base" - }, - { - "id": "coverage:domain-word-adverb-example-1", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb()", - "expectedUiSchemaText": "Value\nword.adverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-1" - }, - { - "id": "coverage:domain-word-adverb-example-2", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=5)", - "expectedUiSchemaText": "Value\nword.adverb(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-2" - }, - { - "id": "coverage:domain-word-adverb-example-3", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=5)", - "expectedUiSchemaText": "Value\nword.adverb(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-3" - }, - { - "id": "coverage:domain-word-adverb-example-4", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-4" - }, - { - "id": "coverage:domain-word-adverb-arg-length", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=4)", - "expectedUiSchemaText": "Value\nword.adverb(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-length" - }, - { - "id": "coverage:domain-word-adverb-arg-max", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=3)", - "expectedUiSchemaText": "Value\nword.adverb(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-max" - }, - { - "id": "coverage:domain-word-adverb-arg-strategy", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-strategy" - }, - { - "id": "coverage:domain-word-adverb-pair-length-max", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.adverb(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-adverb-pair-length-max" - }, - { - "id": "coverage:domain-word-adverb-pair-max-strategy", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-adverb-pair-max-strategy" - }, - { - "id": "coverage:domain-word-conjunction-base", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction()", - "expectedUiSchemaText": "Value\nword.conjunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-conjunction-base" - }, - { - "id": "coverage:domain-word-conjunction-example-1", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction()", - "expectedUiSchemaText": "Value\nword.conjunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-1" - }, - { - "id": "coverage:domain-word-conjunction-example-2", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=5)", - "expectedUiSchemaText": "Value\nword.conjunction(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-2" - }, - { - "id": "coverage:domain-word-conjunction-example-3", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=5)", - "expectedUiSchemaText": "Value\nword.conjunction(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-3" - }, - { - "id": "coverage:domain-word-conjunction-example-4", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-4" - }, - { - "id": "coverage:domain-word-conjunction-arg-length", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=4)", - "expectedUiSchemaText": "Value\nword.conjunction(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-length" - }, - { - "id": "coverage:domain-word-conjunction-arg-max", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=3)", - "expectedUiSchemaText": "Value\nword.conjunction(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-max" - }, - { - "id": "coverage:domain-word-conjunction-arg-strategy", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-strategy" - }, - { - "id": "coverage:domain-word-conjunction-pair-length-max", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.conjunction(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-conjunction-pair-length-max" - }, - { - "id": "coverage:domain-word-conjunction-pair-max-strategy", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-conjunction-pair-max-strategy" - }, - { - "id": "coverage:domain-word-interjection-base", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection()", - "expectedUiSchemaText": "Value\nword.interjection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-interjection-base" - }, - { - "id": "coverage:domain-word-interjection-example-1", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection()", - "expectedUiSchemaText": "Value\nword.interjection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-1" - }, - { - "id": "coverage:domain-word-interjection-example-2", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=5)", - "expectedUiSchemaText": "Value\nword.interjection(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-2" - }, - { - "id": "coverage:domain-word-interjection-example-3", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=5)", - "expectedUiSchemaText": "Value\nword.interjection(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-3" - }, - { - "id": "coverage:domain-word-interjection-example-4", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-4" - }, - { - "id": "coverage:domain-word-interjection-arg-length", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=4)", - "expectedUiSchemaText": "Value\nword.interjection(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-length" - }, - { - "id": "coverage:domain-word-interjection-arg-max", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=3)", - "expectedUiSchemaText": "Value\nword.interjection(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-max" - }, - { - "id": "coverage:domain-word-interjection-arg-strategy", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-strategy" - }, - { - "id": "coverage:domain-word-interjection-pair-length-max", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.interjection(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-interjection-pair-length-max" - }, - { - "id": "coverage:domain-word-interjection-pair-max-strategy", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-interjection-pair-max-strategy" - }, - { - "id": "coverage:domain-word-noun-base", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun()", - "expectedUiSchemaText": "Value\nword.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-noun-base" - }, - { - "id": "coverage:domain-word-noun-example-1", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun()", - "expectedUiSchemaText": "Value\nword.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-1" - }, - { - "id": "coverage:domain-word-noun-example-2", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=5)", - "expectedUiSchemaText": "Value\nword.noun(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-2" - }, - { - "id": "coverage:domain-word-noun-example-3", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=5)", - "expectedUiSchemaText": "Value\nword.noun(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-3" - }, - { - "id": "coverage:domain-word-noun-example-4", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-4" - }, - { - "id": "coverage:domain-word-noun-arg-length", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=4)", - "expectedUiSchemaText": "Value\nword.noun(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-length" - }, - { - "id": "coverage:domain-word-noun-arg-max", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=3)", - "expectedUiSchemaText": "Value\nword.noun(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-max" - }, - { - "id": "coverage:domain-word-noun-arg-strategy", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-strategy" - }, - { - "id": "coverage:domain-word-noun-pair-length-max", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.noun(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-noun-pair-length-max" - }, - { - "id": "coverage:domain-word-noun-pair-max-strategy", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-noun-pair-max-strategy" - }, - { - "id": "coverage:domain-word-preposition-base", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition()", - "expectedUiSchemaText": "Value\nword.preposition()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-preposition-base" - }, - { - "id": "coverage:domain-word-preposition-example-1", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition()", - "expectedUiSchemaText": "Value\nword.preposition()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-1" - }, - { - "id": "coverage:domain-word-preposition-example-2", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=5)", - "expectedUiSchemaText": "Value\nword.preposition(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-2" - }, - { - "id": "coverage:domain-word-preposition-example-3", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=5)", - "expectedUiSchemaText": "Value\nword.preposition(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-3" - }, - { - "id": "coverage:domain-word-preposition-example-4", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-4" - }, - { - "id": "coverage:domain-word-preposition-arg-length", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=4)", - "expectedUiSchemaText": "Value\nword.preposition(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-length" - }, - { - "id": "coverage:domain-word-preposition-arg-max", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=3)", - "expectedUiSchemaText": "Value\nword.preposition(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-max" - }, - { - "id": "coverage:domain-word-preposition-arg-strategy", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-strategy" - }, - { - "id": "coverage:domain-word-preposition-pair-length-max", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.preposition(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-preposition-pair-length-max" - }, - { - "id": "coverage:domain-word-preposition-pair-max-strategy", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-preposition-pair-max-strategy" - }, - { - "id": "coverage:domain-word-sample-base", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample()", - "expectedUiSchemaText": "Value\nword.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-sample-base" - }, - { - "id": "coverage:domain-word-sample-example-1", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample()", - "expectedUiSchemaText": "Value\nword.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-1" - }, - { - "id": "coverage:domain-word-sample-example-2", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=5)", - "expectedUiSchemaText": "Value\nword.sample(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-2" - }, - { - "id": "coverage:domain-word-sample-example-3", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=5)", - "expectedUiSchemaText": "Value\nword.sample(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-3" - }, - { - "id": "coverage:domain-word-sample-example-4", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-4" - }, - { - "id": "coverage:domain-word-sample-arg-length", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=4)", - "expectedUiSchemaText": "Value\nword.sample(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-length" - }, - { - "id": "coverage:domain-word-sample-arg-max", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=3)", - "expectedUiSchemaText": "Value\nword.sample(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-max" - }, - { - "id": "coverage:domain-word-sample-arg-strategy", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-strategy" - }, - { - "id": "coverage:domain-word-sample-pair-length-max", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.sample(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-sample-pair-length-max" - }, - { - "id": "coverage:domain-word-sample-pair-max-strategy", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-sample-pair-max-strategy" - }, - { - "id": "coverage:domain-word-verb-base", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb()", - "expectedUiSchemaText": "Value\nword.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-verb-base" - }, - { - "id": "coverage:domain-word-verb-example-1", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb()", - "expectedUiSchemaText": "Value\nword.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-1" - }, - { - "id": "coverage:domain-word-verb-example-2", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=5)", - "expectedUiSchemaText": "Value\nword.verb(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-2" - }, - { - "id": "coverage:domain-word-verb-example-3", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=5)", - "expectedUiSchemaText": "Value\nword.verb(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-3" - }, - { - "id": "coverage:domain-word-verb-example-4", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-4" - }, - { - "id": "coverage:domain-word-verb-arg-length", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=4)", - "expectedUiSchemaText": "Value\nword.verb(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-length" - }, - { - "id": "coverage:domain-word-verb-arg-max", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=3)", - "expectedUiSchemaText": "Value\nword.verb(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-max" - }, - { - "id": "coverage:domain-word-verb-arg-strategy", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-strategy" - }, - { - "id": "coverage:domain-word-verb-pair-length-max", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.verb(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-verb-pair-length-max" - }, - { - "id": "coverage:domain-word-verb-pair-max-strategy", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-verb-pair-max-strategy" - }, - { - "id": "coverage:domain-word-words-base", - "sourceType": "domain", - "command": "word.words", - "label": "word.words", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words()", - "expectedUiSchemaText": "Value\nword.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-words-base" - }, - { - "id": "coverage:domain-word-words-example-1", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words()", - "expectedUiSchemaText": "Value\nword.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-1" - }, - { - "id": "coverage:domain-word-words-example-2", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=5)", - "expectedUiSchemaText": "Value\nword.words(count=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-2" - }, - { - "id": "coverage:domain-word-words-example-3", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(max=5)", - "expectedUiSchemaText": "Value\nword.words(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-3" - }, - { - "id": "coverage:domain-word-words-arg-count", - "sourceType": "domain", - "command": "word.words", - "label": "word.words arg count", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=2)", - "expectedUiSchemaText": "Value\nword.words(count=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count"], - "origins": ["arg"], - "scenarioId": "domain-word-words-arg-count" - }, - { - "id": "coverage:domain-word-words-arg-max", - "sourceType": "domain", - "command": "word.words", - "label": "word.words arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(max=3)", - "expectedUiSchemaText": "Value\nword.words(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-words-arg-max" - }, - { - "id": "coverage:domain-word-words-pair-count-max", - "sourceType": "domain", - "command": "word.words", - "label": "word.words pair count/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=2, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=2, max=3)", - "expectedUiSchemaText": "Value\nword.words(count=2, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-words-pair-count-max" - } - ], - "runtimeScenarios": [ - { - "id": "runtime:custom-enum-base", - "sourceType": "enum", - "command": "", - "label": "enum", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-enum-base" - }, - { - "id": "runtime:custom-enum-pairwise", - "sourceType": "enum", - "command": "", - "label": "enum pairwise", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - }, - { - "name": "Priority", - "sourceType": "enum", - "command": "", - "params": "", - "value": "high,medium,low" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending\nPriority\nhigh,medium,low", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)\nPriority\nenum(high,medium,low)", - "expectedFileExtension": ".csv", - "pairwiseEligible": true, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "pairwise"], - "scenarioId": "custom-enum-pairwise" - }, - { - "id": "runtime:custom-literal-base", - "sourceType": "literal", - "command": "", - "label": "literal", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "Pending" - } - ], - "expectedSchemaText": "Status\nliteral(Pending)", - "expectedUiSchemaText": "Status\nliteral(Pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-literal-base" - }, - { - "id": "runtime:custom-literal-empty", - "sourceType": "literal", - "command": "", - "label": "literal empty", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "" - } - ], - "expectedSchemaText": "Status\nliteral(\"\")", - "expectedUiSchemaText": "Status\nliteral(\"\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "empty"], - "scenarioId": "custom-literal-empty" - }, - { - "id": "runtime:custom-regex-base", - "sourceType": "regex", - "command": "", - "label": "regex", - "rows": [ - { - "name": "Code", - "sourceType": "regex", - "command": "", - "params": "", - "value": "[A-Z]{2}[0-9]{2}" - } - ], - "expectedSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedUiSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-regex-base" - }, - { - "id": "runtime:faker-helpers-arrayElement-base", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-arrayElement-base" - }, - { - "id": "runtime:faker-helpers-arrayElement-example-1", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElement-example-1" - }, - { - "id": "runtime:faker-helpers-arrayElement-arg-array", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElement-arg-array" - }, - { - "id": "runtime:faker-helpers-arrayElements-base", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\", \"C\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-arrayElements-base" - }, - { - "id": "runtime:faker-helpers-arrayElements-example-1", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\", \"C\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\", \"C\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElements-example-1" - }, - { - "id": "runtime:faker-helpers-arrayElements-example-2", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\",\"B\",\"C\"], 5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\",\"B\",\"C\"], 5)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\",\"B\",\"C\"], 5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["example"], - "scenarioId": "faker-helpers-arrayElements-example-2" - }, - { - "id": "runtime:faker-helpers-arrayElements-arg-array", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElements-arg-array" - }, - { - "id": "runtime:faker-helpers-arrayElements-arg-count", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements arg count", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["count"], - "origins": ["arg"], - "scenarioId": "faker-helpers-arrayElements-arg-count" - }, - { - "id": "runtime:faker-helpers-arrayElements-pair-array-count", - "sourceType": "faker", - "command": "helpers.arrayElements", - "label": "helpers.arrayElements pair array/count", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElements", - "params": "([\"A\", \"B\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.arrayElements([\"A\", \"B\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array", "count"], - "origins": ["pair"], - "scenarioId": "faker-helpers-arrayElements-pair-array-count" - }, - { - "id": "runtime:faker-helpers-fake-base", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"{{person.firstName}}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-fake-base" - }, - { - "id": "runtime:faker-helpers-fake-example-1", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"Hi, my name is {{person.firstName}} {{person.lastName}}!\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["example"], - "scenarioId": "faker-helpers-fake-example-1" - }, - { - "id": "runtime:faker-helpers-fake-arg-pattern", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "faker-helpers-fake-arg-pattern" - }, - { - "id": "runtime:faker-helpers-fromRegExp-base", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-fromRegExp-base" - }, - { - "id": "runtime:faker-helpers-fromRegExp-example-1", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}[0-9]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["example"], - "scenarioId": "faker-helpers-fromRegExp-example-1" - }, - { - "id": "runtime:faker-helpers-fromRegExp-arg-pattern", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "faker-helpers-fromRegExp-arg-pattern" - }, - { - "id": "runtime:faker-helpers-mustache-base", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", { name: \"Ada\" })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-mustache-base" - }, - { - "id": "runtime:faker-helpers-mustache-example-1", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"Hello {{name}}\", { name: \"Ada\" })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"Hello {{name}}\", { name: \"Ada\" })", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"Hello {{name}}\", { name: \"Ada\" })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text", "data"], - "origins": ["example"], - "scenarioId": "faker-helpers-mustache-example-1" - }, - { - "id": "runtime:faker-helpers-mustache-arg-text", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache arg text", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\")", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text"], - "origins": ["arg"], - "scenarioId": "faker-helpers-mustache-arg-text" - }, - { - "id": "runtime:faker-helpers-mustache-arg-data", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache arg data", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["data"], - "origins": ["arg"], - "scenarioId": "faker-helpers-mustache-arg-data" - }, - { - "id": "runtime:faker-helpers-mustache-pair-text-data", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache pair text/data", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", {})", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", {})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["text", "data"], - "origins": ["pair"], - "scenarioId": "faker-helpers-mustache-pair-text-data" - }, - { - "id": "runtime:faker-helpers-rangeToNumber-base", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "({ min: 1, max: 2 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-rangeToNumber-base" - }, - { - "id": "runtime:faker-helpers-rangeToNumber-example-1", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "({ min: 1, max: 2 })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber({ min: 1, max: 2 })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["numberOrRange"], - "origins": ["example"], - "scenarioId": "faker-helpers-rangeToNumber-example-1" - }, - { - "id": "runtime:faker-helpers-rangeToNumber-arg-numberOrRange", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "label": "helpers.rangeToNumber arg numberOrRange", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.rangeToNumber", - "params": "(2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.rangeToNumber(2)", - "expectedUiSchemaText": "Value\nhelpers.rangeToNumber(2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["numberOrRange"], - "origins": ["arg"], - "scenarioId": "faker-helpers-rangeToNumber-arg-numberOrRange" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-base", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-base" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-example-1", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-1" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-example-2", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"1234-[4-9]-##!!-L\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-[4-9]-##!!-L\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-[4-9]-##!!-L\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-2" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-example-3", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols example 3", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"1234-****-****-L\", \"*\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-****-****-L\", \"*\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"1234-****-****-L\", \"*\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-3" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-arg-string", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-string" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-arg-symbol", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-symbol" - }, - { - "id": "runtime:faker-helpers-replaceCreditCardSymbols-pair-string-symbol", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "label": "helpers.replaceCreditCardSymbols pair string/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceCreditCardSymbols", - "params": "(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedUiSchemaText": "Value\nhelpers.replaceCreditCardSymbols(\"helpers-replaceCreditCardSymbols-string\", \"helpers-replaceCreditCardSymbols-symbol\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string", "symbol"], - "origins": ["pair"], - "scenarioId": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol" - }, - { - "id": "runtime:faker-helpers-replaceSymbols-base", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-replaceSymbols-base" - }, - { - "id": "runtime:faker-helpers-replaceSymbols-example-1", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "(\"##??-##\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols(\"##??-##\")", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols(\"##??-##\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceSymbols-example-1" - }, - { - "id": "runtime:faker-helpers-replaceSymbols-example-2", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-replaceSymbols-example-2" - }, - { - "id": "runtime:faker-helpers-replaceSymbols-arg-string", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "label": "helpers.replaceSymbols arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.replaceSymbols", - "params": "(\"helpers-replaceSymbols-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.replaceSymbols(\"helpers-replaceSymbols-string\")", - "expectedUiSchemaText": "Value\nhelpers.replaceSymbols(\"helpers-replaceSymbols-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-replaceSymbols-arg-string" - }, - { - "id": "runtime:faker-helpers-shuffle-base", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-shuffle-base" - }, - { - "id": "runtime:faker-helpers-shuffle-example-1", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\", \"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\", \"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-shuffle-example-1" - }, - { - "id": "runtime:faker-helpers-shuffle-arg-array", - "sourceType": "faker", - "command": "helpers.shuffle", - "label": "helpers.shuffle arg array", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.shuffle", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.shuffle([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["array"], - "origins": ["arg"], - "scenarioId": "faker-helpers-shuffle-arg-array" - }, - { - "id": "runtime:faker-helpers-slugify-base", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify()", - "expectedUiSchemaText": "Value\nhelpers.slugify()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-slugify-base" - }, - { - "id": "runtime:faker-helpers-slugify-example-1", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "(\"Hello World 2026\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify(\"Hello World 2026\")", - "expectedUiSchemaText": "Value\nhelpers.slugify(\"Hello World 2026\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-slugify-example-1" - }, - { - "id": "runtime:faker-helpers-slugify-example-2", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify example 2", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify()", - "expectedUiSchemaText": "Value\nhelpers.slugify()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["example"], - "scenarioId": "faker-helpers-slugify-example-2" - }, - { - "id": "runtime:faker-helpers-slugify-arg-string", - "sourceType": "faker", - "command": "helpers.slugify", - "label": "helpers.slugify arg string", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.slugify", - "params": "(\"helpers-slugify-string\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.slugify(\"helpers-slugify-string\")", - "expectedUiSchemaText": "Value\nhelpers.slugify(\"helpers-slugify-string\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["string"], - "origins": ["arg"], - "scenarioId": "faker-helpers-slugify-arg-string" - }, - { - "id": "runtime:faker-helpers-uniqueArray-base", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-uniqueArray-base" - }, - { - "id": "runtime:faker-helpers-uniqueArray-example-1", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"red\", \"green\", \"blue\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source", "length"], - "origins": ["example"], - "scenarioId": "faker-helpers-uniqueArray-example-1" - }, - { - "id": "runtime:faker-helpers-uniqueArray-arg-source", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray arg source", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source"], - "origins": ["arg"], - "scenarioId": "faker-helpers-uniqueArray-arg-source" - }, - { - "id": "runtime:faker-helpers-uniqueArray-arg-length", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray arg length", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "faker-helpers-uniqueArray-arg-length" - }, - { - "id": "runtime:faker-helpers-uniqueArray-pair-source-length", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray pair source/length", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"A\", \"B\"], 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"A\", \"B\"], 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source", "length"], - "origins": ["pair"], - "scenarioId": "faker-helpers-uniqueArray-pair-source-length" - }, - { - "id": "runtime:faker-helpers-weightedArrayElement-base", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([{ \"weight\": 1, \"value\": \"A\" }, { \"weight\": 2, \"value\": \"B\" }])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-weightedArrayElement-base" - }, - { - "id": "runtime:faker-helpers-weightedArrayElement-example-1", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-weightedArrayElement-example-1" - }, - { - "id": "runtime:domain-airline-aircraftType-base", - "sourceType": "domain", - "command": "airline.aircraftType", - "label": "airline.aircraftType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.aircraftType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.aircraftType()", - "expectedUiSchemaText": "Value\nairline.aircraftType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-aircraftType-base" - }, - { - "id": "runtime:domain-airline-aircraftType-example-1", - "sourceType": "domain", - "command": "airline.aircraftType", - "label": "airline.aircraftType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.aircraftType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.aircraftType()", - "expectedUiSchemaText": "Value\nairline.aircraftType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-aircraftType-example-1" - }, - { - "id": "runtime:domain-airline-flightNumber-base", - "sourceType": "domain", - "command": "airline.flightNumber", - "label": "airline.flightNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.flightNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.flightNumber()", - "expectedUiSchemaText": "Value\nairline.flightNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-flightNumber-base" - }, - { - "id": "runtime:domain-airline-flightNumber-example-1", - "sourceType": "domain", - "command": "airline.flightNumber", - "label": "airline.flightNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.flightNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.flightNumber()", - "expectedUiSchemaText": "Value\nairline.flightNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-flightNumber-example-1" - }, - { - "id": "runtime:domain-airline-iataCode-base", - "sourceType": "domain", - "command": "airline.iataCode", - "label": "airline.iataCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.iataCode()", - "expectedUiSchemaText": "Value\nairline.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-iataCode-base" - }, - { - "id": "runtime:domain-airline-iataCode-example-1", - "sourceType": "domain", - "command": "airline.iataCode", - "label": "airline.iataCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.iataCode()", - "expectedUiSchemaText": "Value\nairline.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-iataCode-example-1" - }, - { - "id": "runtime:domain-airline-name-base", - "sourceType": "domain", - "command": "airline.name", - "label": "airline.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.name()", - "expectedUiSchemaText": "Value\nairline.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-name-base" - }, - { - "id": "runtime:domain-airline-name-example-1", - "sourceType": "domain", - "command": "airline.name", - "label": "airline.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.name()", - "expectedUiSchemaText": "Value\nairline.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-name-example-1" - }, - { - "id": "runtime:domain-airline-recordLocator-base", - "sourceType": "domain", - "command": "airline.recordLocator", - "label": "airline.recordLocator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.recordLocator", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.recordLocator()", - "expectedUiSchemaText": "Value\nairline.recordLocator()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-recordLocator-base" - }, - { - "id": "runtime:domain-airline-recordLocator-example-1", - "sourceType": "domain", - "command": "airline.recordLocator", - "label": "airline.recordLocator example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.recordLocator", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.recordLocator()", - "expectedUiSchemaText": "Value\nairline.recordLocator()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airline-recordLocator-example-1" - }, - { - "id": "runtime:domain-airline-seat-base", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airline-seat-base" - }, - { - "id": "runtime:domain-airline-seat-example-1", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-1" - }, - { - "id": "runtime:domain-airline-seat-example-2", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "(aircraftType=\"widebody\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedUiSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-2" - }, - { - "id": "runtime:domain-airline-seat-example-3", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-3" - }, - { - "id": "runtime:domain-airline-seat-arg-aircraftType", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat arg aircraftType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "(aircraftType=\"widebody\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedUiSchemaText": "Value\nairline.seat(aircraftType=\"widebody\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["arg"], - "scenarioId": "domain-airline-seat-arg-aircraftType" - }, - { - "id": "runtime:domain-airplane-iataTypeCode-base", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "label": "airplane.iataTypeCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.iataTypeCode()", - "expectedUiSchemaText": "Value\nairplane.iataTypeCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airplane-iataTypeCode-base" - }, - { - "id": "runtime:domain-airplane-iataTypeCode-example-1", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "label": "airplane.iataTypeCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.iataTypeCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.iataTypeCode()", - "expectedUiSchemaText": "Value\nairplane.iataTypeCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airplane-iataTypeCode-example-1" - }, - { - "id": "runtime:domain-airplane-name-base", - "sourceType": "domain", - "command": "airplane.name", - "label": "airplane.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.name()", - "expectedUiSchemaText": "Value\nairplane.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airplane-name-base" - }, - { - "id": "runtime:domain-airplane-name-example-1", - "sourceType": "domain", - "command": "airplane.name", - "label": "airplane.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airplane.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairplane.name()", - "expectedUiSchemaText": "Value\nairplane.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airplane-name-example-1" - }, - { - "id": "runtime:domain-airport-iataCode-base", - "sourceType": "domain", - "command": "airport.iataCode", - "label": "airport.iataCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.iataCode()", - "expectedUiSchemaText": "Value\nairport.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airport-iataCode-base" - }, - { - "id": "runtime:domain-airport-iataCode-example-1", - "sourceType": "domain", - "command": "airport.iataCode", - "label": "airport.iataCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.iataCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.iataCode()", - "expectedUiSchemaText": "Value\nairport.iataCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airport-iataCode-example-1" - }, - { - "id": "runtime:domain-airport-name-base", - "sourceType": "domain", - "command": "airport.name", - "label": "airport.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.name()", - "expectedUiSchemaText": "Value\nairport.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-airport-name-base" - }, - { - "id": "runtime:domain-airport-name-example-1", - "sourceType": "domain", - "command": "airport.name", - "label": "airport.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airport.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairport.name()", - "expectedUiSchemaText": "Value\nairport.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-airport-name-example-1" - }, - { - "id": "runtime:domain-animal-bear-base", - "sourceType": "domain", - "command": "animal.bear", - "label": "animal.bear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bear", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bear()", - "expectedUiSchemaText": "Value\nanimal.bear()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-bear-base" - }, - { - "id": "runtime:domain-animal-bear-example-1", - "sourceType": "domain", - "command": "animal.bear", - "label": "animal.bear example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bear", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bear()", - "expectedUiSchemaText": "Value\nanimal.bear()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-bear-example-1" - }, - { - "id": "runtime:domain-animal-bird-base", - "sourceType": "domain", - "command": "animal.bird", - "label": "animal.bird", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bird", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bird()", - "expectedUiSchemaText": "Value\nanimal.bird()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-bird-base" - }, - { - "id": "runtime:domain-animal-bird-example-1", - "sourceType": "domain", - "command": "animal.bird", - "label": "animal.bird example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.bird", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.bird()", - "expectedUiSchemaText": "Value\nanimal.bird()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-bird-example-1" - }, - { - "id": "runtime:domain-animal-cat-base", - "sourceType": "domain", - "command": "animal.cat", - "label": "animal.cat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cat()", - "expectedUiSchemaText": "Value\nanimal.cat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cat-base" - }, - { - "id": "runtime:domain-animal-cat-example-1", - "sourceType": "domain", - "command": "animal.cat", - "label": "animal.cat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cat()", - "expectedUiSchemaText": "Value\nanimal.cat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cat-example-1" - }, - { - "id": "runtime:domain-animal-cetacean-base", - "sourceType": "domain", - "command": "animal.cetacean", - "label": "animal.cetacean", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cetacean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cetacean()", - "expectedUiSchemaText": "Value\nanimal.cetacean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cetacean-base" - }, - { - "id": "runtime:domain-animal-cetacean-example-1", - "sourceType": "domain", - "command": "animal.cetacean", - "label": "animal.cetacean example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cetacean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cetacean()", - "expectedUiSchemaText": "Value\nanimal.cetacean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cetacean-example-1" - }, - { - "id": "runtime:domain-animal-cow-base", - "sourceType": "domain", - "command": "animal.cow", - "label": "animal.cow", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cow", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cow()", - "expectedUiSchemaText": "Value\nanimal.cow()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-cow-base" - }, - { - "id": "runtime:domain-animal-cow-example-1", - "sourceType": "domain", - "command": "animal.cow", - "label": "animal.cow example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.cow", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.cow()", - "expectedUiSchemaText": "Value\nanimal.cow()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-cow-example-1" - }, - { - "id": "runtime:domain-animal-crocodilia-base", - "sourceType": "domain", - "command": "animal.crocodilia", - "label": "animal.crocodilia", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.crocodilia", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.crocodilia()", - "expectedUiSchemaText": "Value\nanimal.crocodilia()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-crocodilia-base" - }, - { - "id": "runtime:domain-animal-crocodilia-example-1", - "sourceType": "domain", - "command": "animal.crocodilia", - "label": "animal.crocodilia example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.crocodilia", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.crocodilia()", - "expectedUiSchemaText": "Value\nanimal.crocodilia()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-crocodilia-example-1" - }, - { - "id": "runtime:domain-animal-dog-base", - "sourceType": "domain", - "command": "animal.dog", - "label": "animal.dog", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.dog", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.dog()", - "expectedUiSchemaText": "Value\nanimal.dog()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-dog-base" - }, - { - "id": "runtime:domain-animal-dog-example-1", - "sourceType": "domain", - "command": "animal.dog", - "label": "animal.dog example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.dog", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.dog()", - "expectedUiSchemaText": "Value\nanimal.dog()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-dog-example-1" - }, - { - "id": "runtime:domain-animal-fish-base", - "sourceType": "domain", - "command": "animal.fish", - "label": "animal.fish", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.fish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.fish()", - "expectedUiSchemaText": "Value\nanimal.fish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-fish-base" - }, - { - "id": "runtime:domain-animal-fish-example-1", - "sourceType": "domain", - "command": "animal.fish", - "label": "animal.fish example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.fish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.fish()", - "expectedUiSchemaText": "Value\nanimal.fish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-fish-example-1" - }, - { - "id": "runtime:domain-animal-horse-base", - "sourceType": "domain", - "command": "animal.horse", - "label": "animal.horse", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.horse", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.horse()", - "expectedUiSchemaText": "Value\nanimal.horse()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-horse-base" - }, - { - "id": "runtime:domain-animal-horse-example-1", - "sourceType": "domain", - "command": "animal.horse", - "label": "animal.horse example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.horse", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.horse()", - "expectedUiSchemaText": "Value\nanimal.horse()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-horse-example-1" - }, - { - "id": "runtime:domain-animal-insect-base", - "sourceType": "domain", - "command": "animal.insect", - "label": "animal.insect", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.insect", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.insect()", - "expectedUiSchemaText": "Value\nanimal.insect()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-insect-base" - }, - { - "id": "runtime:domain-animal-insect-example-1", - "sourceType": "domain", - "command": "animal.insect", - "label": "animal.insect example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.insect", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.insect()", - "expectedUiSchemaText": "Value\nanimal.insect()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-insect-example-1" - }, - { - "id": "runtime:domain-animal-lion-base", - "sourceType": "domain", - "command": "animal.lion", - "label": "animal.lion", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.lion", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.lion()", - "expectedUiSchemaText": "Value\nanimal.lion()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-lion-base" - }, - { - "id": "runtime:domain-animal-lion-example-1", - "sourceType": "domain", - "command": "animal.lion", - "label": "animal.lion example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.lion", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.lion()", - "expectedUiSchemaText": "Value\nanimal.lion()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-lion-example-1" - }, - { - "id": "runtime:domain-animal-petName-base", - "sourceType": "domain", - "command": "animal.petName", - "label": "animal.petName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.petName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.petName()", - "expectedUiSchemaText": "Value\nanimal.petName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-petName-base" - }, - { - "id": "runtime:domain-animal-petName-example-1", - "sourceType": "domain", - "command": "animal.petName", - "label": "animal.petName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.petName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.petName()", - "expectedUiSchemaText": "Value\nanimal.petName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-petName-example-1" - }, - { - "id": "runtime:domain-animal-rabbit-base", - "sourceType": "domain", - "command": "animal.rabbit", - "label": "animal.rabbit", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rabbit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rabbit()", - "expectedUiSchemaText": "Value\nanimal.rabbit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-rabbit-base" - }, - { - "id": "runtime:domain-animal-rabbit-example-1", - "sourceType": "domain", - "command": "animal.rabbit", - "label": "animal.rabbit example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rabbit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rabbit()", - "expectedUiSchemaText": "Value\nanimal.rabbit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-rabbit-example-1" - }, - { - "id": "runtime:domain-animal-rodent-base", - "sourceType": "domain", - "command": "animal.rodent", - "label": "animal.rodent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rodent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rodent()", - "expectedUiSchemaText": "Value\nanimal.rodent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-rodent-base" - }, - { - "id": "runtime:domain-animal-rodent-example-1", - "sourceType": "domain", - "command": "animal.rodent", - "label": "animal.rodent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.rodent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.rodent()", - "expectedUiSchemaText": "Value\nanimal.rodent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-rodent-example-1" - }, - { - "id": "runtime:domain-animal-snake-base", - "sourceType": "domain", - "command": "animal.snake", - "label": "animal.snake", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.snake", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.snake()", - "expectedUiSchemaText": "Value\nanimal.snake()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-snake-base" - }, - { - "id": "runtime:domain-animal-snake-example-1", - "sourceType": "domain", - "command": "animal.snake", - "label": "animal.snake example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.snake", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.snake()", - "expectedUiSchemaText": "Value\nanimal.snake()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-snake-example-1" - }, - { - "id": "runtime:domain-animal-type-base", - "sourceType": "domain", - "command": "animal.type", - "label": "animal.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.type()", - "expectedUiSchemaText": "Value\nanimal.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-animal-type-base" - }, - { - "id": "runtime:domain-animal-type-example-1", - "sourceType": "domain", - "command": "animal.type", - "label": "animal.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "animal.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nanimal.type()", - "expectedUiSchemaText": "Value\nanimal.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-animal-type-example-1" - }, - { - "id": "runtime:domain-autoIncrement-sequence-base", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(1, 5, \"filename\", \".txt\", 3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-autoIncrement-sequence-base" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-1", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence()", - "expectedUiSchemaText": "Value\nautoIncrement.sequence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-1" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-2", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-2" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-3", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-3" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-4", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-4" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-5", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-5" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-6", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-6" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-7", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-7" - }, - { - "id": "runtime:domain-autoIncrement-sequence-example-8", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-8" - }, - { - "id": "runtime:domain-autoIncrement-sequence-arg-start", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg start", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-start" - }, - { - "id": "runtime:domain-autoIncrement-sequence-arg-step", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-step" - }, - { - "id": "runtime:domain-autoIncrement-sequence-arg-prefix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-prefix" - }, - { - "id": "runtime:domain-autoIncrement-sequence-arg-suffix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["suffix"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-suffix" - }, - { - "id": "runtime:domain-autoIncrement-sequence-arg-zeropadding", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg zeropadding", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["zeropadding"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-sequence-arg-zeropadding" - }, - { - "id": "runtime:domain-autoIncrement-sequence-pair-start-step", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair start/step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-start-step" - }, - { - "id": "runtime:domain-autoIncrement-sequence-pair-step-prefix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair step/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5, prefix=\"filename\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-step-prefix" - }, - { - "id": "runtime:domain-autoIncrement-sequence-pair-prefix-suffix", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair prefix/suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\", suffix=\".txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix", "suffix"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-prefix-suffix" - }, - { - "id": "runtime:domain-autoIncrement-sequence-pair-suffix-zeropadding", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair suffix/zeropadding", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\", zeropadding=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["suffix", "zeropadding"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-sequence-pair-suffix-zeropadding" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-base", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp()", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-autoIncrement-timestamp-base" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-1", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1, type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-1" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-2", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp()", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-2" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-3", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", step=1, type=\"days\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", step=1, type=\"days\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", step=1, type=\"days\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-3" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-4", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12 12:39:23\", step=15, type=\"minutes\", outputFormat=\"yyyy-MM-dd HH:mm:ss\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-4" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-5", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\", step=1, type=\"days\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-5" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-6", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-6" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-7", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-7" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-8", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-8" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-9", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 9", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-9" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-example-10", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp example 10", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"20/03/1969\", inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-timestamp-example-10" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-arg-start", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg start", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-start" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-arg-step", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-step" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-arg-type", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-type" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-arg-outputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg outputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["outputFormat"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-outputFormat" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-arg-inputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp arg inputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["inputFormat"], - "origins": ["arg"], - "scenarioId": "domain-autoIncrement-timestamp-arg-inputFormat" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-pair-start-step", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair start/step", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(start=\"2026-06-12T12:39:23Z\", step=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1)", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(start=\"2026-06-12T12:39:23Z\", step=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-start-step" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-pair-step-type", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair step/type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(step=1, type=\"seconds\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["step", "type"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-step-type" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-pair-type-outputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair type/outputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(type=\"seconds\", outputFormat=\"iso8601\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "outputFormat"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-type-outputFormat" - }, - { - "id": "runtime:domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "label": "autoIncrement.timestamp pair outputFormat/inputFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.timestamp", - "params": "(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["outputFormat", "inputFormat"], - "origins": ["pair"], - "scenarioId": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat" - }, - { - "id": "runtime:domain-book-author-base", - "sourceType": "domain", - "command": "book.author", - "label": "book.author", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.author", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.author()", - "expectedUiSchemaText": "Value\nbook.author()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-author-base" - }, - { - "id": "runtime:domain-book-author-example-1", - "sourceType": "domain", - "command": "book.author", - "label": "book.author example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.author", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.author()", - "expectedUiSchemaText": "Value\nbook.author()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-author-example-1" - }, - { - "id": "runtime:domain-book-format-base", - "sourceType": "domain", - "command": "book.format", - "label": "book.format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.format", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.format()", - "expectedUiSchemaText": "Value\nbook.format()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-format-base" - }, - { - "id": "runtime:domain-book-format-example-1", - "sourceType": "domain", - "command": "book.format", - "label": "book.format example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.format", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.format()", - "expectedUiSchemaText": "Value\nbook.format()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-format-example-1" - }, - { - "id": "runtime:domain-book-genre-base", - "sourceType": "domain", - "command": "book.genre", - "label": "book.genre", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.genre()", - "expectedUiSchemaText": "Value\nbook.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-genre-base" - }, - { - "id": "runtime:domain-book-genre-example-1", - "sourceType": "domain", - "command": "book.genre", - "label": "book.genre example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.genre()", - "expectedUiSchemaText": "Value\nbook.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-genre-example-1" - }, - { - "id": "runtime:domain-book-publisher-base", - "sourceType": "domain", - "command": "book.publisher", - "label": "book.publisher", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.publisher", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.publisher()", - "expectedUiSchemaText": "Value\nbook.publisher()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-publisher-base" - }, - { - "id": "runtime:domain-book-publisher-example-1", - "sourceType": "domain", - "command": "book.publisher", - "label": "book.publisher example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.publisher", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.publisher()", - "expectedUiSchemaText": "Value\nbook.publisher()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-publisher-example-1" - }, - { - "id": "runtime:domain-book-series-base", - "sourceType": "domain", - "command": "book.series", - "label": "book.series", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.series", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.series()", - "expectedUiSchemaText": "Value\nbook.series()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-series-base" - }, - { - "id": "runtime:domain-book-series-example-1", - "sourceType": "domain", - "command": "book.series", - "label": "book.series example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.series", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.series()", - "expectedUiSchemaText": "Value\nbook.series()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-series-example-1" - }, - { - "id": "runtime:domain-book-title-base", - "sourceType": "domain", - "command": "book.title", - "label": "book.title", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.title", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.title()", - "expectedUiSchemaText": "Value\nbook.title()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-book-title-base" - }, - { - "id": "runtime:domain-book-title-example-1", - "sourceType": "domain", - "command": "book.title", - "label": "book.title example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "book.title", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nbook.title()", - "expectedUiSchemaText": "Value\nbook.title()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-book-title-example-1" - }, - { - "id": "runtime:domain-chemicalElement-atomicNumber-base", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "label": "chemicalElement.atomicNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedUiSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-atomicNumber-base" - }, - { - "id": "runtime:domain-chemicalElement-atomicNumber-example-1", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "label": "chemicalElement.atomicNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.atomicNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedUiSchemaText": "Value\nchemicalElement.atomicNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-atomicNumber-example-1" - }, - { - "id": "runtime:domain-chemicalElement-name-base", - "sourceType": "domain", - "command": "chemicalElement.name", - "label": "chemicalElement.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.name()", - "expectedUiSchemaText": "Value\nchemicalElement.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-name-base" - }, - { - "id": "runtime:domain-chemicalElement-name-example-1", - "sourceType": "domain", - "command": "chemicalElement.name", - "label": "chemicalElement.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.name()", - "expectedUiSchemaText": "Value\nchemicalElement.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-name-example-1" - }, - { - "id": "runtime:domain-chemicalElement-symbol-base", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "label": "chemicalElement.symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.symbol()", - "expectedUiSchemaText": "Value\nchemicalElement.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-chemicalElement-symbol-base" - }, - { - "id": "runtime:domain-chemicalElement-symbol-example-1", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "label": "chemicalElement.symbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "chemicalElement.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nchemicalElement.symbol()", - "expectedUiSchemaText": "Value\nchemicalElement.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-chemicalElement-symbol-example-1" - }, - { - "id": "runtime:domain-color-cmyk-base", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk()", - "expectedUiSchemaText": "Value\ncolor.cmyk()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cmyk-base" - }, - { - "id": "runtime:domain-color-cmyk-example-1", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk()", - "expectedUiSchemaText": "Value\ncolor.cmyk()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-cmyk-example-1" - }, - { - "id": "runtime:domain-color-cmyk-example-2", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.cmyk(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-cmyk-example-2" - }, - { - "id": "runtime:domain-color-cmyk-arg-format", - "sourceType": "domain", - "command": "color.cmyk", - "label": "color.cmyk arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cmyk", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cmyk(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.cmyk(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-cmyk-arg-format" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-base", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-colorByCSSColorSpace-base" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-example-1", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-1" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-example-2", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-2" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-example-3", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(space=\"display-p3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"display-p3\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"display-p3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["example"], - "scenarioId": "domain-color-colorByCSSColorSpace-example-3" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-arg-format", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-colorByCSSColorSpace-arg-format" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-arg-space", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace arg space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(space=\"sRGB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"sRGB\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(space=\"sRGB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["space"], - "origins": ["arg"], - "scenarioId": "domain-color-colorByCSSColorSpace-arg-space" - }, - { - "id": "runtime:domain-color-colorByCSSColorSpace-pair-format-space", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "label": "color.colorByCSSColorSpace pair format/space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.colorByCSSColorSpace", - "params": "(format=\"css\", space=\"sRGB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\", space=\"sRGB\")", - "expectedUiSchemaText": "Value\ncolor.colorByCSSColorSpace(format=\"css\", space=\"sRGB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "space"], - "origins": ["pair"], - "scenarioId": "domain-color-colorByCSSColorSpace-pair-format-space" - }, - { - "id": "runtime:domain-color-cssSupportedFunction-base", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "label": "color.cssSupportedFunction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cssSupportedFunction-base" - }, - { - "id": "runtime:domain-color-cssSupportedFunction-example-1", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "label": "color.cssSupportedFunction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedFunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedFunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-cssSupportedFunction-example-1" - }, - { - "id": "runtime:domain-color-cssSupportedSpace-base", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "label": "color.cssSupportedSpace", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-cssSupportedSpace-base" - }, - { - "id": "runtime:domain-color-cssSupportedSpace-example-1", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "label": "color.cssSupportedSpace example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.cssSupportedSpace", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedUiSchemaText": "Value\ncolor.cssSupportedSpace()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-cssSupportedSpace-example-1" - }, - { - "id": "runtime:domain-color-hsl-base", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl()", - "expectedUiSchemaText": "Value\ncolor.hsl()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-hsl-base" - }, - { - "id": "runtime:domain-color-hsl-example-1", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl()", - "expectedUiSchemaText": "Value\ncolor.hsl()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-1" - }, - { - "id": "runtime:domain-color-hsl-example-2", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-2" - }, - { - "id": "runtime:domain-color-hsl-example-3", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-3" - }, - { - "id": "runtime:domain-color-hsl-example-4", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["example"], - "scenarioId": "domain-color-hsl-example-4" - }, - { - "id": "runtime:domain-color-hsl-arg-format", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-hsl-arg-format" - }, - { - "id": "runtime:domain-color-hsl-arg-includeAlpha", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl arg includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha"], - "origins": ["arg"], - "scenarioId": "domain-color-hsl-arg-includeAlpha" - }, - { - "id": "runtime:domain-color-hsl-pair-format-includeAlpha", - "sourceType": "domain", - "command": "color.hsl", - "label": "color.hsl pair format/includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hsl", - "params": "(format=\"css\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.hsl(format=\"css\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"], - "scenarioId": "domain-color-hsl-pair-format-includeAlpha" - }, - { - "id": "runtime:domain-color-human-base", - "sourceType": "domain", - "command": "color.human", - "label": "color.human", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.human", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.human()", - "expectedUiSchemaText": "Value\ncolor.human()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-human-base" - }, - { - "id": "runtime:domain-color-human-example-1", - "sourceType": "domain", - "command": "color.human", - "label": "color.human example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.human", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.human()", - "expectedUiSchemaText": "Value\ncolor.human()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-human-example-1" - }, - { - "id": "runtime:domain-color-hwb-base", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb()", - "expectedUiSchemaText": "Value\ncolor.hwb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-hwb-base" - }, - { - "id": "runtime:domain-color-hwb-example-1", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb()", - "expectedUiSchemaText": "Value\ncolor.hwb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-hwb-example-1" - }, - { - "id": "runtime:domain-color-hwb-example-2", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.hwb(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-hwb-example-2" - }, - { - "id": "runtime:domain-color-hwb-arg-format", - "sourceType": "domain", - "command": "color.hwb", - "label": "color.hwb arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.hwb", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.hwb(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.hwb(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-hwb-arg-format" - }, - { - "id": "runtime:domain-color-lab-base", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab()", - "expectedUiSchemaText": "Value\ncolor.lab()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-lab-base" - }, - { - "id": "runtime:domain-color-lab-example-1", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab()", - "expectedUiSchemaText": "Value\ncolor.lab()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lab-example-1" - }, - { - "id": "runtime:domain-color-lab-example-2", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.lab(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lab-example-2" - }, - { - "id": "runtime:domain-color-lab-arg-format", - "sourceType": "domain", - "command": "color.lab", - "label": "color.lab arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lab", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lab(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.lab(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-lab-arg-format" - }, - { - "id": "runtime:domain-color-lch-base", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch()", - "expectedUiSchemaText": "Value\ncolor.lch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-lch-base" - }, - { - "id": "runtime:domain-color-lch-example-1", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch()", - "expectedUiSchemaText": "Value\ncolor.lch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lch-example-1" - }, - { - "id": "runtime:domain-color-lch-example-2", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "(format=\"decimal\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch(format=\"decimal\")", - "expectedUiSchemaText": "Value\ncolor.lch(format=\"decimal\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["example"], - "scenarioId": "domain-color-lch-example-2" - }, - { - "id": "runtime:domain-color-lch-arg-format", - "sourceType": "domain", - "command": "color.lch", - "label": "color.lch arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.lch", - "params": "(format=\"css\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.lch(format=\"css\")", - "expectedUiSchemaText": "Value\ncolor.lch(format=\"css\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-lch-arg-format" - }, - { - "id": "runtime:domain-color-rgb-base", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb()", - "expectedUiSchemaText": "Value\ncolor.rgb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-rgb-base" - }, - { - "id": "runtime:domain-color-rgb-example-1", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb()", - "expectedUiSchemaText": "Value\ncolor.rgb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-1" - }, - { - "id": "runtime:domain-color-rgb-example-2", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-2" - }, - { - "id": "runtime:domain-color-rgb-example-3", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-3" - }, - { - "id": "runtime:domain-color-rgb-example-4", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-4" - }, - { - "id": "runtime:domain-color-rgb-example-5", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format", "includeAlpha", "prefix"], - "origins": ["example"], - "scenarioId": "domain-color-rgb-example-5" - }, - { - "id": "runtime:domain-color-rgb-arg-casing", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-casing" - }, - { - "id": "runtime:domain-color-rgb-arg-format", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-format" - }, - { - "id": "runtime:domain-color-rgb-arg-includeAlpha", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-includeAlpha" - }, - { - "id": "runtime:domain-color-rgb-arg-prefix", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-color-rgb-arg-prefix" - }, - { - "id": "runtime:domain-color-rgb-pair-casing-format", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair casing/format", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(casing=\"upper\", format=\"hex\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(casing=\"upper\", format=\"hex\")", - "expectedUiSchemaText": "Value\ncolor.rgb(casing=\"upper\", format=\"hex\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "format"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-casing-format" - }, - { - "id": "runtime:domain-color-rgb-pair-format-includeAlpha", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair format/includeAlpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(format=\"hex\", includeAlpha=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(format=\"hex\", includeAlpha=true)", - "expectedUiSchemaText": "Value\ncolor.rgb(format=\"hex\", includeAlpha=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-format-includeAlpha" - }, - { - "id": "runtime:domain-color-rgb-pair-includeAlpha-prefix", - "sourceType": "domain", - "command": "color.rgb", - "label": "color.rgb pair includeAlpha/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.rgb", - "params": "(includeAlpha=true, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.rgb(includeAlpha=true, prefix=\"#\")", - "expectedUiSchemaText": "Value\ncolor.rgb(includeAlpha=true, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeAlpha", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-color-rgb-pair-includeAlpha-prefix" - }, - { - "id": "runtime:domain-color-space-base", - "sourceType": "domain", - "command": "color.space", - "label": "color.space", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.space", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.space()", - "expectedUiSchemaText": "Value\ncolor.space()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-color-space-base" - }, - { - "id": "runtime:domain-color-space-example-1", - "sourceType": "domain", - "command": "color.space", - "label": "color.space example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "color.space", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncolor.space()", - "expectedUiSchemaText": "Value\ncolor.space()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-color-space-example-1" - }, - { - "id": "runtime:domain-commerce-department-base", - "sourceType": "domain", - "command": "commerce.department", - "label": "commerce.department", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.department", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.department()", - "expectedUiSchemaText": "Value\ncommerce.department()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-department-base" - }, - { - "id": "runtime:domain-commerce-department-example-1", - "sourceType": "domain", - "command": "commerce.department", - "label": "commerce.department example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.department", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.department()", - "expectedUiSchemaText": "Value\ncommerce.department()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-department-example-1" - }, - { - "id": "runtime:domain-commerce-isbn-base", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn()", - "expectedUiSchemaText": "Value\ncommerce.isbn()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-isbn-base" - }, - { - "id": "runtime:domain-commerce-isbn-example-1", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn()", - "expectedUiSchemaText": "Value\ncommerce.isbn()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-1" - }, - { - "id": "runtime:domain-commerce-isbn-example-2", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-2" - }, - { - "id": "runtime:domain-commerce-isbn-example-3", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["example"], - "scenarioId": "domain-commerce-isbn-example-3" - }, - { - "id": "runtime:domain-commerce-isbn-arg-separator", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-commerce-isbn-arg-separator" - }, - { - "id": "runtime:domain-commerce-isbn-arg-variant", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn arg variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["arg"], - "scenarioId": "domain-commerce-isbn-arg-variant" - }, - { - "id": "runtime:domain-commerce-isbn-pair-separator-variant", - "sourceType": "domain", - "command": "commerce.isbn", - "label": "commerce.isbn pair separator/variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.isbn", - "params": "(separator=\"-\", variant=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.isbn(separator=\"-\", variant=10)", - "expectedUiSchemaText": "Value\ncommerce.isbn(separator=\"-\", variant=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "variant"], - "origins": ["pair"], - "scenarioId": "domain-commerce-isbn-pair-separator-variant" - }, - { - "id": "runtime:domain-commerce-price-base", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price()", - "expectedUiSchemaText": "Value\ncommerce.price()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-price-base" - }, - { - "id": "runtime:domain-commerce-price-example-1", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2, max=10, min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-1" - }, - { - "id": "runtime:domain-commerce-price-example-2", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price()", - "expectedUiSchemaText": "Value\ncommerce.price()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-2" - }, - { - "id": "runtime:domain-commerce-price-example-3", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-3" - }, - { - "id": "runtime:domain-commerce-price-example-4", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-4" - }, - { - "id": "runtime:domain-commerce-price-example-5", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=10, min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-5" - }, - { - "id": "runtime:domain-commerce-price-example-6", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-6" - }, - { - "id": "runtime:domain-commerce-price-arg-dec", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-dec" - }, - { - "id": "runtime:domain-commerce-price-arg-max", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-max" - }, - { - "id": "runtime:domain-commerce-price-arg-min", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-min" - }, - { - "id": "runtime:domain-commerce-price-arg-symbol", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "domain-commerce-price-arg-symbol" - }, - { - "id": "runtime:domain-commerce-price-pair-dec-max", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair dec/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2, max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2, max=100)", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2, max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-dec-max" - }, - { - "id": "runtime:domain-commerce-price-pair-max-min", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(max=100, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(max=100, min=1)", - "expectedUiSchemaText": "Value\ncommerce.price(max=100, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-max-min" - }, - { - "id": "runtime:domain-commerce-price-pair-min-symbol", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price pair min/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "symbol"], - "origins": ["pair"], - "scenarioId": "domain-commerce-price-pair-min-symbol" - }, - { - "id": "runtime:domain-commerce-product-base", - "sourceType": "domain", - "command": "commerce.product", - "label": "commerce.product", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.product", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.product()", - "expectedUiSchemaText": "Value\ncommerce.product()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-product-base" - }, - { - "id": "runtime:domain-commerce-product-example-1", - "sourceType": "domain", - "command": "commerce.product", - "label": "commerce.product example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.product", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.product()", - "expectedUiSchemaText": "Value\ncommerce.product()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-product-example-1" - }, - { - "id": "runtime:domain-commerce-productAdjective-base", - "sourceType": "domain", - "command": "commerce.productAdjective", - "label": "commerce.productAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productAdjective()", - "expectedUiSchemaText": "Value\ncommerce.productAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productAdjective-base" - }, - { - "id": "runtime:domain-commerce-productAdjective-example-1", - "sourceType": "domain", - "command": "commerce.productAdjective", - "label": "commerce.productAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productAdjective()", - "expectedUiSchemaText": "Value\ncommerce.productAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productAdjective-example-1" - }, - { - "id": "runtime:domain-commerce-productDescription-base", - "sourceType": "domain", - "command": "commerce.productDescription", - "label": "commerce.productDescription", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productDescription()", - "expectedUiSchemaText": "Value\ncommerce.productDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productDescription-base" - }, - { - "id": "runtime:domain-commerce-productDescription-example-1", - "sourceType": "domain", - "command": "commerce.productDescription", - "label": "commerce.productDescription example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productDescription()", - "expectedUiSchemaText": "Value\ncommerce.productDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productDescription-example-1" - }, - { - "id": "runtime:domain-commerce-productMaterial-base", - "sourceType": "domain", - "command": "commerce.productMaterial", - "label": "commerce.productMaterial", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productMaterial", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productMaterial()", - "expectedUiSchemaText": "Value\ncommerce.productMaterial()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productMaterial-base" - }, - { - "id": "runtime:domain-commerce-productMaterial-example-1", - "sourceType": "domain", - "command": "commerce.productMaterial", - "label": "commerce.productMaterial example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productMaterial", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productMaterial()", - "expectedUiSchemaText": "Value\ncommerce.productMaterial()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productMaterial-example-1" - }, - { - "id": "runtime:domain-commerce-productName-base", - "sourceType": "domain", - "command": "commerce.productName", - "label": "commerce.productName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productName()", - "expectedUiSchemaText": "Value\ncommerce.productName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-productName-base" - }, - { - "id": "runtime:domain-commerce-productName-example-1", - "sourceType": "domain", - "command": "commerce.productName", - "label": "commerce.productName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.productName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.productName()", - "expectedUiSchemaText": "Value\ncommerce.productName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-commerce-productName-example-1" - }, - { - "id": "runtime:domain-commerce-upc-base", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc()", - "expectedUiSchemaText": "Value\ncommerce.upc()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-commerce-upc-base" - }, - { - "id": "runtime:domain-commerce-upc-example-1", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc()", - "expectedUiSchemaText": "Value\ncommerce.upc()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["example"], - "scenarioId": "domain-commerce-upc-example-1" - }, - { - "id": "runtime:domain-commerce-upc-example-2", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "(prefix=\"01234\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedUiSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["example"], - "scenarioId": "domain-commerce-upc-example-2" - }, - { - "id": "runtime:domain-commerce-upc-arg-prefix", - "sourceType": "domain", - "command": "commerce.upc", - "label": "commerce.upc arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.upc", - "params": "(prefix=\"01234\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedUiSchemaText": "Value\ncommerce.upc(prefix=\"01234\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-commerce-upc-arg-prefix" - }, - { - "id": "runtime:domain-company-buzzAdjective-base", - "sourceType": "domain", - "command": "company.buzzAdjective", - "label": "company.buzzAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzAdjective()", - "expectedUiSchemaText": "Value\ncompany.buzzAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzAdjective-base" - }, - { - "id": "runtime:domain-company-buzzAdjective-example-1", - "sourceType": "domain", - "command": "company.buzzAdjective", - "label": "company.buzzAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzAdjective()", - "expectedUiSchemaText": "Value\ncompany.buzzAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzAdjective-example-1" - }, - { - "id": "runtime:domain-company-buzzNoun-base", - "sourceType": "domain", - "command": "company.buzzNoun", - "label": "company.buzzNoun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzNoun()", - "expectedUiSchemaText": "Value\ncompany.buzzNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzNoun-base" - }, - { - "id": "runtime:domain-company-buzzNoun-example-1", - "sourceType": "domain", - "command": "company.buzzNoun", - "label": "company.buzzNoun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzNoun()", - "expectedUiSchemaText": "Value\ncompany.buzzNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzNoun-example-1" - }, - { - "id": "runtime:domain-company-buzzPhrase-base", - "sourceType": "domain", - "command": "company.buzzPhrase", - "label": "company.buzzPhrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzPhrase()", - "expectedUiSchemaText": "Value\ncompany.buzzPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzPhrase-base" - }, - { - "id": "runtime:domain-company-buzzPhrase-example-1", - "sourceType": "domain", - "command": "company.buzzPhrase", - "label": "company.buzzPhrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzPhrase()", - "expectedUiSchemaText": "Value\ncompany.buzzPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzPhrase-example-1" - }, - { - "id": "runtime:domain-company-buzzVerb-base", - "sourceType": "domain", - "command": "company.buzzVerb", - "label": "company.buzzVerb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzVerb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzVerb()", - "expectedUiSchemaText": "Value\ncompany.buzzVerb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-buzzVerb-base" - }, - { - "id": "runtime:domain-company-buzzVerb-example-1", - "sourceType": "domain", - "command": "company.buzzVerb", - "label": "company.buzzVerb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.buzzVerb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.buzzVerb()", - "expectedUiSchemaText": "Value\ncompany.buzzVerb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-buzzVerb-example-1" - }, - { - "id": "runtime:domain-company-catchPhrase-base", - "sourceType": "domain", - "command": "company.catchPhrase", - "label": "company.catchPhrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhrase()", - "expectedUiSchemaText": "Value\ncompany.catchPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhrase-base" - }, - { - "id": "runtime:domain-company-catchPhrase-example-1", - "sourceType": "domain", - "command": "company.catchPhrase", - "label": "company.catchPhrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhrase()", - "expectedUiSchemaText": "Value\ncompany.catchPhrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhrase-example-1" - }, - { - "id": "runtime:domain-company-catchPhraseAdjective-base", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "label": "company.catchPhraseAdjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseAdjective-base" - }, - { - "id": "runtime:domain-company-catchPhraseAdjective-example-1", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "label": "company.catchPhraseAdjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseAdjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseAdjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseAdjective-example-1" - }, - { - "id": "runtime:domain-company-catchPhraseDescriptor-base", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "label": "company.catchPhraseDescriptor", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseDescriptor-base" - }, - { - "id": "runtime:domain-company-catchPhraseDescriptor-example-1", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "label": "company.catchPhraseDescriptor example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseDescriptor-example-1" - }, - { - "id": "runtime:domain-company-catchPhraseNoun-base", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "label": "company.catchPhraseNoun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-catchPhraseNoun-base" - }, - { - "id": "runtime:domain-company-catchPhraseNoun-example-1", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "label": "company.catchPhraseNoun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.catchPhraseNoun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedUiSchemaText": "Value\ncompany.catchPhraseNoun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-catchPhraseNoun-example-1" - }, - { - "id": "runtime:domain-company-name-base", - "sourceType": "domain", - "command": "company.name", - "label": "company.name", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.name()", - "expectedUiSchemaText": "Value\ncompany.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-company-name-base" - }, - { - "id": "runtime:domain-company-name-example-1", - "sourceType": "domain", - "command": "company.name", - "label": "company.name example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "company.name", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ncompany.name()", - "expectedUiSchemaText": "Value\ncompany.name()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-company-name-example-1" - }, - { - "id": "runtime:domain-database-collation-base", - "sourceType": "domain", - "command": "database.collation", - "label": "database.collation", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.collation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.collation()", - "expectedUiSchemaText": "Value\ndatabase.collation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-collation-base" - }, - { - "id": "runtime:domain-database-collation-example-1", - "sourceType": "domain", - "command": "database.collation", - "label": "database.collation example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.collation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.collation()", - "expectedUiSchemaText": "Value\ndatabase.collation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-collation-example-1" - }, - { - "id": "runtime:domain-database-column-base", - "sourceType": "domain", - "command": "database.column", - "label": "database.column", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.column", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.column()", - "expectedUiSchemaText": "Value\ndatabase.column()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-column-base" - }, - { - "id": "runtime:domain-database-column-example-1", - "sourceType": "domain", - "command": "database.column", - "label": "database.column example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.column", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.column()", - "expectedUiSchemaText": "Value\ndatabase.column()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-column-example-1" - }, - { - "id": "runtime:domain-database-engine-base", - "sourceType": "domain", - "command": "database.engine", - "label": "database.engine", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.engine", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.engine()", - "expectedUiSchemaText": "Value\ndatabase.engine()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-engine-base" - }, - { - "id": "runtime:domain-database-engine-example-1", - "sourceType": "domain", - "command": "database.engine", - "label": "database.engine example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.engine", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.engine()", - "expectedUiSchemaText": "Value\ndatabase.engine()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-engine-example-1" - }, - { - "id": "runtime:domain-database-mongodbObjectId-base", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "label": "database.mongodbObjectId", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedUiSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-mongodbObjectId-base" - }, - { - "id": "runtime:domain-database-mongodbObjectId-example-1", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "label": "database.mongodbObjectId example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.mongodbObjectId", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedUiSchemaText": "Value\ndatabase.mongodbObjectId()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-mongodbObjectId-example-1" - }, - { - "id": "runtime:domain-database-type-base", - "sourceType": "domain", - "command": "database.type", - "label": "database.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.type()", - "expectedUiSchemaText": "Value\ndatabase.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-database-type-base" - }, - { - "id": "runtime:domain-database-type-example-1", - "sourceType": "domain", - "command": "database.type", - "label": "database.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "database.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatabase.type()", - "expectedUiSchemaText": "Value\ndatabase.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-database-type-example-1" - }, - { - "id": "runtime:domain-datatype-boolean-base", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean()", - "expectedUiSchemaText": "Value\ndatatype.boolean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-datatype-boolean-base" - }, - { - "id": "runtime:domain-datatype-boolean-example-1", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean()", - "expectedUiSchemaText": "Value\ndatatype.boolean()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["example"], - "scenarioId": "domain-datatype-boolean-example-1" - }, - { - "id": "runtime:domain-datatype-boolean-example-2", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "(probability=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean(probability=0.5)", - "expectedUiSchemaText": "Value\ndatatype.boolean(probability=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["example"], - "scenarioId": "domain-datatype-boolean-example-2" - }, - { - "id": "runtime:domain-datatype-boolean-arg-probability", - "sourceType": "domain", - "command": "datatype.boolean", - "label": "datatype.boolean arg probability", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.boolean", - "params": "(probability=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.boolean(probability=2)", - "expectedUiSchemaText": "Value\ndatatype.boolean(probability=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["probability"], - "origins": ["arg"], - "scenarioId": "domain-datatype-boolean-arg-probability" - }, - { - "id": "runtime:domain-datatype-enum-base", - "sourceType": "domain", - "command": "datatype.enum", - "label": "datatype.enum", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.enum", - "params": "(\"active\", \"inactive\", \"pending\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.enum(\"active\", \"inactive\", \"pending\")", - "expectedUiSchemaText": "Value\nenum(\"active\", \"inactive\", \"pending\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-datatype-enum-base" - }, - { - "id": "runtime:domain-datatype-enum-arg-values", - "sourceType": "domain", - "command": "datatype.enum", - "label": "datatype.enum arg values", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "datatype.enum", - "params": "(values=\"comma-separated list\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndatatype.enum(values=\"comma-separated list\")", - "expectedUiSchemaText": "Value\nenum(values=\"comma-separated list\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["values"], - "origins": ["arg"], - "scenarioId": "domain-datatype-enum-arg-values" - }, - { - "id": "runtime:domain-date-anytime-base", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime()", - "expectedUiSchemaText": "Value\ndate.anytime()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-anytime-base" - }, - { - "id": "runtime:domain-date-anytime-example-1", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime()", - "expectedUiSchemaText": "Value\ndate.anytime()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-date-anytime-example-1" - }, - { - "id": "runtime:domain-date-anytime-example-2", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-date-anytime-example-2" - }, - { - "id": "runtime:domain-date-anytime-arg-refDate", - "sourceType": "domain", - "command": "date.anytime", - "label": "date.anytime arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.anytime", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.anytime(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-anytime-arg-refDate" - }, - { - "id": "runtime:domain-date-between-base", - "sourceType": "domain", - "command": "date.between", - "label": "date.between", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(1577836800000, 1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(1577836800000, 1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(1577836800000, 1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-between-base" - }, - { - "id": "runtime:domain-date-between-example-1", - "sourceType": "domain", - "command": "date.between", - "label": "date.between example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["example"], - "scenarioId": "domain-date-between-example-1" - }, - { - "id": "runtime:domain-date-between-example-2", - "sourceType": "domain", - "command": "date.between", - "label": "date.between example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1609459200000, to=1640995200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1609459200000, to=1640995200000)", - "expectedUiSchemaText": "Value\ndate.between(from=1609459200000, to=1640995200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["example"], - "scenarioId": "domain-date-between-example-2" - }, - { - "id": "runtime:domain-date-between-arg-from", - "sourceType": "domain", - "command": "date.between", - "label": "date.between arg from", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from"], - "origins": ["arg"], - "scenarioId": "domain-date-between-arg-from" - }, - { - "id": "runtime:domain-date-between-arg-to", - "sourceType": "domain", - "command": "date.between", - "label": "date.between arg to", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["to"], - "origins": ["arg"], - "scenarioId": "domain-date-between-arg-to" - }, - { - "id": "runtime:domain-date-between-pair-from-to", - "sourceType": "domain", - "command": "date.between", - "label": "date.between pair from/to", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.between", - "params": "(from=1577836800000, to=1609372800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedUiSchemaText": "Value\ndate.between(from=1577836800000, to=1609372800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["from", "to"], - "origins": ["pair"], - "scenarioId": "domain-date-between-pair-from-to" - }, - { - "id": "runtime:domain-date-birthdate-base", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate()", - "expectedUiSchemaText": "Value\ndate.birthdate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-birthdate-base" - }, - { - "id": "runtime:domain-date-birthdate-example-1", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=20000, max=69, min=16, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-1" - }, - { - "id": "runtime:domain-date-birthdate-example-2", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate()", - "expectedUiSchemaText": "Value\ndate.birthdate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-2" - }, - { - "id": "runtime:domain-date-birthdate-example-3", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-3" - }, - { - "id": "runtime:domain-date-birthdate-example-4", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-4" - }, - { - "id": "runtime:domain-date-birthdate-example-5", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=10, min=1)", - "expectedUiSchemaText": "Value\ndate.birthdate(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-5" - }, - { - "id": "runtime:domain-date-birthdate-example-6", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-6" - }, - { - "id": "runtime:domain-date-birthdate-arg-refDate", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000, min=18, max=65, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-refDate" - }, - { - "id": "runtime:domain-date-birthdate-arg-max", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-max" - }, - { - "id": "runtime:domain-date-birthdate-arg-min", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(min=18, max=65, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(min=18, max=65, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(min=18, max=65, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-min" - }, - { - "id": "runtime:domain-date-birthdate-arg-mode", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate arg mode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(mode=\"age\", min=18, max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(mode=\"age\", min=18, max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(mode=\"age\", min=18, max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mode"], - "origins": ["arg"], - "scenarioId": "domain-date-birthdate-arg-mode" - }, - { - "id": "runtime:domain-date-birthdate-pair-refDate-max", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair refDate/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=1577836800000, max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-refDate-max" - }, - { - "id": "runtime:domain-date-birthdate-pair-max-min", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(max=65, min=18, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(max=65, min=18, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-max-min" - }, - { - "id": "runtime:domain-date-birthdate-pair-min-mode", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate pair min/mode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(min=18, mode=\"age\", max=65)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(min=18, mode=\"age\", max=65)", - "expectedUiSchemaText": "Value\ndate.birthdate(min=18, mode=\"age\", max=65)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "mode"], - "origins": ["pair"], - "scenarioId": "domain-date-birthdate-pair-min-mode" - }, - { - "id": "runtime:domain-date-future-base", - "sourceType": "domain", - "command": "date.future", - "label": "date.future", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future()", - "expectedUiSchemaText": "Value\ndate.future()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-future-base" - }, - { - "id": "runtime:domain-date-future-example-1", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future()", - "expectedUiSchemaText": "Value\ndate.future()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-1" - }, - { - "id": "runtime:domain-date-future-example-2", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-2" - }, - { - "id": "runtime:domain-date-future-example-3", - "sourceType": "domain", - "command": "date.future", - "label": "date.future example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(years=2)", - "expectedUiSchemaText": "Value\ndate.future(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-future-example-3" - }, - { - "id": "runtime:domain-date-future-arg-refDate", - "sourceType": "domain", - "command": "date.future", - "label": "date.future arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-future-arg-refDate" - }, - { - "id": "runtime:domain-date-future-arg-years", - "sourceType": "domain", - "command": "date.future", - "label": "date.future arg years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(years=2)", - "expectedUiSchemaText": "Value\ndate.future(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["years"], - "origins": ["arg"], - "scenarioId": "domain-date-future-arg-years" - }, - { - "id": "runtime:domain-date-future-pair-refDate-years", - "sourceType": "domain", - "command": "date.future", - "label": "date.future pair refDate/years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.future", - "params": "(refDate=1577836800000, years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.future(refDate=1577836800000, years=2)", - "expectedUiSchemaText": "Value\ndate.future(refDate=1577836800000, years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["pair"], - "scenarioId": "domain-date-future-pair-refDate-years" - }, - { - "id": "runtime:domain-date-month-base", - "sourceType": "domain", - "command": "date.month", - "label": "date.month", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month()", - "expectedUiSchemaText": "Value\ndate.month()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-month-base" - }, - { - "id": "runtime:domain-date-month-example-1", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month()", - "expectedUiSchemaText": "Value\ndate.month()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-1" - }, - { - "id": "runtime:domain-date-month-example-2", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-2" - }, - { - "id": "runtime:domain-date-month-example-3", - "sourceType": "domain", - "command": "date.month", - "label": "date.month example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(context=true)", - "expectedUiSchemaText": "Value\ndate.month(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-month-example-3" - }, - { - "id": "runtime:domain-date-month-arg-abbreviated", - "sourceType": "domain", - "command": "date.month", - "label": "date.month arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-date-month-arg-abbreviated" - }, - { - "id": "runtime:domain-date-month-arg-context", - "sourceType": "domain", - "command": "date.month", - "label": "date.month arg context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(context=true)", - "expectedUiSchemaText": "Value\ndate.month(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["context"], - "origins": ["arg"], - "scenarioId": "domain-date-month-arg-context" - }, - { - "id": "runtime:domain-date-month-pair-abbreviated-context", - "sourceType": "domain", - "command": "date.month", - "label": "date.month pair abbreviated/context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.month", - "params": "(abbreviated=true, context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.month(abbreviated=true, context=true)", - "expectedUiSchemaText": "Value\ndate.month(abbreviated=true, context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"], - "scenarioId": "domain-date-month-pair-abbreviated-context" - }, - { - "id": "runtime:domain-date-past-base", - "sourceType": "domain", - "command": "date.past", - "label": "date.past", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past()", - "expectedUiSchemaText": "Value\ndate.past()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-past-base" - }, - { - "id": "runtime:domain-date-past-example-1", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past()", - "expectedUiSchemaText": "Value\ndate.past()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-1" - }, - { - "id": "runtime:domain-date-past-example-2", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-2" - }, - { - "id": "runtime:domain-date-past-example-3", - "sourceType": "domain", - "command": "date.past", - "label": "date.past example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(years=2)", - "expectedUiSchemaText": "Value\ndate.past(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["example"], - "scenarioId": "domain-date-past-example-3" - }, - { - "id": "runtime:domain-date-past-arg-refDate", - "sourceType": "domain", - "command": "date.past", - "label": "date.past arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-past-arg-refDate" - }, - { - "id": "runtime:domain-date-past-arg-years", - "sourceType": "domain", - "command": "date.past", - "label": "date.past arg years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(years=2)", - "expectedUiSchemaText": "Value\ndate.past(years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["years"], - "origins": ["arg"], - "scenarioId": "domain-date-past-arg-years" - }, - { - "id": "runtime:domain-date-past-pair-refDate-years", - "sourceType": "domain", - "command": "date.past", - "label": "date.past pair refDate/years", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.past", - "params": "(refDate=1577836800000, years=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.past(refDate=1577836800000, years=2)", - "expectedUiSchemaText": "Value\ndate.past(refDate=1577836800000, years=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "years"], - "origins": ["pair"], - "scenarioId": "domain-date-past-pair-refDate-years" - }, - { - "id": "runtime:domain-date-recent-base", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent()", - "expectedUiSchemaText": "Value\ndate.recent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-recent-base" - }, - { - "id": "runtime:domain-date-recent-example-1", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent()", - "expectedUiSchemaText": "Value\ndate.recent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-1" - }, - { - "id": "runtime:domain-date-recent-example-2", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7)", - "expectedUiSchemaText": "Value\ndate.recent(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-2" - }, - { - "id": "runtime:domain-date-recent-example-3", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-recent-example-3" - }, - { - "id": "runtime:domain-date-recent-arg-days", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent arg days", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7)", - "expectedUiSchemaText": "Value\ndate.recent(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days"], - "origins": ["arg"], - "scenarioId": "domain-date-recent-arg-days" - }, - { - "id": "runtime:domain-date-recent-arg-refDate", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-recent-arg-refDate" - }, - { - "id": "runtime:domain-date-recent-pair-days-refDate", - "sourceType": "domain", - "command": "date.recent", - "label": "date.recent pair days/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.recent", - "params": "(days=7, refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.recent(days=7, refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.recent(days=7, refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-date-recent-pair-days-refDate" - }, - { - "id": "runtime:domain-date-soon-base", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon()", - "expectedUiSchemaText": "Value\ndate.soon()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-soon-base" - }, - { - "id": "runtime:domain-date-soon-example-1", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon()", - "expectedUiSchemaText": "Value\ndate.soon()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-1" - }, - { - "id": "runtime:domain-date-soon-example-2", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7)", - "expectedUiSchemaText": "Value\ndate.soon(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-2" - }, - { - "id": "runtime:domain-date-soon-example-3", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["example"], - "scenarioId": "domain-date-soon-example-3" - }, - { - "id": "runtime:domain-date-soon-arg-days", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon arg days", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7)", - "expectedUiSchemaText": "Value\ndate.soon(days=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days"], - "origins": ["arg"], - "scenarioId": "domain-date-soon-arg-days" - }, - { - "id": "runtime:domain-date-soon-arg-refDate", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-date-soon-arg-refDate" - }, - { - "id": "runtime:domain-date-soon-pair-days-refDate", - "sourceType": "domain", - "command": "date.soon", - "label": "date.soon pair days/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.soon", - "params": "(days=7, refDate=1577836800000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.soon(days=7, refDate=1577836800000)", - "expectedUiSchemaText": "Value\ndate.soon(days=7, refDate=1577836800000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["days", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-date-soon-pair-days-refDate" - }, - { - "id": "runtime:domain-date-timeZone-base", - "sourceType": "domain", - "command": "date.timeZone", - "label": "date.timeZone", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.timeZone()", - "expectedUiSchemaText": "Value\ndate.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-timeZone-base" - }, - { - "id": "runtime:domain-date-timeZone-example-1", - "sourceType": "domain", - "command": "date.timeZone", - "label": "date.timeZone example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.timeZone()", - "expectedUiSchemaText": "Value\ndate.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-date-timeZone-example-1" - }, - { - "id": "runtime:domain-date-weekday-base", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday()", - "expectedUiSchemaText": "Value\ndate.weekday()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-date-weekday-base" - }, - { - "id": "runtime:domain-date-weekday-example-1", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday()", - "expectedUiSchemaText": "Value\ndate.weekday()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-1" - }, - { - "id": "runtime:domain-date-weekday-example-2", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-2" - }, - { - "id": "runtime:domain-date-weekday-example-3", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["example"], - "scenarioId": "domain-date-weekday-example-3" - }, - { - "id": "runtime:domain-date-weekday-arg-abbreviated", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-date-weekday-arg-abbreviated" - }, - { - "id": "runtime:domain-date-weekday-arg-context", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday arg context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["context"], - "origins": ["arg"], - "scenarioId": "domain-date-weekday-arg-context" - }, - { - "id": "runtime:domain-date-weekday-pair-abbreviated-context", - "sourceType": "domain", - "command": "date.weekday", - "label": "date.weekday pair abbreviated/context", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.weekday", - "params": "(abbreviated=true, context=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.weekday(abbreviated=true, context=true)", - "expectedUiSchemaText": "Value\ndate.weekday(abbreviated=true, context=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"], - "scenarioId": "domain-date-weekday-pair-abbreviated-context" - }, - { - "id": "runtime:domain-finance-accountName-base", - "sourceType": "domain", - "command": "finance.accountName", - "label": "finance.accountName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountName()", - "expectedUiSchemaText": "Value\nfinance.accountName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-accountName-base" - }, - { - "id": "runtime:domain-finance-accountName-example-1", - "sourceType": "domain", - "command": "finance.accountName", - "label": "finance.accountName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountName()", - "expectedUiSchemaText": "Value\nfinance.accountName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-accountName-example-1" - }, - { - "id": "runtime:domain-finance-accountNumber-base", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber()", - "expectedUiSchemaText": "Value\nfinance.accountNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-accountNumber-base" - }, - { - "id": "runtime:domain-finance-accountNumber-example-1", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber()", - "expectedUiSchemaText": "Value\nfinance.accountNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-accountNumber-example-1" - }, - { - "id": "runtime:domain-finance-accountNumber-example-2", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber(length=5)", - "expectedUiSchemaText": "Value\nfinance.accountNumber(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-accountNumber-example-2" - }, - { - "id": "runtime:domain-finance-accountNumber-arg-length", - "sourceType": "domain", - "command": "finance.accountNumber", - "label": "finance.accountNumber arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.accountNumber", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.accountNumber(length=4)", - "expectedUiSchemaText": "Value\nfinance.accountNumber(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-finance-accountNumber-arg-length" - }, - { - "id": "runtime:domain-finance-amount-base", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount()", - "expectedUiSchemaText": "Value\nfinance.amount()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-amount-base" - }, - { - "id": "runtime:domain-finance-amount-example-1", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount()", - "expectedUiSchemaText": "Value\nfinance.amount()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-1" - }, - { - "id": "runtime:domain-finance-amount-example-2", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-2" - }, - { - "id": "runtime:domain-finance-amount-example-3", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-3" - }, - { - "id": "runtime:domain-finance-amount-example-4", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-4" - }, - { - "id": "runtime:domain-finance-amount-example-5", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=10, min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-5" - }, - { - "id": "runtime:domain-finance-amount-example-6", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-finance-amount-example-6" - }, - { - "id": "runtime:domain-finance-amount-arg-autoFormat", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg autoFormat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-autoFormat" - }, - { - "id": "runtime:domain-finance-amount-arg-dec", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-dec" - }, - { - "id": "runtime:domain-finance-amount-arg-max", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-max" - }, - { - "id": "runtime:domain-finance-amount-arg-min", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-min" - }, - { - "id": "runtime:domain-finance-amount-arg-symbol", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount arg symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["symbol"], - "origins": ["arg"], - "scenarioId": "domain-finance-amount-arg-symbol" - }, - { - "id": "runtime:domain-finance-amount-pair-autoFormat-dec", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair autoFormat/dec", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(autoFormat=true, dec=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(autoFormat=true, dec=2)", - "expectedUiSchemaText": "Value\nfinance.amount(autoFormat=true, dec=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["autoFormat", "dec"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-autoFormat-dec" - }, - { - "id": "runtime:domain-finance-amount-pair-dec-max", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair dec/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(dec=2, max=100)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(dec=2, max=100)", - "expectedUiSchemaText": "Value\nfinance.amount(dec=2, max=100)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-dec-max" - }, - { - "id": "runtime:domain-finance-amount-pair-max-min", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(max=100, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(max=100, min=1)", - "expectedUiSchemaText": "Value\nfinance.amount(max=100, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-max-min" - }, - { - "id": "runtime:domain-finance-amount-pair-min-symbol", - "sourceType": "domain", - "command": "finance.amount", - "label": "finance.amount pair min/symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.amount", - "params": "(min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.amount(min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\nfinance.amount(min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "symbol"], - "origins": ["pair"], - "scenarioId": "domain-finance-amount-pair-min-symbol" - }, - { - "id": "runtime:domain-finance-bic-base", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic()", - "expectedUiSchemaText": "Value\nfinance.bic()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-bic-base" - }, - { - "id": "runtime:domain-finance-bic-example-1", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic()", - "expectedUiSchemaText": "Value\nfinance.bic()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["example"], - "scenarioId": "domain-finance-bic-example-1" - }, - { - "id": "runtime:domain-finance-bic-example-2", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "(includeBranchCode=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedUiSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["example"], - "scenarioId": "domain-finance-bic-example-2" - }, - { - "id": "runtime:domain-finance-bic-arg-includeBranchCode", - "sourceType": "domain", - "command": "finance.bic", - "label": "finance.bic arg includeBranchCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bic", - "params": "(includeBranchCode=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedUiSchemaText": "Value\nfinance.bic(includeBranchCode=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeBranchCode"], - "origins": ["arg"], - "scenarioId": "domain-finance-bic-arg-includeBranchCode" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-base", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-bitcoinAddress-base" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-example-1", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-1" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-example-2", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-2" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-example-3", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["example"], - "scenarioId": "domain-finance-bitcoinAddress-example-3" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-arg-type", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress arg type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type"], - "origins": ["arg"], - "scenarioId": "domain-finance-bitcoinAddress-arg-type" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-arg-network", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress arg network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["network"], - "origins": ["arg"], - "scenarioId": "domain-finance-bitcoinAddress-arg-network" - }, - { - "id": "runtime:domain-finance-bitcoinAddress-pair-type-network", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "label": "finance.bitcoinAddress pair type/network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.bitcoinAddress", - "params": "(type=\"bech32\", network=\"testnet\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\", network=\"testnet\")", - "expectedUiSchemaText": "Value\nfinance.bitcoinAddress(type=\"bech32\", network=\"testnet\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["type", "network"], - "origins": ["pair"], - "scenarioId": "domain-finance-bitcoinAddress-pair-type-network" - }, - { - "id": "runtime:domain-finance-creditCardCVV-base", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "label": "finance.creditCardCVV", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardCVV()", - "expectedUiSchemaText": "Value\nfinance.creditCardCVV()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardCVV-base" - }, - { - "id": "runtime:domain-finance-creditCardCVV-example-1", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "label": "finance.creditCardCVV example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardCVV", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardCVV()", - "expectedUiSchemaText": "Value\nfinance.creditCardCVV()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardCVV-example-1" - }, - { - "id": "runtime:domain-finance-creditCardIssuer-base", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "label": "finance.creditCardIssuer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedUiSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardIssuer-base" - }, - { - "id": "runtime:domain-finance-creditCardIssuer-example-1", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "label": "finance.creditCardIssuer example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardIssuer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedUiSchemaText": "Value\nfinance.creditCardIssuer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardIssuer-example-1" - }, - { - "id": "runtime:domain-finance-creditCardNumber-base", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber()", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-creditCardNumber-base" - }, - { - "id": "runtime:domain-finance-creditCardNumber-example-1", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber()", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardNumber-example-1" - }, - { - "id": "runtime:domain-finance-creditCardNumber-example-2", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "(issuer=\"Visa\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber(issuer=\"Visa\")", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber(issuer=\"Visa\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["example"], - "scenarioId": "domain-finance-creditCardNumber-example-2" - }, - { - "id": "runtime:domain-finance-creditCardNumber-arg-issuer", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "label": "finance.creditCardNumber arg issuer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.creditCardNumber", - "params": "(issuer=\"finance-creditCardNumber-issuer\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.creditCardNumber(issuer=\"finance-creditCardNumber-issuer\")", - "expectedUiSchemaText": "Value\nfinance.creditCardNumber(issuer=\"finance-creditCardNumber-issuer\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["issuer"], - "origins": ["arg"], - "scenarioId": "domain-finance-creditCardNumber-arg-issuer" - }, - { - "id": "runtime:domain-finance-currencyCode-base", - "sourceType": "domain", - "command": "finance.currencyCode", - "label": "finance.currencyCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyCode()", - "expectedUiSchemaText": "Value\nfinance.currencyCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyCode-base" - }, - { - "id": "runtime:domain-finance-currencyCode-example-1", - "sourceType": "domain", - "command": "finance.currencyCode", - "label": "finance.currencyCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyCode()", - "expectedUiSchemaText": "Value\nfinance.currencyCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyCode-example-1" - }, - { - "id": "runtime:domain-finance-currencyName-base", - "sourceType": "domain", - "command": "finance.currencyName", - "label": "finance.currencyName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyName()", - "expectedUiSchemaText": "Value\nfinance.currencyName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyName-base" - }, - { - "id": "runtime:domain-finance-currencyName-example-1", - "sourceType": "domain", - "command": "finance.currencyName", - "label": "finance.currencyName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyName()", - "expectedUiSchemaText": "Value\nfinance.currencyName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyName-example-1" - }, - { - "id": "runtime:domain-finance-currencyNumericCode-base", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "label": "finance.currencyNumericCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedUiSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencyNumericCode-base" - }, - { - "id": "runtime:domain-finance-currencyNumericCode-example-1", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "label": "finance.currencyNumericCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencyNumericCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedUiSchemaText": "Value\nfinance.currencyNumericCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencyNumericCode-example-1" - }, - { - "id": "runtime:domain-finance-currencySymbol-base", - "sourceType": "domain", - "command": "finance.currencySymbol", - "label": "finance.currencySymbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencySymbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencySymbol()", - "expectedUiSchemaText": "Value\nfinance.currencySymbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-currencySymbol-base" - }, - { - "id": "runtime:domain-finance-currencySymbol-example-1", - "sourceType": "domain", - "command": "finance.currencySymbol", - "label": "finance.currencySymbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.currencySymbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.currencySymbol()", - "expectedUiSchemaText": "Value\nfinance.currencySymbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-currencySymbol-example-1" - }, - { - "id": "runtime:domain-finance-ethereumAddress-base", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "label": "finance.ethereumAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.ethereumAddress()", - "expectedUiSchemaText": "Value\nfinance.ethereumAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-ethereumAddress-base" - }, - { - "id": "runtime:domain-finance-ethereumAddress-example-1", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "label": "finance.ethereumAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.ethereumAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.ethereumAddress()", - "expectedUiSchemaText": "Value\nfinance.ethereumAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-ethereumAddress-example-1" - }, - { - "id": "runtime:domain-finance-iban-base", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban()", - "expectedUiSchemaText": "Value\nfinance.iban()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-iban-base" - }, - { - "id": "runtime:domain-finance-iban-example-1", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban()", - "expectedUiSchemaText": "Value\nfinance.iban()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-1" - }, - { - "id": "runtime:domain-finance-iban-example-2", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-2" - }, - { - "id": "runtime:domain-finance-iban-example-3", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["example"], - "scenarioId": "domain-finance-iban-example-3" - }, - { - "id": "runtime:domain-finance-iban-arg-countryCode", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban arg countryCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode"], - "origins": ["arg"], - "scenarioId": "domain-finance-iban-arg-countryCode" - }, - { - "id": "runtime:domain-finance-iban-arg-formatted", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban arg formatted", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["formatted"], - "origins": ["arg"], - "scenarioId": "domain-finance-iban-arg-formatted" - }, - { - "id": "runtime:domain-finance-iban-pair-countryCode-formatted", - "sourceType": "domain", - "command": "finance.iban", - "label": "finance.iban pair countryCode/formatted", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.iban", - "params": "(countryCode=\"GB\", formatted=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.iban(countryCode=\"GB\", formatted=true)", - "expectedUiSchemaText": "Value\nfinance.iban(countryCode=\"GB\", formatted=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["countryCode", "formatted"], - "origins": ["pair"], - "scenarioId": "domain-finance-iban-pair-countryCode-formatted" - }, - { - "id": "runtime:domain-finance-litecoinAddress-base", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "label": "finance.litecoinAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.litecoinAddress()", - "expectedUiSchemaText": "Value\nfinance.litecoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-litecoinAddress-base" - }, - { - "id": "runtime:domain-finance-litecoinAddress-example-1", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "label": "finance.litecoinAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.litecoinAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.litecoinAddress()", - "expectedUiSchemaText": "Value\nfinance.litecoinAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-litecoinAddress-example-1" - }, - { - "id": "runtime:domain-finance-pin-base", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin()", - "expectedUiSchemaText": "Value\nfinance.pin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-pin-base" - }, - { - "id": "runtime:domain-finance-pin-example-1", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin()", - "expectedUiSchemaText": "Value\nfinance.pin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-pin-example-1" - }, - { - "id": "runtime:domain-finance-pin-example-2", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin(length=5)", - "expectedUiSchemaText": "Value\nfinance.pin(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-finance-pin-example-2" - }, - { - "id": "runtime:domain-finance-pin-arg-length", - "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.pin", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.pin(length=4)", - "expectedUiSchemaText": "Value\nfinance.pin(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-finance-pin-arg-length" - }, - { - "id": "runtime:domain-finance-routingNumber-base", - "sourceType": "domain", - "command": "finance.routingNumber", - "label": "finance.routingNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.routingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.routingNumber()", - "expectedUiSchemaText": "Value\nfinance.routingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-routingNumber-base" - }, - { - "id": "runtime:domain-finance-routingNumber-example-1", - "sourceType": "domain", - "command": "finance.routingNumber", - "label": "finance.routingNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.routingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.routingNumber()", - "expectedUiSchemaText": "Value\nfinance.routingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-routingNumber-example-1" - }, - { - "id": "runtime:domain-finance-transactionDescription-base", - "sourceType": "domain", - "command": "finance.transactionDescription", - "label": "finance.transactionDescription", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionDescription()", - "expectedUiSchemaText": "Value\nfinance.transactionDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-transactionDescription-base" - }, - { - "id": "runtime:domain-finance-transactionDescription-example-1", - "sourceType": "domain", - "command": "finance.transactionDescription", - "label": "finance.transactionDescription example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionDescription", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionDescription()", - "expectedUiSchemaText": "Value\nfinance.transactionDescription()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-transactionDescription-example-1" - }, - { - "id": "runtime:domain-finance-transactionType-base", - "sourceType": "domain", - "command": "finance.transactionType", - "label": "finance.transactionType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionType()", - "expectedUiSchemaText": "Value\nfinance.transactionType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-finance-transactionType-base" - }, - { - "id": "runtime:domain-finance-transactionType-example-1", - "sourceType": "domain", - "command": "finance.transactionType", - "label": "finance.transactionType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.transactionType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.transactionType()", - "expectedUiSchemaText": "Value\nfinance.transactionType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-finance-transactionType-example-1" - }, - { - "id": "runtime:domain-food-adjective-base", - "sourceType": "domain", - "command": "food.adjective", - "label": "food.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.adjective()", - "expectedUiSchemaText": "Value\nfood.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-adjective-base" - }, - { - "id": "runtime:domain-food-adjective-example-1", - "sourceType": "domain", - "command": "food.adjective", - "label": "food.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.adjective()", - "expectedUiSchemaText": "Value\nfood.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-adjective-example-1" - }, - { - "id": "runtime:domain-food-description-base", - "sourceType": "domain", - "command": "food.description", - "label": "food.description", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.description", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.description()", - "expectedUiSchemaText": "Value\nfood.description()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-description-base" - }, - { - "id": "runtime:domain-food-description-example-1", - "sourceType": "domain", - "command": "food.description", - "label": "food.description example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.description", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.description()", - "expectedUiSchemaText": "Value\nfood.description()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-description-example-1" - }, - { - "id": "runtime:domain-food-dish-base", - "sourceType": "domain", - "command": "food.dish", - "label": "food.dish", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.dish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.dish()", - "expectedUiSchemaText": "Value\nfood.dish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-dish-base" - }, - { - "id": "runtime:domain-food-dish-example-1", - "sourceType": "domain", - "command": "food.dish", - "label": "food.dish example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.dish", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.dish()", - "expectedUiSchemaText": "Value\nfood.dish()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-dish-example-1" - }, - { - "id": "runtime:domain-food-ethnicCategory-base", - "sourceType": "domain", - "command": "food.ethnicCategory", - "label": "food.ethnicCategory", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ethnicCategory", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ethnicCategory()", - "expectedUiSchemaText": "Value\nfood.ethnicCategory()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-ethnicCategory-base" - }, - { - "id": "runtime:domain-food-ethnicCategory-example-1", - "sourceType": "domain", - "command": "food.ethnicCategory", - "label": "food.ethnicCategory example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ethnicCategory", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ethnicCategory()", - "expectedUiSchemaText": "Value\nfood.ethnicCategory()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-ethnicCategory-example-1" - }, - { - "id": "runtime:domain-food-fruit-base", - "sourceType": "domain", - "command": "food.fruit", - "label": "food.fruit", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.fruit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.fruit()", - "expectedUiSchemaText": "Value\nfood.fruit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-fruit-base" - }, - { - "id": "runtime:domain-food-fruit-example-1", - "sourceType": "domain", - "command": "food.fruit", - "label": "food.fruit example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.fruit", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.fruit()", - "expectedUiSchemaText": "Value\nfood.fruit()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-fruit-example-1" - }, - { - "id": "runtime:domain-food-ingredient-base", - "sourceType": "domain", - "command": "food.ingredient", - "label": "food.ingredient", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ingredient", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ingredient()", - "expectedUiSchemaText": "Value\nfood.ingredient()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-ingredient-base" - }, - { - "id": "runtime:domain-food-ingredient-example-1", - "sourceType": "domain", - "command": "food.ingredient", - "label": "food.ingredient example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.ingredient", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.ingredient()", - "expectedUiSchemaText": "Value\nfood.ingredient()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-ingredient-example-1" - }, - { - "id": "runtime:domain-food-meat-base", - "sourceType": "domain", - "command": "food.meat", - "label": "food.meat", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.meat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.meat()", - "expectedUiSchemaText": "Value\nfood.meat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-meat-base" - }, - { - "id": "runtime:domain-food-meat-example-1", - "sourceType": "domain", - "command": "food.meat", - "label": "food.meat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.meat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.meat()", - "expectedUiSchemaText": "Value\nfood.meat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-meat-example-1" - }, - { - "id": "runtime:domain-food-spice-base", - "sourceType": "domain", - "command": "food.spice", - "label": "food.spice", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.spice", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.spice()", - "expectedUiSchemaText": "Value\nfood.spice()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-spice-base" - }, - { - "id": "runtime:domain-food-spice-example-1", - "sourceType": "domain", - "command": "food.spice", - "label": "food.spice example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.spice", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.spice()", - "expectedUiSchemaText": "Value\nfood.spice()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-spice-example-1" - }, - { - "id": "runtime:domain-food-vegetable-base", - "sourceType": "domain", - "command": "food.vegetable", - "label": "food.vegetable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.vegetable", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.vegetable()", - "expectedUiSchemaText": "Value\nfood.vegetable()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-food-vegetable-base" - }, - { - "id": "runtime:domain-food-vegetable-example-1", - "sourceType": "domain", - "command": "food.vegetable", - "label": "food.vegetable example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "food.vegetable", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfood.vegetable()", - "expectedUiSchemaText": "Value\nfood.vegetable()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-food-vegetable-example-1" - }, - { - "id": "runtime:domain-git-branch-base", - "sourceType": "domain", - "command": "git.branch", - "label": "git.branch", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.branch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.branch()", - "expectedUiSchemaText": "Value\ngit.branch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-branch-base" - }, - { - "id": "runtime:domain-git-branch-example-1", - "sourceType": "domain", - "command": "git.branch", - "label": "git.branch example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.branch", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.branch()", - "expectedUiSchemaText": "Value\ngit.branch()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-branch-example-1" - }, - { - "id": "runtime:domain-git-commitDate-base", - "sourceType": "domain", - "command": "git.commitDate", - "label": "git.commitDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitDate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitDate()", - "expectedUiSchemaText": "Value\ngit.commitDate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitDate-base" - }, - { - "id": "runtime:domain-git-commitDate-example-1", - "sourceType": "domain", - "command": "git.commitDate", - "label": "git.commitDate example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitDate", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitDate()", - "expectedUiSchemaText": "Value\ngit.commitDate()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitDate-example-1" - }, - { - "id": "runtime:domain-git-commitEntry-base", - "sourceType": "domain", - "command": "git.commitEntry", - "label": "git.commitEntry", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitEntry", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitEntry()", - "expectedUiSchemaText": "Value\ngit.commitEntry()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitEntry-base" - }, - { - "id": "runtime:domain-git-commitEntry-example-1", - "sourceType": "domain", - "command": "git.commitEntry", - "label": "git.commitEntry example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitEntry", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitEntry()", - "expectedUiSchemaText": "Value\ngit.commitEntry()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitEntry-example-1" - }, - { - "id": "runtime:domain-git-commitMessage-base", - "sourceType": "domain", - "command": "git.commitMessage", - "label": "git.commitMessage", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitMessage", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitMessage()", - "expectedUiSchemaText": "Value\ngit.commitMessage()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitMessage-base" - }, - { - "id": "runtime:domain-git-commitMessage-example-1", - "sourceType": "domain", - "command": "git.commitMessage", - "label": "git.commitMessage example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitMessage", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitMessage()", - "expectedUiSchemaText": "Value\ngit.commitMessage()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitMessage-example-1" - }, - { - "id": "runtime:domain-git-commitSha-base", - "sourceType": "domain", - "command": "git.commitSha", - "label": "git.commitSha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitSha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitSha()", - "expectedUiSchemaText": "Value\ngit.commitSha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-git-commitSha-base" - }, - { - "id": "runtime:domain-git-commitSha-example-1", - "sourceType": "domain", - "command": "git.commitSha", - "label": "git.commitSha example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "git.commitSha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ngit.commitSha()", - "expectedUiSchemaText": "Value\ngit.commitSha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-git-commitSha-example-1" - }, - { - "id": "runtime:domain-hacker-abbreviation-base", - "sourceType": "domain", - "command": "hacker.abbreviation", - "label": "hacker.abbreviation", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.abbreviation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.abbreviation()", - "expectedUiSchemaText": "Value\nhacker.abbreviation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-abbreviation-base" - }, - { - "id": "runtime:domain-hacker-abbreviation-example-1", - "sourceType": "domain", - "command": "hacker.abbreviation", - "label": "hacker.abbreviation example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.abbreviation", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.abbreviation()", - "expectedUiSchemaText": "Value\nhacker.abbreviation()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-abbreviation-example-1" - }, - { - "id": "runtime:domain-hacker-adjective-base", - "sourceType": "domain", - "command": "hacker.adjective", - "label": "hacker.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.adjective()", - "expectedUiSchemaText": "Value\nhacker.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-adjective-base" - }, - { - "id": "runtime:domain-hacker-adjective-example-1", - "sourceType": "domain", - "command": "hacker.adjective", - "label": "hacker.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.adjective()", - "expectedUiSchemaText": "Value\nhacker.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-adjective-example-1" - }, - { - "id": "runtime:domain-hacker-ingverb-base", - "sourceType": "domain", - "command": "hacker.ingverb", - "label": "hacker.ingverb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.ingverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.ingverb()", - "expectedUiSchemaText": "Value\nhacker.ingverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-ingverb-base" - }, - { - "id": "runtime:domain-hacker-ingverb-example-1", - "sourceType": "domain", - "command": "hacker.ingverb", - "label": "hacker.ingverb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.ingverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.ingverb()", - "expectedUiSchemaText": "Value\nhacker.ingverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-ingverb-example-1" - }, - { - "id": "runtime:domain-hacker-noun-base", - "sourceType": "domain", - "command": "hacker.noun", - "label": "hacker.noun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.noun()", - "expectedUiSchemaText": "Value\nhacker.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-noun-base" - }, - { - "id": "runtime:domain-hacker-noun-example-1", - "sourceType": "domain", - "command": "hacker.noun", - "label": "hacker.noun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.noun()", - "expectedUiSchemaText": "Value\nhacker.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-noun-example-1" - }, - { - "id": "runtime:domain-hacker-phrase-base", - "sourceType": "domain", - "command": "hacker.phrase", - "label": "hacker.phrase", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.phrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.phrase()", - "expectedUiSchemaText": "Value\nhacker.phrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-phrase-base" - }, - { - "id": "runtime:domain-hacker-phrase-example-1", - "sourceType": "domain", - "command": "hacker.phrase", - "label": "hacker.phrase example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.phrase", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.phrase()", - "expectedUiSchemaText": "Value\nhacker.phrase()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-phrase-example-1" - }, - { - "id": "runtime:domain-hacker-verb-base", - "sourceType": "domain", - "command": "hacker.verb", - "label": "hacker.verb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.verb()", - "expectedUiSchemaText": "Value\nhacker.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-hacker-verb-base" - }, - { - "id": "runtime:domain-hacker-verb-example-1", - "sourceType": "domain", - "command": "hacker.verb", - "label": "hacker.verb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "hacker.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nhacker.verb()", - "expectedUiSchemaText": "Value\nhacker.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-hacker-verb-example-1" - }, - { - "id": "runtime:domain-image-avatar-base", - "sourceType": "domain", - "command": "image.avatar", - "label": "image.avatar", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatar", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatar()", - "expectedUiSchemaText": "Value\nimage.avatar()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-avatar-base" - }, - { - "id": "runtime:domain-image-avatar-example-1", - "sourceType": "domain", - "command": "image.avatar", - "label": "image.avatar example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatar", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatar()", - "expectedUiSchemaText": "Value\nimage.avatar()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-avatar-example-1" - }, - { - "id": "runtime:domain-image-avatarGitHub-base", - "sourceType": "domain", - "command": "image.avatarGitHub", - "label": "image.avatarGitHub", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarGitHub", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarGitHub()", - "expectedUiSchemaText": "Value\nimage.avatarGitHub()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-avatarGitHub-base" - }, - { - "id": "runtime:domain-image-avatarGitHub-example-1", - "sourceType": "domain", - "command": "image.avatarGitHub", - "label": "image.avatarGitHub example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarGitHub", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarGitHub()", - "expectedUiSchemaText": "Value\nimage.avatarGitHub()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-avatarGitHub-example-1" - }, - { - "id": "runtime:domain-image-dataUri-base", - "sourceType": "domain", - "command": "image.dataUri", - "label": "image.dataUri", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.dataUri", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.dataUri()", - "expectedUiSchemaText": "Value\nimage.dataUri()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-dataUri-base" - }, - { - "id": "runtime:domain-image-dataUri-example-1", - "sourceType": "domain", - "command": "image.dataUri", - "label": "image.dataUri example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.dataUri", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.dataUri()", - "expectedUiSchemaText": "Value\nimage.dataUri()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-dataUri-example-1" - }, - { - "id": "runtime:domain-image-personPortrait-base", - "sourceType": "domain", - "command": "image.personPortrait", - "label": "image.personPortrait", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.personPortrait", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.personPortrait()", - "expectedUiSchemaText": "Value\nimage.personPortrait()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-personPortrait-base" - }, - { - "id": "runtime:domain-image-personPortrait-example-1", - "sourceType": "domain", - "command": "image.personPortrait", - "label": "image.personPortrait example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.personPortrait", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.personPortrait()", - "expectedUiSchemaText": "Value\nimage.personPortrait()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-personPortrait-example-1" - }, - { - "id": "runtime:domain-image-url-base", - "sourceType": "domain", - "command": "image.url", - "label": "image.url", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url()", - "expectedUiSchemaText": "Value\nimage.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-url-base" - }, - { - "id": "runtime:domain-image-url-example-1", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url()", - "expectedUiSchemaText": "Value\nimage.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-1" - }, - { - "id": "runtime:domain-image-url-example-2", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=1)", - "expectedUiSchemaText": "Value\nimage.url(height=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-2" - }, - { - "id": "runtime:domain-image-url-example-3", - "sourceType": "domain", - "command": "image.url", - "label": "image.url example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(width=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(width=1)", - "expectedUiSchemaText": "Value\nimage.url(width=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["example"], - "scenarioId": "domain-image-url-example-3" - }, - { - "id": "runtime:domain-image-url-arg-height", - "sourceType": "domain", - "command": "image.url", - "label": "image.url arg height", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=2)", - "expectedUiSchemaText": "Value\nimage.url(height=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height"], - "origins": ["arg"], - "scenarioId": "domain-image-url-arg-height" - }, - { - "id": "runtime:domain-image-url-arg-width", - "sourceType": "domain", - "command": "image.url", - "label": "image.url arg width", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(width=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(width=3)", - "expectedUiSchemaText": "Value\nimage.url(width=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["width"], - "origins": ["arg"], - "scenarioId": "domain-image-url-arg-width" - }, - { - "id": "runtime:domain-image-url-pair-height-width", - "sourceType": "domain", - "command": "image.url", - "label": "image.url pair height/width", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.url", - "params": "(height=2, width=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.url(height=2, width=3)", - "expectedUiSchemaText": "Value\nimage.url(height=2, width=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["height", "width"], - "origins": ["pair"], - "scenarioId": "domain-image-url-pair-height-width" - }, - { - "id": "runtime:domain-image-urlPicsumPhotos-base", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "label": "image.urlPicsumPhotos", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedUiSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-image-urlPicsumPhotos-base" - }, - { - "id": "runtime:domain-image-urlPicsumPhotos-example-1", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "label": "image.urlPicsumPhotos example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPicsumPhotos", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedUiSchemaText": "Value\nimage.urlPicsumPhotos()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-image-urlPicsumPhotos-example-1" - }, - { - "id": "runtime:domain-internet-displayName-base", - "sourceType": "domain", - "command": "internet.displayName", - "label": "internet.displayName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.displayName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.displayName()", - "expectedUiSchemaText": "Value\ninternet.displayName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-displayName-base" - }, - { - "id": "runtime:domain-internet-displayName-example-1", - "sourceType": "domain", - "command": "internet.displayName", - "label": "internet.displayName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.displayName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.displayName()", - "expectedUiSchemaText": "Value\ninternet.displayName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-displayName-example-1" - }, - { - "id": "runtime:domain-internet-domainName-base", - "sourceType": "domain", - "command": "internet.domainName", - "label": "internet.domainName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainName()", - "expectedUiSchemaText": "Value\ninternet.domainName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainName-base" - }, - { - "id": "runtime:domain-internet-domainName-example-1", - "sourceType": "domain", - "command": "internet.domainName", - "label": "internet.domainName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainName()", - "expectedUiSchemaText": "Value\ninternet.domainName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainName-example-1" - }, - { - "id": "runtime:domain-internet-domainSuffix-base", - "sourceType": "domain", - "command": "internet.domainSuffix", - "label": "internet.domainSuffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainSuffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainSuffix()", - "expectedUiSchemaText": "Value\ninternet.domainSuffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainSuffix-base" - }, - { - "id": "runtime:domain-internet-domainSuffix-example-1", - "sourceType": "domain", - "command": "internet.domainSuffix", - "label": "internet.domainSuffix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainSuffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainSuffix()", - "expectedUiSchemaText": "Value\ninternet.domainSuffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainSuffix-example-1" - }, - { - "id": "runtime:domain-internet-domainWord-base", - "sourceType": "domain", - "command": "internet.domainWord", - "label": "internet.domainWord", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainWord", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainWord()", - "expectedUiSchemaText": "Value\ninternet.domainWord()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-domainWord-base" - }, - { - "id": "runtime:domain-internet-domainWord-example-1", - "sourceType": "domain", - "command": "internet.domainWord", - "label": "internet.domainWord example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.domainWord", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.domainWord()", - "expectedUiSchemaText": "Value\ninternet.domainWord()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-domainWord-example-1" - }, - { - "id": "runtime:domain-internet-email-base", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email()", - "expectedUiSchemaText": "Value\ninternet.email()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-email-base" - }, - { - "id": "runtime:domain-internet-email-example-1", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email()", - "expectedUiSchemaText": "Value\ninternet.email()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-1" - }, - { - "id": "runtime:domain-internet-email-example-2", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-2" - }, - { - "id": "runtime:domain-internet-email-example-3", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-3" - }, - { - "id": "runtime:domain-internet-email-example-4", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-4" - }, - { - "id": "runtime:domain-internet-email-example-5", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName", "lastName", "provider"], - "origins": ["example"], - "scenarioId": "domain-internet-email-example-5" - }, - { - "id": "runtime:domain-internet-email-arg-allowSpecialCharacters", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg allowSpecialCharacters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-allowSpecialCharacters" - }, - { - "id": "runtime:domain-internet-email-arg-firstName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-firstName" - }, - { - "id": "runtime:domain-internet-email-arg-lastName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-lastName" - }, - { - "id": "runtime:domain-internet-email-arg-provider", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email arg provider", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["provider"], - "origins": ["arg"], - "scenarioId": "domain-internet-email-arg-provider" - }, - { - "id": "runtime:domain-internet-email-pair-allowSpecialCharacters-firstName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair allowSpecialCharacters/firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(allowSpecialCharacters=true, firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(allowSpecialCharacters=true, firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.email(allowSpecialCharacters=true, firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowSpecialCharacters", "firstName"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-allowSpecialCharacters-firstName" - }, - { - "id": "runtime:domain-internet-email-pair-firstName-lastName", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair firstName/lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(firstName=\"Ada\", lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.email(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-firstName-lastName" - }, - { - "id": "runtime:domain-internet-email-pair-lastName-provider", - "sourceType": "domain", - "command": "internet.email", - "label": "internet.email pair lastName/provider", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.email", - "params": "(lastName=\"Lovelace\", provider=\"example.com\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.email(lastName=\"Lovelace\", provider=\"example.com\")", - "expectedUiSchemaText": "Value\ninternet.email(lastName=\"Lovelace\", provider=\"example.com\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName", "provider"], - "origins": ["pair"], - "scenarioId": "domain-internet-email-pair-lastName-provider" - }, - { - "id": "runtime:domain-internet-emoji-base", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji()", - "expectedUiSchemaText": "Value\ninternet.emoji()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-emoji-base" - }, - { - "id": "runtime:domain-internet-emoji-example-1", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji()", - "expectedUiSchemaText": "Value\ninternet.emoji()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["example"], - "scenarioId": "domain-internet-emoji-example-1" - }, - { - "id": "runtime:domain-internet-emoji-example-2", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "(types=[\"food\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedUiSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["example"], - "scenarioId": "domain-internet-emoji-example-2" - }, - { - "id": "runtime:domain-internet-emoji-arg-types", - "sourceType": "domain", - "command": "internet.emoji", - "label": "internet.emoji arg types", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.emoji", - "params": "(types=[\"food\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedUiSchemaText": "Value\ninternet.emoji(types=[\"food\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["types"], - "origins": ["arg"], - "scenarioId": "domain-internet-emoji-arg-types" - }, - { - "id": "runtime:domain-internet-exampleEmail-base", - "sourceType": "domain", - "command": "internet.exampleEmail", - "label": "internet.exampleEmail", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.exampleEmail", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.exampleEmail()", - "expectedUiSchemaText": "Value\ninternet.exampleEmail()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-exampleEmail-base" - }, - { - "id": "runtime:domain-internet-exampleEmail-example-1", - "sourceType": "domain", - "command": "internet.exampleEmail", - "label": "internet.exampleEmail example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.exampleEmail", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.exampleEmail()", - "expectedUiSchemaText": "Value\ninternet.exampleEmail()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-exampleEmail-example-1" - }, - { - "id": "runtime:domain-internet-httpMethod-base", - "sourceType": "domain", - "command": "internet.httpMethod", - "label": "internet.httpMethod", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpMethod", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpMethod()", - "expectedUiSchemaText": "Value\ninternet.httpMethod()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-httpMethod-base" - }, - { - "id": "runtime:domain-internet-httpMethod-example-1", - "sourceType": "domain", - "command": "internet.httpMethod", - "label": "internet.httpMethod example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpMethod", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpMethod()", - "expectedUiSchemaText": "Value\ninternet.httpMethod()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-httpMethod-example-1" - }, - { - "id": "runtime:domain-internet-httpStatusCode-base", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "label": "internet.httpStatusCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpStatusCode()", - "expectedUiSchemaText": "Value\ninternet.httpStatusCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-httpStatusCode-base" - }, - { - "id": "runtime:domain-internet-httpStatusCode-example-1", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "label": "internet.httpStatusCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.httpStatusCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.httpStatusCode()", - "expectedUiSchemaText": "Value\ninternet.httpStatusCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-httpStatusCode-example-1" - }, - { - "id": "runtime:domain-internet-ip-base", - "sourceType": "domain", - "command": "internet.ip", - "label": "internet.ip", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ip", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ip()", - "expectedUiSchemaText": "Value\ninternet.ip()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ip-base" - }, - { - "id": "runtime:domain-internet-ip-example-1", - "sourceType": "domain", - "command": "internet.ip", - "label": "internet.ip example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ip", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ip()", - "expectedUiSchemaText": "Value\ninternet.ip()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-ip-example-1" - }, - { - "id": "runtime:domain-internet-ipv4-base", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4()", - "expectedUiSchemaText": "Value\ninternet.ipv4()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ipv4-base" - }, - { - "id": "runtime:domain-internet-ipv4-example-1", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4()", - "expectedUiSchemaText": "Value\ninternet.ipv4()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-1" - }, - { - "id": "runtime:domain-internet-ipv4-example-2", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-2" - }, - { - "id": "runtime:domain-internet-ipv4-example-3", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["example"], - "scenarioId": "domain-internet-ipv4-example-3" - }, - { - "id": "runtime:domain-internet-ipv4-arg-cidrBlock", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 arg cidrBlock", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock"], - "origins": ["arg"], - "scenarioId": "domain-internet-ipv4-arg-cidrBlock" - }, - { - "id": "runtime:domain-internet-ipv4-arg-network", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 arg network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["network"], - "origins": ["arg"], - "scenarioId": "domain-internet-ipv4-arg-network" - }, - { - "id": "runtime:domain-internet-ipv4-pair-cidrBlock-network", - "sourceType": "domain", - "command": "internet.ipv4", - "label": "internet.ipv4 pair cidrBlock/network", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv4", - "params": "(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "expectedUiSchemaText": "Value\ninternet.ipv4(cidrBlock=\"192.168.0.0/24\", network=\"private-a\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["cidrBlock", "network"], - "origins": ["pair"], - "scenarioId": "domain-internet-ipv4-pair-cidrBlock-network" - }, - { - "id": "runtime:domain-internet-ipv6-base", - "sourceType": "domain", - "command": "internet.ipv6", - "label": "internet.ipv6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv6", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv6()", - "expectedUiSchemaText": "Value\ninternet.ipv6()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-ipv6-base" - }, - { - "id": "runtime:domain-internet-ipv6-example-1", - "sourceType": "domain", - "command": "internet.ipv6", - "label": "internet.ipv6 example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.ipv6", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.ipv6()", - "expectedUiSchemaText": "Value\ninternet.ipv6()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-ipv6-example-1" - }, - { - "id": "runtime:domain-internet-jwt-base", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt()", - "expectedUiSchemaText": "Value\ninternet.jwt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-jwt-base" - }, - { - "id": "runtime:domain-internet-jwt-example-1", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt()", - "expectedUiSchemaText": "Value\ninternet.jwt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-1" - }, - { - "id": "runtime:domain-internet-jwt-example-2", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={\"value\":\"sample\"})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={\"value\":\"sample\"})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={\"value\":\"sample\"})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-2" - }, - { - "id": "runtime:domain-internet-jwt-example-3", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={\"value\":\"sample\"})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={\"value\":\"sample\"})", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={\"value\":\"sample\"})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-3" - }, - { - "id": "runtime:domain-internet-jwt-example-4", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(refDate=1718755200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(refDate=1718755200000)", - "expectedUiSchemaText": "Value\ninternet.jwt(refDate=1718755200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload", "refDate"], - "origins": ["example"], - "scenarioId": "domain-internet-jwt-example-4" - }, - { - "id": "runtime:domain-internet-jwt-arg-header", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg header", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-header" - }, - { - "id": "runtime:domain-internet-jwt-arg-payload", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg payload", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={})", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["payload"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-payload" - }, - { - "id": "runtime:domain-internet-jwt-arg-refDate", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(refDate=1)", - "expectedUiSchemaText": "Value\ninternet.jwt(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-internet-jwt-arg-refDate" - }, - { - "id": "runtime:domain-internet-jwt-pair-header-payload", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt pair header/payload", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(header={}, payload={})", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(header={}, payload={})", - "expectedUiSchemaText": "Value\ninternet.jwt(header={}, payload={})", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["header", "payload"], - "origins": ["pair"], - "scenarioId": "domain-internet-jwt-pair-header-payload" - }, - { - "id": "runtime:domain-internet-jwt-pair-payload-refDate", - "sourceType": "domain", - "command": "internet.jwt", - "label": "internet.jwt pair payload/refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwt", - "params": "(payload={}, refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwt(payload={}, refDate=1)", - "expectedUiSchemaText": "Value\ninternet.jwt(payload={}, refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["payload", "refDate"], - "origins": ["pair"], - "scenarioId": "domain-internet-jwt-pair-payload-refDate" - }, - { - "id": "runtime:domain-internet-jwtAlgorithm-base", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "label": "internet.jwtAlgorithm", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedUiSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-jwtAlgorithm-base" - }, - { - "id": "runtime:domain-internet-jwtAlgorithm-example-1", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "label": "internet.jwtAlgorithm example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.jwtAlgorithm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedUiSchemaText": "Value\ninternet.jwtAlgorithm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-jwtAlgorithm-example-1" - }, - { - "id": "runtime:domain-internet-mac-base", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac()", - "expectedUiSchemaText": "Value\ninternet.mac()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-mac-base" - }, - { - "id": "runtime:domain-internet-mac-example-1", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac()", - "expectedUiSchemaText": "Value\ninternet.mac()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["example"], - "scenarioId": "domain-internet-mac-example-1" - }, - { - "id": "runtime:domain-internet-mac-example-2", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac(separator=\"-\")", - "expectedUiSchemaText": "Value\ninternet.mac(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["example"], - "scenarioId": "domain-internet-mac-example-2" - }, - { - "id": "runtime:domain-internet-mac-arg-separator", - "sourceType": "domain", - "command": "internet.mac", - "label": "internet.mac arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.mac", - "params": "(separator=\":\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.mac(separator=\":\")", - "expectedUiSchemaText": "Value\ninternet.mac(separator=\":\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-internet-mac-arg-separator" - }, - { - "id": "runtime:domain-internet-password-base", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password()", - "expectedUiSchemaText": "Value\ninternet.password()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-password-base" - }, - { - "id": "runtime:domain-internet-password-example-1", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password()", - "expectedUiSchemaText": "Value\ninternet.password()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-1" - }, - { - "id": "runtime:domain-internet-password-example-2", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12)", - "expectedUiSchemaText": "Value\ninternet.password(length=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-2" - }, - { - "id": "runtime:domain-internet-password-example-3", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-3" - }, - { - "id": "runtime:domain-internet-password-example-4", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-4" - }, - { - "id": "runtime:domain-internet-password-example-5", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-5" - }, - { - "id": "runtime:domain-internet-password-example-6", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=false, pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-6" - }, - { - "id": "runtime:domain-internet-password-example-7", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-7" - }, - { - "id": "runtime:domain-internet-password-example-8", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 8", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=false, pattern=\"[A-Z]\", prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-8" - }, - { - "id": "runtime:domain-internet-password-arg-length", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12)", - "expectedUiSchemaText": "Value\ninternet.password(length=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-length" - }, - { - "id": "runtime:domain-internet-password-arg-memorable", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg memorable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["memorable"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-memorable" - }, - { - "id": "runtime:domain-internet-password-arg-pattern", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg pattern", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-pattern" - }, - { - "id": "runtime:domain-internet-password-arg-prefix", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-internet-password-arg-prefix" - }, - { - "id": "runtime:domain-internet-password-pair-length-memorable", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair length/memorable", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(length=12, memorable=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedUiSchemaText": "Value\ninternet.password(length=12, memorable=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-length-memorable" - }, - { - "id": "runtime:domain-internet-password-pair-memorable-pattern", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair memorable/pattern", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(memorable=true, pattern=\"[A-Z]\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(memorable=true, pattern=\"[A-Z]\")", - "expectedUiSchemaText": "Value\ninternet.password(memorable=true, pattern=\"[A-Z]\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["memorable", "pattern"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-memorable-pattern" - }, - { - "id": "runtime:domain-internet-password-pair-pattern-prefix", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password pair pattern/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "(pattern=\"[A-Z]\", prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\", prefix=\"#\")", - "expectedUiSchemaText": "Value\ninternet.password(pattern=\"[A-Z]\", prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-internet-password-pair-pattern-prefix" - }, - { - "id": "runtime:domain-internet-port-base", - "sourceType": "domain", - "command": "internet.port", - "label": "internet.port", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.port", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.port()", - "expectedUiSchemaText": "Value\ninternet.port()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-port-base" - }, - { - "id": "runtime:domain-internet-port-example-1", - "sourceType": "domain", - "command": "internet.port", - "label": "internet.port example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.port", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.port()", - "expectedUiSchemaText": "Value\ninternet.port()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-port-example-1" - }, - { - "id": "runtime:domain-internet-protocol-base", - "sourceType": "domain", - "command": "internet.protocol", - "label": "internet.protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.protocol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.protocol()", - "expectedUiSchemaText": "Value\ninternet.protocol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-protocol-base" - }, - { - "id": "runtime:domain-internet-protocol-example-1", - "sourceType": "domain", - "command": "internet.protocol", - "label": "internet.protocol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.protocol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.protocol()", - "expectedUiSchemaText": "Value\ninternet.protocol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-protocol-example-1" - }, - { - "id": "runtime:domain-internet-url-base", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url()", - "expectedUiSchemaText": "Value\ninternet.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-url-base" - }, - { - "id": "runtime:domain-internet-url-example-1", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url()", - "expectedUiSchemaText": "Value\ninternet.url()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-1" - }, - { - "id": "runtime:domain-internet-url-example-2", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-2" - }, - { - "id": "runtime:domain-internet-url-example-3", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["example"], - "scenarioId": "domain-internet-url-example-3" - }, - { - "id": "runtime:domain-internet-url-arg-appendSlash", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url arg appendSlash", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash"], - "origins": ["arg"], - "scenarioId": "domain-internet-url-arg-appendSlash" - }, - { - "id": "runtime:domain-internet-url-arg-protocol", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url arg protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["protocol"], - "origins": ["arg"], - "scenarioId": "domain-internet-url-arg-protocol" - }, - { - "id": "runtime:domain-internet-url-pair-appendSlash-protocol", - "sourceType": "domain", - "command": "internet.url", - "label": "internet.url pair appendSlash/protocol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.url", - "params": "(appendSlash=true, protocol=\"https\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.url(appendSlash=true, protocol=\"https\")", - "expectedUiSchemaText": "Value\ninternet.url(appendSlash=true, protocol=\"https\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["appendSlash", "protocol"], - "origins": ["pair"], - "scenarioId": "domain-internet-url-pair-appendSlash-protocol" - }, - { - "id": "runtime:domain-internet-userAgent-base", - "sourceType": "domain", - "command": "internet.userAgent", - "label": "internet.userAgent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.userAgent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.userAgent()", - "expectedUiSchemaText": "Value\ninternet.userAgent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-userAgent-base" - }, - { - "id": "runtime:domain-internet-userAgent-example-1", - "sourceType": "domain", - "command": "internet.userAgent", - "label": "internet.userAgent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.userAgent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.userAgent()", - "expectedUiSchemaText": "Value\ninternet.userAgent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-internet-userAgent-example-1" - }, - { - "id": "runtime:domain-internet-username-base", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username()", - "expectedUiSchemaText": "Value\ninternet.username()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-internet-username-base" - }, - { - "id": "runtime:domain-internet-username-example-1", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username()", - "expectedUiSchemaText": "Value\ninternet.username()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-1" - }, - { - "id": "runtime:domain-internet-username-example-2", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-2" - }, - { - "id": "runtime:domain-internet-username-example-3", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["example"], - "scenarioId": "domain-internet-username-example-3" - }, - { - "id": "runtime:domain-internet-username-arg-firstName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username arg firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName"], - "origins": ["arg"], - "scenarioId": "domain-internet-username-arg-firstName" - }, - { - "id": "runtime:domain-internet-username-arg-lastName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username arg lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lastName"], - "origins": ["arg"], - "scenarioId": "domain-internet-username-arg-lastName" - }, - { - "id": "runtime:domain-internet-username-pair-firstName-lastName", - "sourceType": "domain", - "command": "internet.username", - "label": "internet.username pair firstName/lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.username", - "params": "(firstName=\"Ada\", lastName=\"Lovelace\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.username(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedUiSchemaText": "Value\ninternet.username(firstName=\"Ada\", lastName=\"Lovelace\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"], - "scenarioId": "domain-internet-username-pair-firstName-lastName" - }, - { - "id": "runtime:domain-literal-value-base", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value()", - "expectedUiSchemaText": "Value\nliteral.value()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-literal-value-base" - }, - { - "id": "runtime:domain-literal-value-example-1", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=\"Pending\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedUiSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-1" - }, - { - "id": "runtime:domain-literal-value-example-2", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=\"\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=\"\")", - "expectedUiSchemaText": "Value\nliteral.value(value=\"\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-2" - }, - { - "id": "runtime:domain-literal-value-example-3", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value()", - "expectedUiSchemaText": "Value\nliteral.value()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-3" - }, - { - "id": "runtime:domain-literal-value-example-4", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=1)", - "expectedUiSchemaText": "Value\nliteral.value(value=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-4" - }, - { - "id": "runtime:domain-literal-value-arg-value", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value arg value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=true)", - "expectedUiSchemaText": "Value\nliteral.value(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["arg"], - "scenarioId": "domain-literal-value-arg-value" - }, - { - "id": "runtime:domain-location-buildingNumber-base", - "sourceType": "domain", - "command": "location.buildingNumber", - "label": "location.buildingNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.buildingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.buildingNumber()", - "expectedUiSchemaText": "Value\nlocation.buildingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-buildingNumber-base" - }, - { - "id": "runtime:domain-location-buildingNumber-example-1", - "sourceType": "domain", - "command": "location.buildingNumber", - "label": "location.buildingNumber example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.buildingNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.buildingNumber()", - "expectedUiSchemaText": "Value\nlocation.buildingNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-buildingNumber-example-1" - }, - { - "id": "runtime:domain-location-cardinalDirection-base", - "sourceType": "domain", - "command": "location.cardinalDirection", - "label": "location.cardinalDirection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.cardinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.cardinalDirection()", - "expectedUiSchemaText": "Value\nlocation.cardinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-cardinalDirection-base" - }, - { - "id": "runtime:domain-location-cardinalDirection-example-1", - "sourceType": "domain", - "command": "location.cardinalDirection", - "label": "location.cardinalDirection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.cardinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.cardinalDirection()", - "expectedUiSchemaText": "Value\nlocation.cardinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-cardinalDirection-example-1" - }, - { - "id": "runtime:domain-location-city-base", - "sourceType": "domain", - "command": "location.city", - "label": "location.city", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.city", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.city()", - "expectedUiSchemaText": "Value\nlocation.city()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-city-base" - }, - { - "id": "runtime:domain-location-city-example-1", - "sourceType": "domain", - "command": "location.city", - "label": "location.city example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.city", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.city()", - "expectedUiSchemaText": "Value\nlocation.city()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-city-example-1" - }, - { - "id": "runtime:domain-location-continent-base", - "sourceType": "domain", - "command": "location.continent", - "label": "location.continent", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.continent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.continent()", - "expectedUiSchemaText": "Value\nlocation.continent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-continent-base" - }, - { - "id": "runtime:domain-location-continent-example-1", - "sourceType": "domain", - "command": "location.continent", - "label": "location.continent example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.continent", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.continent()", - "expectedUiSchemaText": "Value\nlocation.continent()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-continent-example-1" - }, - { - "id": "runtime:domain-location-country-base", - "sourceType": "domain", - "command": "location.country", - "label": "location.country", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.country", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.country()", - "expectedUiSchemaText": "Value\nlocation.country()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-country-base" - }, - { - "id": "runtime:domain-location-country-example-1", - "sourceType": "domain", - "command": "location.country", - "label": "location.country example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.country", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.country()", - "expectedUiSchemaText": "Value\nlocation.country()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-country-example-1" - }, - { - "id": "runtime:domain-location-countryCode-base", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode()", - "expectedUiSchemaText": "Value\nlocation.countryCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-countryCode-base" - }, - { - "id": "runtime:domain-location-countryCode-example-1", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode()", - "expectedUiSchemaText": "Value\nlocation.countryCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["example"], - "scenarioId": "domain-location-countryCode-example-1" - }, - { - "id": "runtime:domain-location-countryCode-example-2", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "(variant=\"alpha-3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedUiSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["example"], - "scenarioId": "domain-location-countryCode-example-2" - }, - { - "id": "runtime:domain-location-countryCode-arg-variant", - "sourceType": "domain", - "command": "location.countryCode", - "label": "location.countryCode arg variant", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.countryCode", - "params": "(variant=\"alpha-3\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedUiSchemaText": "Value\nlocation.countryCode(variant=\"alpha-3\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["variant"], - "origins": ["arg"], - "scenarioId": "domain-location-countryCode-arg-variant" - }, - { - "id": "runtime:domain-location-county-base", - "sourceType": "domain", - "command": "location.county", - "label": "location.county", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.county", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.county()", - "expectedUiSchemaText": "Value\nlocation.county()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-county-base" - }, - { - "id": "runtime:domain-location-county-example-1", - "sourceType": "domain", - "command": "location.county", - "label": "location.county example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.county", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.county()", - "expectedUiSchemaText": "Value\nlocation.county()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-county-example-1" - }, - { - "id": "runtime:domain-location-direction-base", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction()", - "expectedUiSchemaText": "Value\nlocation.direction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-direction-base" - }, - { - "id": "runtime:domain-location-direction-example-1", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction()", - "expectedUiSchemaText": "Value\nlocation.direction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-direction-example-1" - }, - { - "id": "runtime:domain-location-direction-example-2", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-direction-example-2" - }, - { - "id": "runtime:domain-location-direction-arg-abbreviated", - "sourceType": "domain", - "command": "location.direction", - "label": "location.direction arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.direction", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.direction(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-location-direction-arg-abbreviated" - }, - { - "id": "runtime:domain-location-latitude-base", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude()", - "expectedUiSchemaText": "Value\nlocation.latitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-latitude-base" - }, - { - "id": "runtime:domain-location-latitude-example-1", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude()", - "expectedUiSchemaText": "Value\nlocation.latitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-1" - }, - { - "id": "runtime:domain-location-latitude-example-2", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=10, min=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-2" - }, - { - "id": "runtime:domain-location-latitude-example-3", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=5)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-3" - }, - { - "id": "runtime:domain-location-latitude-example-4", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(precision=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(precision=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(precision=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-latitude-example-4" - }, - { - "id": "runtime:domain-location-latitude-arg-min", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(min=1)", - "expectedUiSchemaText": "Value\nlocation.latitude(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-min" - }, - { - "id": "runtime:domain-location-latitude-arg-max", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=3)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-max" - }, - { - "id": "runtime:domain-location-latitude-arg-precision", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude arg precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(precision=4)", - "expectedUiSchemaText": "Value\nlocation.latitude(precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["precision"], - "origins": ["arg"], - "scenarioId": "domain-location-latitude-arg-precision" - }, - { - "id": "runtime:domain-location-latitude-pair-min-max", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(min=1, max=3)", - "expectedUiSchemaText": "Value\nlocation.latitude(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-location-latitude-pair-min-max" - }, - { - "id": "runtime:domain-location-latitude-pair-max-precision", - "sourceType": "domain", - "command": "location.latitude", - "label": "location.latitude pair max/precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.latitude", - "params": "(max=3, precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.latitude(max=3, precision=4)", - "expectedUiSchemaText": "Value\nlocation.latitude(max=3, precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "precision"], - "origins": ["pair"], - "scenarioId": "domain-location-latitude-pair-max-precision" - }, - { - "id": "runtime:domain-location-longitude-base", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude()", - "expectedUiSchemaText": "Value\nlocation.longitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-longitude-base" - }, - { - "id": "runtime:domain-location-longitude-example-1", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude()", - "expectedUiSchemaText": "Value\nlocation.longitude()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-1" - }, - { - "id": "runtime:domain-location-longitude-example-2", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=10, min=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-2" - }, - { - "id": "runtime:domain-location-longitude-example-3", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=5)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-3" - }, - { - "id": "runtime:domain-location-longitude-example-4", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(precision=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(precision=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(precision=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "precision"], - "origins": ["example"], - "scenarioId": "domain-location-longitude-example-4" - }, - { - "id": "runtime:domain-location-longitude-arg-min", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(min=1)", - "expectedUiSchemaText": "Value\nlocation.longitude(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-min" - }, - { - "id": "runtime:domain-location-longitude-arg-max", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=3)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-max" - }, - { - "id": "runtime:domain-location-longitude-arg-precision", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude arg precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(precision=4)", - "expectedUiSchemaText": "Value\nlocation.longitude(precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["precision"], - "origins": ["arg"], - "scenarioId": "domain-location-longitude-arg-precision" - }, - { - "id": "runtime:domain-location-longitude-pair-min-max", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(min=1, max=3)", - "expectedUiSchemaText": "Value\nlocation.longitude(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-location-longitude-pair-min-max" - }, - { - "id": "runtime:domain-location-longitude-pair-max-precision", - "sourceType": "domain", - "command": "location.longitude", - "label": "location.longitude pair max/precision", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.longitude", - "params": "(max=3, precision=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.longitude(max=3, precision=4)", - "expectedUiSchemaText": "Value\nlocation.longitude(max=3, precision=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "precision"], - "origins": ["pair"], - "scenarioId": "domain-location-longitude-pair-max-precision" - }, - { - "id": "runtime:domain-location-ordinalDirection-base", - "sourceType": "domain", - "command": "location.ordinalDirection", - "label": "location.ordinalDirection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.ordinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.ordinalDirection()", - "expectedUiSchemaText": "Value\nlocation.ordinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-ordinalDirection-base" - }, - { - "id": "runtime:domain-location-ordinalDirection-example-1", - "sourceType": "domain", - "command": "location.ordinalDirection", - "label": "location.ordinalDirection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.ordinalDirection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.ordinalDirection()", - "expectedUiSchemaText": "Value\nlocation.ordinalDirection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-ordinalDirection-example-1" - }, - { - "id": "runtime:domain-location-secondaryAddress-base", - "sourceType": "domain", - "command": "location.secondaryAddress", - "label": "location.secondaryAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.secondaryAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.secondaryAddress()", - "expectedUiSchemaText": "Value\nlocation.secondaryAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-secondaryAddress-base" - }, - { - "id": "runtime:domain-location-secondaryAddress-example-1", - "sourceType": "domain", - "command": "location.secondaryAddress", - "label": "location.secondaryAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.secondaryAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.secondaryAddress()", - "expectedUiSchemaText": "Value\nlocation.secondaryAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-secondaryAddress-example-1" - }, - { - "id": "runtime:domain-location-state-base", - "sourceType": "domain", - "command": "location.state", - "label": "location.state", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state()", - "expectedUiSchemaText": "Value\nlocation.state()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-state-base" - }, - { - "id": "runtime:domain-location-state-example-1", - "sourceType": "domain", - "command": "location.state", - "label": "location.state example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state()", - "expectedUiSchemaText": "Value\nlocation.state()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-state-example-1" - }, - { - "id": "runtime:domain-location-state-example-2", - "sourceType": "domain", - "command": "location.state", - "label": "location.state example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["example"], - "scenarioId": "domain-location-state-example-2" - }, - { - "id": "runtime:domain-location-state-arg-abbreviated", - "sourceType": "domain", - "command": "location.state", - "label": "location.state arg abbreviated", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.state", - "params": "(abbreviated=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedUiSchemaText": "Value\nlocation.state(abbreviated=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["abbreviated"], - "origins": ["arg"], - "scenarioId": "domain-location-state-arg-abbreviated" - }, - { - "id": "runtime:domain-location-street-base", - "sourceType": "domain", - "command": "location.street", - "label": "location.street", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.street", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.street()", - "expectedUiSchemaText": "Value\nlocation.street()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-street-base" - }, - { - "id": "runtime:domain-location-street-example-1", - "sourceType": "domain", - "command": "location.street", - "label": "location.street example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.street", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.street()", - "expectedUiSchemaText": "Value\nlocation.street()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-street-example-1" - }, - { - "id": "runtime:domain-location-streetAddress-base", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress()", - "expectedUiSchemaText": "Value\nlocation.streetAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-streetAddress-base" - }, - { - "id": "runtime:domain-location-streetAddress-example-1", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress()", - "expectedUiSchemaText": "Value\nlocation.streetAddress()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["example"], - "scenarioId": "domain-location-streetAddress-example-1" - }, - { - "id": "runtime:domain-location-streetAddress-example-2", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "(useFullAddress=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedUiSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["example"], - "scenarioId": "domain-location-streetAddress-example-2" - }, - { - "id": "runtime:domain-location-streetAddress-arg-useFullAddress", - "sourceType": "domain", - "command": "location.streetAddress", - "label": "location.streetAddress arg useFullAddress", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.streetAddress", - "params": "(useFullAddress=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedUiSchemaText": "Value\nlocation.streetAddress(useFullAddress=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["useFullAddress"], - "origins": ["arg"], - "scenarioId": "domain-location-streetAddress-arg-useFullAddress" - }, - { - "id": "runtime:domain-location-timeZone-base", - "sourceType": "domain", - "command": "location.timeZone", - "label": "location.timeZone", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.timeZone()", - "expectedUiSchemaText": "Value\nlocation.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-timeZone-base" - }, - { - "id": "runtime:domain-location-timeZone-example-1", - "sourceType": "domain", - "command": "location.timeZone", - "label": "location.timeZone example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.timeZone", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.timeZone()", - "expectedUiSchemaText": "Value\nlocation.timeZone()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-timeZone-example-1" - }, - { - "id": "runtime:domain-location-zipCode-base", - "sourceType": "domain", - "command": "location.zipCode", - "label": "location.zipCode", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.zipCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.zipCode()", - "expectedUiSchemaText": "Value\nlocation.zipCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-location-zipCode-base" - }, - { - "id": "runtime:domain-location-zipCode-example-1", - "sourceType": "domain", - "command": "location.zipCode", - "label": "location.zipCode example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "location.zipCode", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlocation.zipCode()", - "expectedUiSchemaText": "Value\nlocation.zipCode()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-location-zipCode-example-1" - }, - { - "id": "runtime:domain-lorem-lines-base", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines()", - "expectedUiSchemaText": "Value\nlorem.lines()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-lines-base" - }, - { - "id": "runtime:domain-lorem-lines-example-1", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines()", - "expectedUiSchemaText": "Value\nlorem.lines()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-1" - }, - { - "id": "runtime:domain-lorem-lines-example-2", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.lines(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-2" - }, - { - "id": "runtime:domain-lorem-lines-example-3", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=5)", - "expectedUiSchemaText": "Value\nlorem.lines(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-3" - }, - { - "id": "runtime:domain-lorem-lines-example-4", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-4" - }, - { - "id": "runtime:domain-lorem-lines-example-5", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-5" - }, - { - "id": "runtime:domain-lorem-lines-example-6", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "lineCount", "lineCountMax", "lineCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-lines-example-6" - }, - { - "id": "runtime:domain-lorem-lines-arg-min", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(min=1)", - "expectedUiSchemaText": "Value\nlorem.lines(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-min" - }, - { - "id": "runtime:domain-lorem-lines-arg-max", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=3)", - "expectedUiSchemaText": "Value\nlorem.lines(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-max" - }, - { - "id": "runtime:domain-lorem-lines-arg-lineCount", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCount" - }, - { - "id": "runtime:domain-lorem-lines-arg-lineCountMax", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCountMax" - }, - { - "id": "runtime:domain-lorem-lines-arg-lineCountMin", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines arg lineCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMin=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMin=1)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMin=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-lines-arg-lineCountMin" - }, - { - "id": "runtime:domain-lorem-lines-pair-min-max", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.lines(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-min-max" - }, - { - "id": "runtime:domain-lorem-lines-pair-max-lineCount", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair max/lineCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(max=3, lineCount=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(max=3, lineCount=2)", - "expectedUiSchemaText": "Value\nlorem.lines(max=3, lineCount=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "lineCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-max-lineCount" - }, - { - "id": "runtime:domain-lorem-lines-pair-lineCount-lineCountMax", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair lineCount/lineCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCount=2, lineCountMax=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCount=2, lineCountMax=2)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCount=2, lineCountMax=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCount", "lineCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-lineCount-lineCountMax" - }, - { - "id": "runtime:domain-lorem-lines-pair-lineCountMax-lineCountMin", - "sourceType": "domain", - "command": "lorem.lines", - "label": "lorem.lines pair lineCountMax/lineCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.lines", - "params": "(lineCountMax=2, lineCountMin=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.lines(lineCountMax=2, lineCountMin=1)", - "expectedUiSchemaText": "Value\nlorem.lines(lineCountMax=2, lineCountMin=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["lineCountMax", "lineCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-lines-pair-lineCountMax-lineCountMin" - }, - { - "id": "runtime:domain-lorem-paragraph-base", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph()", - "expectedUiSchemaText": "Value\nlorem.paragraph()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-paragraph-base" - }, - { - "id": "runtime:domain-lorem-paragraph-example-1", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph()", - "expectedUiSchemaText": "Value\nlorem.paragraph()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-1" - }, - { - "id": "runtime:domain-lorem-paragraph-example-2", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-2" - }, - { - "id": "runtime:domain-lorem-paragraph-example-3", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-3" - }, - { - "id": "runtime:domain-lorem-paragraph-example-4", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-4" - }, - { - "id": "runtime:domain-lorem-paragraph-example-5", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-5" - }, - { - "id": "runtime:domain-lorem-paragraph-example-6", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraph-example-6" - }, - { - "id": "runtime:domain-lorem-paragraph-arg-min", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraph(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-min" - }, - { - "id": "runtime:domain-lorem-paragraph-arg-max", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-max" - }, - { - "id": "runtime:domain-lorem-paragraph-arg-sentenceCount", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCount" - }, - { - "id": "runtime:domain-lorem-paragraph-arg-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMax" - }, - { - "id": "runtime:domain-lorem-paragraph-arg-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph arg sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMin" - }, - { - "id": "runtime:domain-lorem-paragraph-pair-min-max", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraph(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-min-max" - }, - { - "id": "runtime:domain-lorem-paragraph-pair-max-sentenceCount", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair max/sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(max=3, sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(max=3, sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraph(max=3, sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-max-sentenceCount" - }, - { - "id": "runtime:domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair sentenceCount/sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCount=4, sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCount=4, sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCount=4, sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount", "sentenceCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax" - }, - { - "id": "runtime:domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.paragraph", - "label": "lorem.paragraph pair sentenceCountMax/sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraph", - "params": "(sentenceCountMax=5, sentenceCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin" - }, - { - "id": "runtime:domain-lorem-paragraphs-base", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs()", - "expectedUiSchemaText": "Value\nlorem.paragraphs()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-paragraphs-base" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-1", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs()", - "expectedUiSchemaText": "Value\nlorem.paragraphs()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-1" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-2", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-2" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-3", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-3" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-4", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-4" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-5", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-5" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-6", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-6" - }, - { - "id": "runtime:domain-lorem-paragraphs-example-7", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "paragraphCount", "separator", "paragraphCountMax", "paragraphCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-paragraphs-example-7" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-min", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(min=1)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-min" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-max", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-max" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-paragraphCount", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCount" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-separator", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-separator" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-paragraphCountMax", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMax" - }, - { - "id": "runtime:domain-lorem-paragraphs-arg-paragraphCountMin", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs arg paragraphCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMin" - }, - { - "id": "runtime:domain-lorem-paragraphs-pair-min-max", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-min-max" - }, - { - "id": "runtime:domain-lorem-paragraphs-pair-max-paragraphCount", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair max/paragraphCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(max=3, paragraphCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(max=3, paragraphCount=4)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(max=3, paragraphCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "paragraphCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-max-paragraphCount" - }, - { - "id": "runtime:domain-lorem-paragraphs-pair-paragraphCount-separator", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair paragraphCount/separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCount=4, separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCount=4, separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCount=4, separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCount", "separator"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-paragraphCount-separator" - }, - { - "id": "runtime:domain-lorem-paragraphs-pair-separator-paragraphCountMax", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair separator/paragraphCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(separator=\"-\", paragraphCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(separator=\"-\", paragraphCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(separator=\"-\", paragraphCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "paragraphCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-separator-paragraphCountMax" - }, - { - "id": "runtime:domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", - "sourceType": "domain", - "command": "lorem.paragraphs", - "label": "lorem.paragraphs pair paragraphCountMax/paragraphCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.paragraphs", - "params": "(paragraphCountMax=6, paragraphCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["paragraphCountMax", "paragraphCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin" - }, - { - "id": "runtime:domain-lorem-sentence-base", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence()", - "expectedUiSchemaText": "Value\nlorem.sentence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-sentence-base" - }, - { - "id": "runtime:domain-lorem-sentence-example-1", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence()", - "expectedUiSchemaText": "Value\nlorem.sentence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-1" - }, - { - "id": "runtime:domain-lorem-sentence-example-2", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-2" - }, - { - "id": "runtime:domain-lorem-sentence-example-3", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-3" - }, - { - "id": "runtime:domain-lorem-sentence-example-4", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-4" - }, - { - "id": "runtime:domain-lorem-sentence-example-5", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-5" - }, - { - "id": "runtime:domain-lorem-sentence-example-6", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentence-example-6" - }, - { - "id": "runtime:domain-lorem-sentence-arg-min", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(min=1)", - "expectedUiSchemaText": "Value\nlorem.sentence(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-min" - }, - { - "id": "runtime:domain-lorem-sentence-arg-max", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=3)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-max" - }, - { - "id": "runtime:domain-lorem-sentence-arg-wordCount", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCount" - }, - { - "id": "runtime:domain-lorem-sentence-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCountMax" - }, - { - "id": "runtime:domain-lorem-sentence-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentence-arg-wordCountMin" - }, - { - "id": "runtime:domain-lorem-sentence-pair-min-max", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.sentence(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-min-max" - }, - { - "id": "runtime:domain-lorem-sentence-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentence(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-max-wordCount" - }, - { - "id": "runtime:domain-lorem-sentence-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-wordCount-wordCountMax" - }, - { - "id": "runtime:domain-lorem-sentence-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.sentence", - "label": "lorem.sentence pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentence", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentence(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.sentence(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentence-pair-wordCountMax-wordCountMin" - }, - { - "id": "runtime:domain-lorem-sentences-base", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences()", - "expectedUiSchemaText": "Value\nlorem.sentences()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-sentences-base" - }, - { - "id": "runtime:domain-lorem-sentences-example-1", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences()", - "expectedUiSchemaText": "Value\nlorem.sentences()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-1" - }, - { - "id": "runtime:domain-lorem-sentences-example-2", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-2" - }, - { - "id": "runtime:domain-lorem-sentences-example-3", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-3" - }, - { - "id": "runtime:domain-lorem-sentences-example-4", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-4" - }, - { - "id": "runtime:domain-lorem-sentences-example-5", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-5" - }, - { - "id": "runtime:domain-lorem-sentences-example-6", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-6" - }, - { - "id": "runtime:domain-lorem-sentences-example-7", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "sentenceCount", "separator", "sentenceCountMax", "sentenceCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-sentences-example-7" - }, - { - "id": "runtime:domain-lorem-sentences-arg-min", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(min=1)", - "expectedUiSchemaText": "Value\nlorem.sentences(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-min" - }, - { - "id": "runtime:domain-lorem-sentences-arg-max", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=3)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-max" - }, - { - "id": "runtime:domain-lorem-sentences-arg-sentenceCount", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCount" - }, - { - "id": "runtime:domain-lorem-sentences-arg-separator", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-separator" - }, - { - "id": "runtime:domain-lorem-sentences-arg-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCountMax" - }, - { - "id": "runtime:domain-lorem-sentences-arg-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences arg sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-sentences-arg-sentenceCountMin" - }, - { - "id": "runtime:domain-lorem-sentences-pair-min-max", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.sentences(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-min-max" - }, - { - "id": "runtime:domain-lorem-sentences-pair-max-sentenceCount", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair max/sentenceCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(max=3, sentenceCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(max=3, sentenceCount=4)", - "expectedUiSchemaText": "Value\nlorem.sentences(max=3, sentenceCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-max-sentenceCount" - }, - { - "id": "runtime:domain-lorem-sentences-pair-sentenceCount-separator", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair sentenceCount/separator", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCount=4, separator=\"-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCount=4, separator=\"-\")", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCount=4, separator=\"-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCount", "separator"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-sentenceCount-separator" - }, - { - "id": "runtime:domain-lorem-sentences-pair-separator-sentenceCountMax", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair separator/sentenceCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(separator=\"-\", sentenceCountMax=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(separator=\"-\", sentenceCountMax=6)", - "expectedUiSchemaText": "Value\nlorem.sentences(separator=\"-\", sentenceCountMax=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["separator", "sentenceCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-separator-sentenceCountMax" - }, - { - "id": "runtime:domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", - "sourceType": "domain", - "command": "lorem.sentences", - "label": "lorem.sentences pair sentenceCountMax/sentenceCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.sentences", - "params": "(sentenceCountMax=6, sentenceCountMin=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.sentences(sentenceCountMax=6, sentenceCountMin=7)", - "expectedUiSchemaText": "Value\nlorem.sentences(sentenceCountMax=6, sentenceCountMin=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin" - }, - { - "id": "runtime:domain-lorem-slug-base", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug()", - "expectedUiSchemaText": "Value\nlorem.slug()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-slug-base" - }, - { - "id": "runtime:domain-lorem-slug-example-1", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug()", - "expectedUiSchemaText": "Value\nlorem.slug()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-1" - }, - { - "id": "runtime:domain-lorem-slug-example-2", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.slug(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-2" - }, - { - "id": "runtime:domain-lorem-slug-example-3", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=5)", - "expectedUiSchemaText": "Value\nlorem.slug(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-3" - }, - { - "id": "runtime:domain-lorem-slug-example-4", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-4" - }, - { - "id": "runtime:domain-lorem-slug-example-5", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-5" - }, - { - "id": "runtime:domain-lorem-slug-example-6", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-slug-example-6" - }, - { - "id": "runtime:domain-lorem-slug-arg-min", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(min=1)", - "expectedUiSchemaText": "Value\nlorem.slug(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-min" - }, - { - "id": "runtime:domain-lorem-slug-arg-max", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=3)", - "expectedUiSchemaText": "Value\nlorem.slug(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-max" - }, - { - "id": "runtime:domain-lorem-slug-arg-wordCount", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCount" - }, - { - "id": "runtime:domain-lorem-slug-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCountMax" - }, - { - "id": "runtime:domain-lorem-slug-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-slug-arg-wordCountMin" - }, - { - "id": "runtime:domain-lorem-slug-pair-min-max", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.slug(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-min-max" - }, - { - "id": "runtime:domain-lorem-slug-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.slug(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-max-wordCount" - }, - { - "id": "runtime:domain-lorem-slug-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-wordCount-wordCountMax" - }, - { - "id": "runtime:domain-lorem-slug-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.slug", - "label": "lorem.slug pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.slug", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.slug(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.slug(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-slug-pair-wordCountMax-wordCountMin" - }, - { - "id": "runtime:domain-lorem-text-base", - "sourceType": "domain", - "command": "lorem.text", - "label": "lorem.text", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.text", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.text()", - "expectedUiSchemaText": "Value\nlorem.text()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-text-base" - }, - { - "id": "runtime:domain-lorem-text-example-1", - "sourceType": "domain", - "command": "lorem.text", - "label": "lorem.text example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.text", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.text()", - "expectedUiSchemaText": "Value\nlorem.text()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-lorem-text-example-1" - }, - { - "id": "runtime:domain-lorem-word-base", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word()", - "expectedUiSchemaText": "Value\nlorem.word()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-word-base" - }, - { - "id": "runtime:domain-lorem-word-example-1", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word()", - "expectedUiSchemaText": "Value\nlorem.word()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-1" - }, - { - "id": "runtime:domain-lorem-word-example-2", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.word(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-2" - }, - { - "id": "runtime:domain-lorem-word-example-3", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=5)", - "expectedUiSchemaText": "Value\nlorem.word(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-3" - }, - { - "id": "runtime:domain-lorem-word-example-4", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=5)", - "expectedUiSchemaText": "Value\nlorem.word(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-4" - }, - { - "id": "runtime:domain-lorem-word-example-5", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "length", "strategy"], - "origins": ["example"], - "scenarioId": "domain-lorem-word-example-5" - }, - { - "id": "runtime:domain-lorem-word-arg-min", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(min=1)", - "expectedUiSchemaText": "Value\nlorem.word(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-min" - }, - { - "id": "runtime:domain-lorem-word-arg-max", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=3)", - "expectedUiSchemaText": "Value\nlorem.word(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-max" - }, - { - "id": "runtime:domain-lorem-word-arg-length", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=4)", - "expectedUiSchemaText": "Value\nlorem.word(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-length" - }, - { - "id": "runtime:domain-lorem-word-arg-strategy", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-lorem-word-arg-strategy" - }, - { - "id": "runtime:domain-lorem-word-pair-min-max", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.word(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-min-max" - }, - { - "id": "runtime:domain-lorem-word-pair-max-length", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair max/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(max=3, length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(max=3, length=4)", - "expectedUiSchemaText": "Value\nlorem.word(max=3, length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "length"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-max-length" - }, - { - "id": "runtime:domain-lorem-word-pair-length-strategy", - "sourceType": "domain", - "command": "lorem.word", - "label": "lorem.word pair length/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.word", - "params": "(length=4, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.word(length=4, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nlorem.word(length=4, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-lorem-word-pair-length-strategy" - }, - { - "id": "runtime:domain-lorem-words-base", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words()", - "expectedUiSchemaText": "Value\nlorem.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-lorem-words-base" - }, - { - "id": "runtime:domain-lorem-words-example-1", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words()", - "expectedUiSchemaText": "Value\nlorem.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-1" - }, - { - "id": "runtime:domain-lorem-words-example-2", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=10, min=1)", - "expectedUiSchemaText": "Value\nlorem.words(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-2" - }, - { - "id": "runtime:domain-lorem-words-example-3", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=5)", - "expectedUiSchemaText": "Value\nlorem.words(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-3" - }, - { - "id": "runtime:domain-lorem-words-example-4", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-4" - }, - { - "id": "runtime:domain-lorem-words-example-5", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-5" - }, - { - "id": "runtime:domain-lorem-words-example-6", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMin=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMin=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMin=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "wordCount", "wordCountMax", "wordCountMin"], - "origins": ["example"], - "scenarioId": "domain-lorem-words-example-6" - }, - { - "id": "runtime:domain-lorem-words-arg-min", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(min=1)", - "expectedUiSchemaText": "Value\nlorem.words(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-min" - }, - { - "id": "runtime:domain-lorem-words-arg-max", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=3)", - "expectedUiSchemaText": "Value\nlorem.words(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-max" - }, - { - "id": "runtime:domain-lorem-words-arg-wordCount", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCount" - }, - { - "id": "runtime:domain-lorem-words-arg-wordCountMax", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCountMax" - }, - { - "id": "runtime:domain-lorem-words-arg-wordCountMin", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words arg wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMin"], - "origins": ["arg"], - "scenarioId": "domain-lorem-words-arg-wordCountMin" - }, - { - "id": "runtime:domain-lorem-words-pair-min-max", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(min=1, max=3)", - "expectedUiSchemaText": "Value\nlorem.words(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-min-max" - }, - { - "id": "runtime:domain-lorem-words-pair-max-wordCount", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair max/wordCount", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(max=3, wordCount=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(max=3, wordCount=4)", - "expectedUiSchemaText": "Value\nlorem.words(max=3, wordCount=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "wordCount"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-max-wordCount" - }, - { - "id": "runtime:domain-lorem-words-pair-wordCount-wordCountMax", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair wordCount/wordCountMax", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCount=4, wordCountMax=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCount=4, wordCountMax=5)", - "expectedUiSchemaText": "Value\nlorem.words(wordCount=4, wordCountMax=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-wordCount-wordCountMax" - }, - { - "id": "runtime:domain-lorem-words-pair-wordCountMax-wordCountMin", - "sourceType": "domain", - "command": "lorem.words", - "label": "lorem.words pair wordCountMax/wordCountMin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "lorem.words", - "params": "(wordCountMax=5, wordCountMin=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nlorem.words(wordCountMax=5, wordCountMin=6)", - "expectedUiSchemaText": "Value\nlorem.words(wordCountMax=5, wordCountMin=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"], - "scenarioId": "domain-lorem-words-pair-wordCountMax-wordCountMin" - }, - { - "id": "runtime:domain-music-album-base", - "sourceType": "domain", - "command": "music.album", - "label": "music.album", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.album", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.album()", - "expectedUiSchemaText": "Value\nmusic.album()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-album-base" - }, - { - "id": "runtime:domain-music-album-example-1", - "sourceType": "domain", - "command": "music.album", - "label": "music.album example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.album", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.album()", - "expectedUiSchemaText": "Value\nmusic.album()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-album-example-1" - }, - { - "id": "runtime:domain-music-artist-base", - "sourceType": "domain", - "command": "music.artist", - "label": "music.artist", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.artist", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.artist()", - "expectedUiSchemaText": "Value\nmusic.artist()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-artist-base" - }, - { - "id": "runtime:domain-music-artist-example-1", - "sourceType": "domain", - "command": "music.artist", - "label": "music.artist example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.artist", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.artist()", - "expectedUiSchemaText": "Value\nmusic.artist()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-artist-example-1" - }, - { - "id": "runtime:domain-music-genre-base", - "sourceType": "domain", - "command": "music.genre", - "label": "music.genre", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.genre()", - "expectedUiSchemaText": "Value\nmusic.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-genre-base" - }, - { - "id": "runtime:domain-music-genre-example-1", - "sourceType": "domain", - "command": "music.genre", - "label": "music.genre example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.genre", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.genre()", - "expectedUiSchemaText": "Value\nmusic.genre()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-genre-example-1" - }, - { - "id": "runtime:domain-music-songName-base", - "sourceType": "domain", - "command": "music.songName", - "label": "music.songName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.songName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.songName()", - "expectedUiSchemaText": "Value\nmusic.songName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-music-songName-base" - }, - { - "id": "runtime:domain-music-songName-example-1", - "sourceType": "domain", - "command": "music.songName", - "label": "music.songName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "music.songName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nmusic.songName()", - "expectedUiSchemaText": "Value\nmusic.songName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-music-songName-example-1" - }, - { - "id": "runtime:domain-number-bigInt-base", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt()", - "expectedUiSchemaText": "Value\nnumber.bigInt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-bigInt-base" - }, - { - "id": "runtime:domain-number-bigInt-example-1", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt()", - "expectedUiSchemaText": "Value\nnumber.bigInt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-number-bigInt-example-1" - }, - { - "id": "runtime:domain-number-bigInt-example-2", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedUiSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-number-bigInt-example-2" - }, - { - "id": "runtime:domain-number-bigInt-arg-value", - "sourceType": "domain", - "command": "number.bigInt", - "label": "number.bigInt arg value", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.bigInt", - "params": "(value=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedUiSchemaText": "Value\nnumber.bigInt(value=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["arg"], - "scenarioId": "domain-number-bigInt-arg-value" - }, - { - "id": "runtime:domain-number-binary-base", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary()", - "expectedUiSchemaText": "Value\nnumber.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-binary-base" - }, - { - "id": "runtime:domain-number-binary-example-1", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary()", - "expectedUiSchemaText": "Value\nnumber.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-1" - }, - { - "id": "runtime:domain-number-binary-example-2", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=5)", - "expectedUiSchemaText": "Value\nnumber.binary(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-2" - }, - { - "id": "runtime:domain-number-binary-example-3", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-binary-example-3" - }, - { - "id": "runtime:domain-number-binary-arg-max", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=3)", - "expectedUiSchemaText": "Value\nnumber.binary(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-binary-arg-max" - }, - { - "id": "runtime:domain-number-binary-arg-min", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-binary-arg-min" - }, - { - "id": "runtime:domain-number-binary-pair-max-min", - "sourceType": "domain", - "command": "number.binary", - "label": "number.binary pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.binary", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.binary(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.binary(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-binary-pair-max-min" - }, - { - "id": "runtime:domain-number-float-base", - "sourceType": "domain", - "command": "number.float", - "label": "number.float", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float()", - "expectedUiSchemaText": "Value\nnumber.float()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-float-base" - }, - { - "id": "runtime:domain-number-float-example-1", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float()", - "expectedUiSchemaText": "Value\nnumber.float()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-1" - }, - { - "id": "runtime:domain-number-float-example-2", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-2" - }, - { - "id": "runtime:domain-number-float-example-3", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-3" - }, - { - "id": "runtime:domain-number-float-example-4", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-4" - }, - { - "id": "runtime:domain-number-float-example-5", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10, fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10, fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10, fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-5" - }, - { - "id": "runtime:domain-number-float-example-6", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, max=10, multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, max=10, multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, max=10, multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-6" - }, - { - "id": "runtime:domain-number-float-example-7", - "sourceType": "domain", - "command": "number.float", - "label": "number.float example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=10)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=10)", - "expectedUiSchemaText": "Value\nnumber.float(max=10)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max", "min", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-float-example-7" - }, - { - "id": "runtime:domain-number-float-arg-fractionDigits", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg fractionDigits", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-fractionDigits" - }, - { - "id": "runtime:domain-number-float-arg-max", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=3)", - "expectedUiSchemaText": "Value\nnumber.float(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-max" - }, - { - "id": "runtime:domain-number-float-arg-min", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1)", - "expectedUiSchemaText": "Value\nnumber.float(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-min" - }, - { - "id": "runtime:domain-number-float-arg-multipleOf", - "sourceType": "domain", - "command": "number.float", - "label": "number.float arg multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["multipleOf"], - "origins": ["arg"], - "scenarioId": "domain-number-float-arg-multipleOf" - }, - { - "id": "runtime:domain-number-float-pair-fractionDigits-max", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair fractionDigits/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(fractionDigits=2, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(fractionDigits=2, max=3)", - "expectedUiSchemaText": "Value\nnumber.float(fractionDigits=2, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["fractionDigits", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-fractionDigits-max" - }, - { - "id": "runtime:domain-number-float-pair-max-min", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.float(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-max-min" - }, - { - "id": "runtime:domain-number-float-pair-min-multipleOf", - "sourceType": "domain", - "command": "number.float", - "label": "number.float pair min/multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.float", - "params": "(min=1, multipleOf=0.5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.float(min=1, multipleOf=0.5)", - "expectedUiSchemaText": "Value\nnumber.float(min=1, multipleOf=0.5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "multipleOf"], - "origins": ["pair"], - "scenarioId": "domain-number-float-pair-min-multipleOf" - }, - { - "id": "runtime:domain-number-hex-base", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex()", - "expectedUiSchemaText": "Value\nnumber.hex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-hex-base" - }, - { - "id": "runtime:domain-number-hex-example-1", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex()", - "expectedUiSchemaText": "Value\nnumber.hex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-1" - }, - { - "id": "runtime:domain-number-hex-example-2", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.hex(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-2" - }, - { - "id": "runtime:domain-number-hex-example-3", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=5)", - "expectedUiSchemaText": "Value\nnumber.hex(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-hex-example-3" - }, - { - "id": "runtime:domain-number-hex-arg-min", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(min=1)", - "expectedUiSchemaText": "Value\nnumber.hex(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-hex-arg-min" - }, - { - "id": "runtime:domain-number-hex-arg-max", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(max=3)", - "expectedUiSchemaText": "Value\nnumber.hex(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-hex-arg-max" - }, - { - "id": "runtime:domain-number-hex-pair-min-max", - "sourceType": "domain", - "command": "number.hex", - "label": "number.hex pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.hex", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.hex(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.hex(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-hex-pair-min-max" - }, - { - "id": "runtime:domain-number-int-base", - "sourceType": "domain", - "command": "number.int", - "label": "number.int", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int()", - "expectedUiSchemaText": "Value\nnumber.int()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-int-base" - }, - { - "id": "runtime:domain-number-int-example-1", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int()", - "expectedUiSchemaText": "Value\nnumber.int()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-1" - }, - { - "id": "runtime:domain-number-int-example-2", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.int(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-2" - }, - { - "id": "runtime:domain-number-int-example-3", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=5)", - "expectedUiSchemaText": "Value\nnumber.int(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-3" - }, - { - "id": "runtime:domain-number-int-example-4", - "sourceType": "domain", - "command": "number.int", - "label": "number.int example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(multipleOf=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(multipleOf=1)", - "expectedUiSchemaText": "Value\nnumber.int(multipleOf=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "multipleOf"], - "origins": ["example"], - "scenarioId": "domain-number-int-example-4" - }, - { - "id": "runtime:domain-number-int-arg-min", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(min=1)", - "expectedUiSchemaText": "Value\nnumber.int(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-min" - }, - { - "id": "runtime:domain-number-int-arg-max", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=3)", - "expectedUiSchemaText": "Value\nnumber.int(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-max" - }, - { - "id": "runtime:domain-number-int-arg-multipleOf", - "sourceType": "domain", - "command": "number.int", - "label": "number.int arg multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(multipleOf=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(multipleOf=4)", - "expectedUiSchemaText": "Value\nnumber.int(multipleOf=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["multipleOf"], - "origins": ["arg"], - "scenarioId": "domain-number-int-arg-multipleOf" - }, - { - "id": "runtime:domain-number-int-pair-min-max", - "sourceType": "domain", - "command": "number.int", - "label": "number.int pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.int(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-int-pair-min-max" - }, - { - "id": "runtime:domain-number-int-pair-max-multipleOf", - "sourceType": "domain", - "command": "number.int", - "label": "number.int pair max/multipleOf", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.int", - "params": "(max=3, multipleOf=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.int(max=3, multipleOf=4)", - "expectedUiSchemaText": "Value\nnumber.int(max=3, multipleOf=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "multipleOf"], - "origins": ["pair"], - "scenarioId": "domain-number-int-pair-max-multipleOf" - }, - { - "id": "runtime:domain-number-octal-base", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal()", - "expectedUiSchemaText": "Value\nnumber.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-octal-base" - }, - { - "id": "runtime:domain-number-octal-example-1", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal()", - "expectedUiSchemaText": "Value\nnumber.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-1" - }, - { - "id": "runtime:domain-number-octal-example-2", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=5)", - "expectedUiSchemaText": "Value\nnumber.octal(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-2" - }, - { - "id": "runtime:domain-number-octal-example-3", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["example"], - "scenarioId": "domain-number-octal-example-3" - }, - { - "id": "runtime:domain-number-octal-arg-max", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=3)", - "expectedUiSchemaText": "Value\nnumber.octal(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-octal-arg-max" - }, - { - "id": "runtime:domain-number-octal-arg-min", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-octal-arg-min" - }, - { - "id": "runtime:domain-number-octal-pair-max-min", - "sourceType": "domain", - "command": "number.octal", - "label": "number.octal pair max/min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.octal", - "params": "(max=3, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.octal(max=3, min=1)", - "expectedUiSchemaText": "Value\nnumber.octal(max=3, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "min"], - "origins": ["pair"], - "scenarioId": "domain-number-octal-pair-max-min" - }, - { - "id": "runtime:domain-number-romanNumeral-base", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral()", - "expectedUiSchemaText": "Value\nnumber.romanNumeral()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-number-romanNumeral-base" - }, - { - "id": "runtime:domain-number-romanNumeral-example-1", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral()", - "expectedUiSchemaText": "Value\nnumber.romanNumeral()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-1" - }, - { - "id": "runtime:domain-number-romanNumeral-example-2", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=10, min=1)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-2" - }, - { - "id": "runtime:domain-number-romanNumeral-example-3", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=5)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["example"], - "scenarioId": "domain-number-romanNumeral-example-3" - }, - { - "id": "runtime:domain-number-romanNumeral-arg-min", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(min=1)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-number-romanNumeral-arg-min" - }, - { - "id": "runtime:domain-number-romanNumeral-arg-max", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(max=3)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-number-romanNumeral-arg-max" - }, - { - "id": "runtime:domain-number-romanNumeral-pair-min-max", - "sourceType": "domain", - "command": "number.romanNumeral", - "label": "number.romanNumeral pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "number.romanNumeral", - "params": "(min=1, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nnumber.romanNumeral(min=1, max=3)", - "expectedUiSchemaText": "Value\nnumber.romanNumeral(min=1, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-number-romanNumeral-pair-min-max" - }, - { - "id": "runtime:domain-person-bio-base", - "sourceType": "domain", - "command": "person.bio", - "label": "person.bio", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.bio", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.bio()", - "expectedUiSchemaText": "Value\nperson.bio()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-bio-base" - }, - { - "id": "runtime:domain-person-bio-example-1", - "sourceType": "domain", - "command": "person.bio", - "label": "person.bio example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.bio", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.bio()", - "expectedUiSchemaText": "Value\nperson.bio()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-bio-example-1" - }, - { - "id": "runtime:domain-person-firstName-base", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName()", - "expectedUiSchemaText": "Value\nperson.firstName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-firstName-base" - }, - { - "id": "runtime:domain-person-firstName-example-1", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName()", - "expectedUiSchemaText": "Value\nperson.firstName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-firstName-example-1" - }, - { - "id": "runtime:domain-person-firstName-example-2", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-firstName-example-2" - }, - { - "id": "runtime:domain-person-firstName-arg-sex", - "sourceType": "domain", - "command": "person.firstName", - "label": "person.firstName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.firstName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.firstName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-firstName-arg-sex" - }, - { - "id": "runtime:domain-person-fullName-base", - "sourceType": "domain", - "command": "person.fullName", - "label": "person.fullName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.fullName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.fullName()", - "expectedUiSchemaText": "Value\nperson.fullName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-fullName-base" - }, - { - "id": "runtime:domain-person-fullName-example-1", - "sourceType": "domain", - "command": "person.fullName", - "label": "person.fullName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.fullName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.fullName()", - "expectedUiSchemaText": "Value\nperson.fullName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-fullName-example-1" - }, - { - "id": "runtime:domain-person-gender-base", - "sourceType": "domain", - "command": "person.gender", - "label": "person.gender", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.gender", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.gender()", - "expectedUiSchemaText": "Value\nperson.gender()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-gender-base" - }, - { - "id": "runtime:domain-person-gender-example-1", - "sourceType": "domain", - "command": "person.gender", - "label": "person.gender example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.gender", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.gender()", - "expectedUiSchemaText": "Value\nperson.gender()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-gender-example-1" - }, - { - "id": "runtime:domain-person-jobArea-base", - "sourceType": "domain", - "command": "person.jobArea", - "label": "person.jobArea", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobArea", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobArea()", - "expectedUiSchemaText": "Value\nperson.jobArea()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobArea-base" - }, - { - "id": "runtime:domain-person-jobArea-example-1", - "sourceType": "domain", - "command": "person.jobArea", - "label": "person.jobArea example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobArea", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobArea()", - "expectedUiSchemaText": "Value\nperson.jobArea()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobArea-example-1" - }, - { - "id": "runtime:domain-person-jobDescriptor-base", - "sourceType": "domain", - "command": "person.jobDescriptor", - "label": "person.jobDescriptor", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobDescriptor()", - "expectedUiSchemaText": "Value\nperson.jobDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobDescriptor-base" - }, - { - "id": "runtime:domain-person-jobDescriptor-example-1", - "sourceType": "domain", - "command": "person.jobDescriptor", - "label": "person.jobDescriptor example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobDescriptor", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobDescriptor()", - "expectedUiSchemaText": "Value\nperson.jobDescriptor()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobDescriptor-example-1" - }, - { - "id": "runtime:domain-person-jobTitle-base", - "sourceType": "domain", - "command": "person.jobTitle", - "label": "person.jobTitle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobTitle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobTitle()", - "expectedUiSchemaText": "Value\nperson.jobTitle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobTitle-base" - }, - { - "id": "runtime:domain-person-jobTitle-example-1", - "sourceType": "domain", - "command": "person.jobTitle", - "label": "person.jobTitle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobTitle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobTitle()", - "expectedUiSchemaText": "Value\nperson.jobTitle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobTitle-example-1" - }, - { - "id": "runtime:domain-person-jobType-base", - "sourceType": "domain", - "command": "person.jobType", - "label": "person.jobType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobType()", - "expectedUiSchemaText": "Value\nperson.jobType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-jobType-base" - }, - { - "id": "runtime:domain-person-jobType-example-1", - "sourceType": "domain", - "command": "person.jobType", - "label": "person.jobType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.jobType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.jobType()", - "expectedUiSchemaText": "Value\nperson.jobType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-jobType-example-1" - }, - { - "id": "runtime:domain-person-lastName-base", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName()", - "expectedUiSchemaText": "Value\nperson.lastName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-lastName-base" - }, - { - "id": "runtime:domain-person-lastName-example-1", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName()", - "expectedUiSchemaText": "Value\nperson.lastName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-lastName-example-1" - }, - { - "id": "runtime:domain-person-lastName-example-2", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-lastName-example-2" - }, - { - "id": "runtime:domain-person-lastName-arg-sex", - "sourceType": "domain", - "command": "person.lastName", - "label": "person.lastName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.lastName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.lastName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-lastName-arg-sex" - }, - { - "id": "runtime:domain-person-middleName-base", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName()", - "expectedUiSchemaText": "Value\nperson.middleName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-middleName-base" - }, - { - "id": "runtime:domain-person-middleName-example-1", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName()", - "expectedUiSchemaText": "Value\nperson.middleName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-middleName-example-1" - }, - { - "id": "runtime:domain-person-middleName-example-2", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-middleName-example-2" - }, - { - "id": "runtime:domain-person-middleName-arg-sex", - "sourceType": "domain", - "command": "person.middleName", - "label": "person.middleName arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.middleName", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.middleName(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-middleName-arg-sex" - }, - { - "id": "runtime:domain-person-prefix-base", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix()", - "expectedUiSchemaText": "Value\nperson.prefix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-prefix-base" - }, - { - "id": "runtime:domain-person-prefix-example-1", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix()", - "expectedUiSchemaText": "Value\nperson.prefix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-prefix-example-1" - }, - { - "id": "runtime:domain-person-prefix-example-2", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["example"], - "scenarioId": "domain-person-prefix-example-2" - }, - { - "id": "runtime:domain-person-prefix-arg-sex", - "sourceType": "domain", - "command": "person.prefix", - "label": "person.prefix arg sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.prefix", - "params": "(sex=\"female\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedUiSchemaText": "Value\nperson.prefix(sex=\"female\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["sex"], - "origins": ["arg"], - "scenarioId": "domain-person-prefix-arg-sex" - }, - { - "id": "runtime:domain-person-sex-base", - "sourceType": "domain", - "command": "person.sex", - "label": "person.sex", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sex()", - "expectedUiSchemaText": "Value\nperson.sex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-sex-base" - }, - { - "id": "runtime:domain-person-sex-example-1", - "sourceType": "domain", - "command": "person.sex", - "label": "person.sex example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sex", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sex()", - "expectedUiSchemaText": "Value\nperson.sex()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-sex-example-1" - }, - { - "id": "runtime:domain-person-sexType-base", - "sourceType": "domain", - "command": "person.sexType", - "label": "person.sexType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sexType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sexType()", - "expectedUiSchemaText": "Value\nperson.sexType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-sexType-base" - }, - { - "id": "runtime:domain-person-sexType-example-1", - "sourceType": "domain", - "command": "person.sexType", - "label": "person.sexType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.sexType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.sexType()", - "expectedUiSchemaText": "Value\nperson.sexType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-sexType-example-1" - }, - { - "id": "runtime:domain-person-suffix-base", - "sourceType": "domain", - "command": "person.suffix", - "label": "person.suffix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.suffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.suffix()", - "expectedUiSchemaText": "Value\nperson.suffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-suffix-base" - }, - { - "id": "runtime:domain-person-suffix-example-1", - "sourceType": "domain", - "command": "person.suffix", - "label": "person.suffix example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.suffix", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.suffix()", - "expectedUiSchemaText": "Value\nperson.suffix()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-suffix-example-1" - }, - { - "id": "runtime:domain-person-zodiacSign-base", - "sourceType": "domain", - "command": "person.zodiacSign", - "label": "person.zodiacSign", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.zodiacSign", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.zodiacSign()", - "expectedUiSchemaText": "Value\nperson.zodiacSign()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-person-zodiacSign-base" - }, - { - "id": "runtime:domain-person-zodiacSign-example-1", - "sourceType": "domain", - "command": "person.zodiacSign", - "label": "person.zodiacSign example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "person.zodiacSign", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nperson.zodiacSign()", - "expectedUiSchemaText": "Value\nperson.zodiacSign()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-person-zodiacSign-example-1" - }, - { - "id": "runtime:domain-phone-imei-base", - "sourceType": "domain", - "command": "phone.imei", - "label": "phone.imei", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.imei", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.imei()", - "expectedUiSchemaText": "Value\nphone.imei()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-phone-imei-base" - }, - { - "id": "runtime:domain-phone-imei-example-1", - "sourceType": "domain", - "command": "phone.imei", - "label": "phone.imei example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.imei", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.imei()", - "expectedUiSchemaText": "Value\nphone.imei()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-phone-imei-example-1" - }, - { - "id": "runtime:domain-phone-number-base", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number()", - "expectedUiSchemaText": "Value\nphone.number()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-phone-number-base" - }, - { - "id": "runtime:domain-phone-number-example-1", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number()", - "expectedUiSchemaText": "Value\nphone.number()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["example"], - "scenarioId": "domain-phone-number-example-1" - }, - { - "id": "runtime:domain-phone-number-example-2", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "(style=\"international\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number(style=\"international\")", - "expectedUiSchemaText": "Value\nphone.number(style=\"international\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["example"], - "scenarioId": "domain-phone-number-example-2" - }, - { - "id": "runtime:domain-phone-number-arg-style", - "sourceType": "domain", - "command": "phone.number", - "label": "phone.number arg style", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "phone.number", - "params": "(style=\"international\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nphone.number(style=\"international\")", - "expectedUiSchemaText": "Value\nphone.number(style=\"international\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["style"], - "origins": ["arg"], - "scenarioId": "domain-phone-number-arg-style" - }, - { - "id": "runtime:domain-string-alpha-base", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha()", - "expectedUiSchemaText": "Value\nstring.alpha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-alpha-base" - }, - { - "id": "runtime:domain-string-alpha-example-1", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha()", - "expectedUiSchemaText": "Value\nstring.alpha()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-1" - }, - { - "id": "runtime:domain-string-alpha-example-2", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5)", - "expectedUiSchemaText": "Value\nstring.alpha(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-2" - }, - { - "id": "runtime:domain-string-alpha-example-3", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-3" - }, - { - "id": "runtime:domain-string-alpha-example-4", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-4" - }, - { - "id": "runtime:domain-string-alpha-example-5", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alpha(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-5" - }, - { - "id": "runtime:domain-string-alpha-example-6", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alpha(length=5, casing=\"upper\", exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alpha-example-6" - }, - { - "id": "runtime:domain-string-alpha-arg-length", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=4)", - "expectedUiSchemaText": "Value\nstring.alpha(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-length" - }, - { - "id": "runtime:domain-string-alpha-arg-casing", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-casing" - }, - { - "id": "runtime:domain-string-alpha-arg-exclude", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alpha(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-alpha-arg-exclude" - }, - { - "id": "runtime:domain-string-alpha-pair-length-casing", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha pair length/casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(length=4, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(length=4, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alpha(length=4, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing"], - "origins": ["pair"], - "scenarioId": "domain-string-alpha-pair-length-casing" - }, - { - "id": "runtime:domain-string-alpha-pair-casing-exclude", - "sourceType": "domain", - "command": "string.alpha", - "label": "string.alpha pair casing/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alpha", - "params": "(casing=\"upper\", exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alpha(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alpha(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-alpha-pair-casing-exclude" - }, - { - "id": "runtime:domain-string-alphanumeric-base", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric()", - "expectedUiSchemaText": "Value\nstring.alphanumeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-alphanumeric-base" - }, - { - "id": "runtime:domain-string-alphanumeric-example-1", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric()", - "expectedUiSchemaText": "Value\nstring.alphanumeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-1" - }, - { - "id": "runtime:domain-string-alphanumeric-example-2", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=5)", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-2" - }, - { - "id": "runtime:domain-string-alphanumeric-example-3", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-3" - }, - { - "id": "runtime:domain-string-alphanumeric-example-4", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-alphanumeric-example-4" - }, - { - "id": "runtime:domain-string-alphanumeric-arg-length", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=4)", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-length" - }, - { - "id": "runtime:domain-string-alphanumeric-arg-casing", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-casing" - }, - { - "id": "runtime:domain-string-alphanumeric-arg-exclude", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-alphanumeric-arg-exclude" - }, - { - "id": "runtime:domain-string-alphanumeric-pair-length-casing", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric pair length/casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(length=4, casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(length=4, casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.alphanumeric(length=4, casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "casing"], - "origins": ["pair"], - "scenarioId": "domain-string-alphanumeric-pair-length-casing" - }, - { - "id": "runtime:domain-string-alphanumeric-pair-casing-exclude", - "sourceType": "domain", - "command": "string.alphanumeric", - "label": "string.alphanumeric pair casing/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.alphanumeric", - "params": "(casing=\"upper\", exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.alphanumeric(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.alphanumeric(casing=\"upper\", exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-alphanumeric-pair-casing-exclude" - }, - { - "id": "runtime:domain-string-binary-base", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary()", - "expectedUiSchemaText": "Value\nstring.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-binary-base" - }, - { - "id": "runtime:domain-string-binary-example-1", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary()", - "expectedUiSchemaText": "Value\nstring.binary()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-1" - }, - { - "id": "runtime:domain-string-binary-example-2", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=5)", - "expectedUiSchemaText": "Value\nstring.binary(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-2" - }, - { - "id": "runtime:domain-string-binary-example-3", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.binary(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-binary-example-3" - }, - { - "id": "runtime:domain-string-binary-arg-length", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=4)", - "expectedUiSchemaText": "Value\nstring.binary(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-binary-arg-length" - }, - { - "id": "runtime:domain-string-binary-arg-prefix", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.binary(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-binary-arg-prefix" - }, - { - "id": "runtime:domain-string-binary-pair-length-prefix", - "sourceType": "domain", - "command": "string.binary", - "label": "string.binary pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.binary", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.binary(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.binary(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-binary-pair-length-prefix" - }, - { - "id": "runtime:domain-string-counterString-base", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(1, 25, \"*\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(1, 25, \"*\")", - "expectedUiSchemaText": "Value\nstring.counterString(1, 25, \"*\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-counterString-base" - }, - { - "id": "runtime:domain-string-counterString-example-1", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString()", - "expectedUiSchemaText": "Value\nstring.counterString()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-1" - }, - { - "id": "runtime:domain-string-counterString-example-2", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=15)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=15)", - "expectedUiSchemaText": "Value\nstring.counterString(min=15)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-2" - }, - { - "id": "runtime:domain-string-counterString-example-3", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5, max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-3" - }, - { - "id": "runtime:domain-string-counterString-example-4", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=12, max=12, delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=12, max=12, delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(min=12, max=12, delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-4" - }, - { - "id": "runtime:domain-string-counterString-example-5", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 5", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=10, min=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=10, min=1)", - "expectedUiSchemaText": "Value\nstring.counterString(max=10, min=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-5" - }, - { - "id": "runtime:domain-string-counterString-example-6", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 6", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-6" - }, - { - "id": "runtime:domain-string-counterString-example-7", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 7", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-7" - }, - { - "id": "runtime:domain-string-counterString-arg-min", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg min", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-min" - }, - { - "id": "runtime:domain-string-counterString-arg-max", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-max" - }, - { - "id": "runtime:domain-string-counterString-arg-delimiter", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString arg delimiter", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["delimiter"], - "origins": ["arg"], - "scenarioId": "domain-string-counterString-arg-delimiter" - }, - { - "id": "runtime:domain-string-counterString-pair-min-max", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString pair min/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(min=5, max=12)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedUiSchemaText": "Value\nstring.counterString(min=5, max=12)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max"], - "origins": ["pair"], - "scenarioId": "domain-string-counterString-pair-min-max" - }, - { - "id": "runtime:domain-string-counterString-pair-max-delimiter", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString pair max/delimiter", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "(max=12, delimiter=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString(max=12, delimiter=\"#\")", - "expectedUiSchemaText": "Value\nstring.counterString(max=12, delimiter=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "delimiter"], - "origins": ["pair"], - "scenarioId": "domain-string-counterString-pair-max-delimiter" - }, - { - "id": "runtime:domain-string-fromCharacters-base", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(\"ABC123\", 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-fromCharacters-base" - }, - { - "id": "runtime:domain-string-fromCharacters-example-1", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=6)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=6)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=6)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-1" - }, - { - "id": "runtime:domain-string-fromCharacters-example-2", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=[\"A\", \"B\", \"C\"], length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=[\"A\", \"B\", \"C\"], length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=[\"A\", \"B\", \"C\"], length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-2" - }, - { - "id": "runtime:domain-string-fromCharacters-example-3", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["example"], - "scenarioId": "domain-string-fromCharacters-example-3" - }, - { - "id": "runtime:domain-string-fromCharacters-arg-characters", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters arg characters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\")", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters"], - "origins": ["arg"], - "scenarioId": "domain-string-fromCharacters-arg-characters" - }, - { - "id": "runtime:domain-string-fromCharacters-arg-length", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-fromCharacters-arg-length" - }, - { - "id": "runtime:domain-string-fromCharacters-pair-characters-length", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters pair characters/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(characters=\"ABC123\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(characters=\"ABC123\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["characters", "length"], - "origins": ["pair"], - "scenarioId": "domain-string-fromCharacters-pair-characters-length" - }, - { - "id": "runtime:domain-string-hexadecimal-base", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal()", - "expectedUiSchemaText": "Value\nstring.hexadecimal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-hexadecimal-base" - }, - { - "id": "runtime:domain-string-hexadecimal-example-1", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal()", - "expectedUiSchemaText": "Value\nstring.hexadecimal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-1" - }, - { - "id": "runtime:domain-string-hexadecimal-example-2", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-2" - }, - { - "id": "runtime:domain-string-hexadecimal-example-3", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=5)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-3" - }, - { - "id": "runtime:domain-string-hexadecimal-example-4", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-hexadecimal-example-4" - }, - { - "id": "runtime:domain-string-hexadecimal-arg-casing", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg casing", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-casing" - }, - { - "id": "runtime:domain-string-hexadecimal-arg-length", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=4)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-length" - }, - { - "id": "runtime:domain-string-hexadecimal-arg-prefix", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-hexadecimal-arg-prefix" - }, - { - "id": "runtime:domain-string-hexadecimal-pair-casing-length", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal pair casing/length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(casing=\"upper\", length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(casing=\"upper\", length=4)", - "expectedUiSchemaText": "Value\nstring.hexadecimal(casing=\"upper\", length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["casing", "length"], - "origins": ["pair"], - "scenarioId": "domain-string-hexadecimal-pair-casing-length" - }, - { - "id": "runtime:domain-string-hexadecimal-pair-length-prefix", - "sourceType": "domain", - "command": "string.hexadecimal", - "label": "string.hexadecimal pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.hexadecimal", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.hexadecimal(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.hexadecimal(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-hexadecimal-pair-length-prefix" - }, - { - "id": "runtime:domain-string-nanoid-base", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid()", - "expectedUiSchemaText": "Value\nstring.nanoid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-nanoid-base" - }, - { - "id": "runtime:domain-string-nanoid-example-1", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid()", - "expectedUiSchemaText": "Value\nstring.nanoid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-nanoid-example-1" - }, - { - "id": "runtime:domain-string-nanoid-example-2", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid(length=5)", - "expectedUiSchemaText": "Value\nstring.nanoid(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-nanoid-example-2" - }, - { - "id": "runtime:domain-string-nanoid-arg-length", - "sourceType": "domain", - "command": "string.nanoid", - "label": "string.nanoid arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.nanoid", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.nanoid(length=4)", - "expectedUiSchemaText": "Value\nstring.nanoid(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-nanoid-arg-length" - }, - { - "id": "runtime:domain-string-numeric-base", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric()", - "expectedUiSchemaText": "Value\nstring.numeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-numeric-base" - }, - { - "id": "runtime:domain-string-numeric-example-1", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric()", - "expectedUiSchemaText": "Value\nstring.numeric()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-1" - }, - { - "id": "runtime:domain-string-numeric-example-2", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=5)", - "expectedUiSchemaText": "Value\nstring.numeric(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-2" - }, - { - "id": "runtime:domain-string-numeric-example-3", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-3" - }, - { - "id": "runtime:domain-string-numeric-example-4", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(exclude=[\"A\",\"B\",\"C\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedUiSchemaText": "Value\nstring.numeric(exclude=[\"A\",\"B\",\"C\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros", "exclude"], - "origins": ["example"], - "scenarioId": "domain-string-numeric-example-4" - }, - { - "id": "runtime:domain-string-numeric-arg-length", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=4)", - "expectedUiSchemaText": "Value\nstring.numeric(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-length" - }, - { - "id": "runtime:domain-string-numeric-arg-allowLeadingZeros", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg allowLeadingZeros", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowLeadingZeros"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-allowLeadingZeros" - }, - { - "id": "runtime:domain-string-numeric-arg-exclude", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric arg exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.numeric(exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["exclude"], - "origins": ["arg"], - "scenarioId": "domain-string-numeric-arg-exclude" - }, - { - "id": "runtime:domain-string-numeric-pair-length-allowLeadingZeros", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric pair length/allowLeadingZeros", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(length=4, allowLeadingZeros=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(length=4, allowLeadingZeros=true)", - "expectedUiSchemaText": "Value\nstring.numeric(length=4, allowLeadingZeros=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "allowLeadingZeros"], - "origins": ["pair"], - "scenarioId": "domain-string-numeric-pair-length-allowLeadingZeros" - }, - { - "id": "runtime:domain-string-numeric-pair-allowLeadingZeros-exclude", - "sourceType": "domain", - "command": "string.numeric", - "label": "string.numeric pair allowLeadingZeros/exclude", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.numeric", - "params": "(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.numeric(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nstring.numeric(allowLeadingZeros=true, exclude=[\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["allowLeadingZeros", "exclude"], - "origins": ["pair"], - "scenarioId": "domain-string-numeric-pair-allowLeadingZeros-exclude" - }, - { - "id": "runtime:domain-string-octal-base", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal()", - "expectedUiSchemaText": "Value\nstring.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-octal-base" - }, - { - "id": "runtime:domain-string-octal-example-1", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal()", - "expectedUiSchemaText": "Value\nstring.octal()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-1" - }, - { - "id": "runtime:domain-string-octal-example-2", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=5)", - "expectedUiSchemaText": "Value\nstring.octal(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-2" - }, - { - "id": "runtime:domain-string-octal-example-3", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(prefix=\"PRE-\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(prefix=\"PRE-\")", - "expectedUiSchemaText": "Value\nstring.octal(prefix=\"PRE-\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["example"], - "scenarioId": "domain-string-octal-example-3" - }, - { - "id": "runtime:domain-string-octal-arg-length", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=4)", - "expectedUiSchemaText": "Value\nstring.octal(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-octal-arg-length" - }, - { - "id": "runtime:domain-string-octal-arg-prefix", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal arg prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.octal(prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], - "origins": ["arg"], - "scenarioId": "domain-string-octal-arg-prefix" - }, - { - "id": "runtime:domain-string-octal-pair-length-prefix", - "sourceType": "domain", - "command": "string.octal", - "label": "string.octal pair length/prefix", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.octal", - "params": "(length=4, prefix=\"#\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.octal(length=4, prefix=\"#\")", - "expectedUiSchemaText": "Value\nstring.octal(length=4, prefix=\"#\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "prefix"], - "origins": ["pair"], - "scenarioId": "domain-string-octal-pair-length-prefix" - }, - { - "id": "runtime:domain-string-sample-base", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample()", - "expectedUiSchemaText": "Value\nstring.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-sample-base" - }, - { - "id": "runtime:domain-string-sample-example-1", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample()", - "expectedUiSchemaText": "Value\nstring.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-sample-example-1" - }, - { - "id": "runtime:domain-string-sample-example-2", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample(length=5)", - "expectedUiSchemaText": "Value\nstring.sample(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-sample-example-2" - }, - { - "id": "runtime:domain-string-sample-arg-length", - "sourceType": "domain", - "command": "string.sample", - "label": "string.sample arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.sample", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.sample(length=4)", - "expectedUiSchemaText": "Value\nstring.sample(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-sample-arg-length" - }, - { - "id": "runtime:domain-string-symbol-base", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol()", - "expectedUiSchemaText": "Value\nstring.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-symbol-base" - }, - { - "id": "runtime:domain-string-symbol-example-1", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol()", - "expectedUiSchemaText": "Value\nstring.symbol()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-symbol-example-1" - }, - { - "id": "runtime:domain-string-symbol-example-2", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol(length=5)", - "expectedUiSchemaText": "Value\nstring.symbol(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["example"], - "scenarioId": "domain-string-symbol-example-2" - }, - { - "id": "runtime:domain-string-symbol-arg-length", - "sourceType": "domain", - "command": "string.symbol", - "label": "string.symbol arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.symbol", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.symbol(length=4)", - "expectedUiSchemaText": "Value\nstring.symbol(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-string-symbol-arg-length" - }, - { - "id": "runtime:domain-string-ulid-base", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid()", - "expectedUiSchemaText": "Value\nstring.ulid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-ulid-base" - }, - { - "id": "runtime:domain-string-ulid-example-1", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid()", - "expectedUiSchemaText": "Value\nstring.ulid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-string-ulid-example-1" - }, - { - "id": "runtime:domain-string-ulid-example-2", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "(refDate=1718755200000)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid(refDate=1718755200000)", - "expectedUiSchemaText": "Value\nstring.ulid(refDate=1718755200000)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["example"], - "scenarioId": "domain-string-ulid-example-2" - }, - { - "id": "runtime:domain-string-ulid-arg-refDate", - "sourceType": "domain", - "command": "string.ulid", - "label": "string.ulid arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.ulid", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.ulid(refDate=1)", - "expectedUiSchemaText": "Value\nstring.ulid(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-string-ulid-arg-refDate" - }, - { - "id": "runtime:domain-string-uuid-base", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid()", - "expectedUiSchemaText": "Value\nstring.uuid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-uuid-base" - }, - { - "id": "runtime:domain-string-uuid-example-1", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid()", - "expectedUiSchemaText": "Value\nstring.uuid()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-1" - }, - { - "id": "runtime:domain-string-uuid-example-2", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(version=7)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(version=7)", - "expectedUiSchemaText": "Value\nstring.uuid(version=7)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-2" - }, - { - "id": "runtime:domain-string-uuid-example-3", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(refDate=\"2026-06-18T00:00:00.000Z\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(refDate=\"2026-06-18T00:00:00.000Z\")", - "expectedUiSchemaText": "Value\nstring.uuid(refDate=\"2026-06-18T00:00:00.000Z\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version", "refDate"], - "origins": ["example"], - "scenarioId": "domain-string-uuid-example-3" - }, - { - "id": "runtime:domain-string-uuid-arg-version", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid arg version", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(version=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(version=4)", - "expectedUiSchemaText": "Value\nstring.uuid(version=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["version"], - "origins": ["arg"], - "scenarioId": "domain-string-uuid-arg-version" - }, - { - "id": "runtime:domain-string-uuid-arg-refDate", - "sourceType": "domain", - "command": "string.uuid", - "label": "string.uuid arg refDate", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.uuid", - "params": "(refDate=1)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.uuid(refDate=1)", - "expectedUiSchemaText": "Value\nstring.uuid(refDate=1)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate"], - "origins": ["arg"], - "scenarioId": "domain-string-uuid-arg-refDate" - }, - { - "id": "runtime:domain-system-commonFileExt-base", - "sourceType": "domain", - "command": "system.commonFileExt", - "label": "system.commonFileExt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileExt()", - "expectedUiSchemaText": "Value\nsystem.commonFileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileExt-base" - }, - { - "id": "runtime:domain-system-commonFileExt-example-1", - "sourceType": "domain", - "command": "system.commonFileExt", - "label": "system.commonFileExt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileExt()", - "expectedUiSchemaText": "Value\nsystem.commonFileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-commonFileExt-example-1" - }, - { - "id": "runtime:domain-system-commonFileName-base", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName()", - "expectedUiSchemaText": "Value\nsystem.commonFileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileName-base" - }, - { - "id": "runtime:domain-system-commonFileName-example-1", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName()", - "expectedUiSchemaText": "Value\nsystem.commonFileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["example"], - "scenarioId": "domain-system-commonFileName-example-1" - }, - { - "id": "runtime:domain-system-commonFileName-example-2", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "(extension=\"txt\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName(extension=\"txt\")", - "expectedUiSchemaText": "Value\nsystem.commonFileName(extension=\"txt\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["example"], - "scenarioId": "domain-system-commonFileName-example-2" - }, - { - "id": "runtime:domain-system-commonFileName-arg-extension", - "sourceType": "domain", - "command": "system.commonFileName", - "label": "system.commonFileName arg extension", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileName", - "params": "(extension=\"system-commonFileName-extension\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileName(extension=\"system-commonFileName-extension\")", - "expectedUiSchemaText": "Value\nsystem.commonFileName(extension=\"system-commonFileName-extension\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["extension"], - "origins": ["arg"], - "scenarioId": "domain-system-commonFileName-arg-extension" - }, - { - "id": "runtime:domain-system-commonFileType-base", - "sourceType": "domain", - "command": "system.commonFileType", - "label": "system.commonFileType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileType()", - "expectedUiSchemaText": "Value\nsystem.commonFileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-commonFileType-base" - }, - { - "id": "runtime:domain-system-commonFileType-example-1", - "sourceType": "domain", - "command": "system.commonFileType", - "label": "system.commonFileType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.commonFileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.commonFileType()", - "expectedUiSchemaText": "Value\nsystem.commonFileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-commonFileType-example-1" - }, - { - "id": "runtime:domain-system-cron-base", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron()", - "expectedUiSchemaText": "Value\nsystem.cron()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-cron-base" - }, - { - "id": "runtime:domain-system-cron-example-1", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron()", - "expectedUiSchemaText": "Value\nsystem.cron()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-1" - }, - { - "id": "runtime:domain-system-cron-example-2", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-2" - }, - { - "id": "runtime:domain-system-cron-example-3", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["example"], - "scenarioId": "domain-system-cron-example-3" - }, - { - "id": "runtime:domain-system-cron-arg-includeNonStandard", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron arg includeNonStandard", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard"], - "origins": ["arg"], - "scenarioId": "domain-system-cron-arg-includeNonStandard" - }, - { - "id": "runtime:domain-system-cron-arg-includeYear", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron arg includeYear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeYear"], - "origins": ["arg"], - "scenarioId": "domain-system-cron-arg-includeYear" - }, - { - "id": "runtime:domain-system-cron-pair-includeNonStandard-includeYear", - "sourceType": "domain", - "command": "system.cron", - "label": "system.cron pair includeNonStandard/includeYear", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.cron", - "params": "(includeNonStandard=true, includeYear=true)", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.cron(includeNonStandard=true, includeYear=true)", - "expectedUiSchemaText": "Value\nsystem.cron(includeNonStandard=true, includeYear=true)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["pair"], - "scenarioId": "domain-system-cron-pair-includeNonStandard-includeYear" - }, - { - "id": "runtime:domain-system-directoryPath-base", - "sourceType": "domain", - "command": "system.directoryPath", - "label": "system.directoryPath", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.directoryPath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.directoryPath()", - "expectedUiSchemaText": "Value\nsystem.directoryPath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-directoryPath-base" - }, - { - "id": "runtime:domain-system-directoryPath-example-1", - "sourceType": "domain", - "command": "system.directoryPath", - "label": "system.directoryPath example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.directoryPath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.directoryPath()", - "expectedUiSchemaText": "Value\nsystem.directoryPath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-directoryPath-example-1" - }, - { - "id": "runtime:domain-system-fileExt-base", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt()", - "expectedUiSchemaText": "Value\nsystem.fileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileExt-base" - }, - { - "id": "runtime:domain-system-fileExt-example-1", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt()", - "expectedUiSchemaText": "Value\nsystem.fileExt()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["example"], - "scenarioId": "domain-system-fileExt-example-1" - }, - { - "id": "runtime:domain-system-fileExt-example-2", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "(mimeType=\"image/png\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt(mimeType=\"image/png\")", - "expectedUiSchemaText": "Value\nsystem.fileExt(mimeType=\"image/png\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["example"], - "scenarioId": "domain-system-fileExt-example-2" - }, - { - "id": "runtime:domain-system-fileExt-arg-mimeType", - "sourceType": "domain", - "command": "system.fileExt", - "label": "system.fileExt arg mimeType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileExt", - "params": "(mimeType=\"system-fileExt-mimeType\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileExt(mimeType=\"system-fileExt-mimeType\")", - "expectedUiSchemaText": "Value\nsystem.fileExt(mimeType=\"system-fileExt-mimeType\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["mimeType"], - "origins": ["arg"], - "scenarioId": "domain-system-fileExt-arg-mimeType" - }, - { - "id": "runtime:domain-system-fileName-base", - "sourceType": "domain", - "command": "system.fileName", - "label": "system.fileName", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileName()", - "expectedUiSchemaText": "Value\nsystem.fileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileName-base" - }, - { - "id": "runtime:domain-system-fileName-example-1", - "sourceType": "domain", - "command": "system.fileName", - "label": "system.fileName example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileName", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileName()", - "expectedUiSchemaText": "Value\nsystem.fileName()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-fileName-example-1" - }, - { - "id": "runtime:domain-system-filePath-base", - "sourceType": "domain", - "command": "system.filePath", - "label": "system.filePath", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.filePath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.filePath()", - "expectedUiSchemaText": "Value\nsystem.filePath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-filePath-base" - }, - { - "id": "runtime:domain-system-filePath-example-1", - "sourceType": "domain", - "command": "system.filePath", - "label": "system.filePath example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.filePath", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.filePath()", - "expectedUiSchemaText": "Value\nsystem.filePath()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-filePath-example-1" - }, - { - "id": "runtime:domain-system-fileType-base", - "sourceType": "domain", - "command": "system.fileType", - "label": "system.fileType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileType()", - "expectedUiSchemaText": "Value\nsystem.fileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-fileType-base" - }, - { - "id": "runtime:domain-system-fileType-example-1", - "sourceType": "domain", - "command": "system.fileType", - "label": "system.fileType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.fileType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.fileType()", - "expectedUiSchemaText": "Value\nsystem.fileType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-fileType-example-1" - }, - { - "id": "runtime:domain-system-mimeType-base", - "sourceType": "domain", - "command": "system.mimeType", - "label": "system.mimeType", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.mimeType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.mimeType()", - "expectedUiSchemaText": "Value\nsystem.mimeType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-mimeType-base" - }, - { - "id": "runtime:domain-system-mimeType-example-1", - "sourceType": "domain", - "command": "system.mimeType", - "label": "system.mimeType example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.mimeType", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.mimeType()", - "expectedUiSchemaText": "Value\nsystem.mimeType()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-mimeType-example-1" - }, - { - "id": "runtime:domain-system-networkInterface-base", - "sourceType": "domain", - "command": "system.networkInterface", - "label": "system.networkInterface", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.networkInterface", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.networkInterface()", - "expectedUiSchemaText": "Value\nsystem.networkInterface()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-networkInterface-base" - }, - { - "id": "runtime:domain-system-networkInterface-example-1", - "sourceType": "domain", - "command": "system.networkInterface", - "label": "system.networkInterface example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.networkInterface", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.networkInterface()", - "expectedUiSchemaText": "Value\nsystem.networkInterface()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-networkInterface-example-1" - }, - { - "id": "runtime:domain-system-semver-base", - "sourceType": "domain", - "command": "system.semver", - "label": "system.semver", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.semver", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.semver()", - "expectedUiSchemaText": "Value\nsystem.semver()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-system-semver-base" - }, - { - "id": "runtime:domain-system-semver-example-1", - "sourceType": "domain", - "command": "system.semver", - "label": "system.semver example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "system.semver", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nsystem.semver()", - "expectedUiSchemaText": "Value\nsystem.semver()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-system-semver-example-1" - }, - { - "id": "runtime:domain-vehicle-bicycle-base", - "sourceType": "domain", - "command": "vehicle.bicycle", - "label": "vehicle.bicycle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.bicycle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.bicycle()", - "expectedUiSchemaText": "Value\nvehicle.bicycle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-bicycle-base" - }, - { - "id": "runtime:domain-vehicle-bicycle-example-1", - "sourceType": "domain", - "command": "vehicle.bicycle", - "label": "vehicle.bicycle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.bicycle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.bicycle()", - "expectedUiSchemaText": "Value\nvehicle.bicycle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-bicycle-example-1" - }, - { - "id": "runtime:domain-vehicle-color-base", - "sourceType": "domain", - "command": "vehicle.color", - "label": "vehicle.color", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.color()", - "expectedUiSchemaText": "Value\nvehicle.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-color-base" - }, - { - "id": "runtime:domain-vehicle-color-example-1", - "sourceType": "domain", - "command": "vehicle.color", - "label": "vehicle.color example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.color()", - "expectedUiSchemaText": "Value\nvehicle.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-color-example-1" - }, - { - "id": "runtime:domain-vehicle-fuel-base", - "sourceType": "domain", - "command": "vehicle.fuel", - "label": "vehicle.fuel", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.fuel", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.fuel()", - "expectedUiSchemaText": "Value\nvehicle.fuel()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-fuel-base" - }, - { - "id": "runtime:domain-vehicle-fuel-example-1", - "sourceType": "domain", - "command": "vehicle.fuel", - "label": "vehicle.fuel example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.fuel", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.fuel()", - "expectedUiSchemaText": "Value\nvehicle.fuel()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-fuel-example-1" - }, - { - "id": "runtime:domain-vehicle-manufacturer-base", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "label": "vehicle.manufacturer", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.manufacturer()", - "expectedUiSchemaText": "Value\nvehicle.manufacturer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-manufacturer-base" - }, - { - "id": "runtime:domain-vehicle-manufacturer-example-1", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "label": "vehicle.manufacturer example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.manufacturer", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.manufacturer()", - "expectedUiSchemaText": "Value\nvehicle.manufacturer()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-manufacturer-example-1" - }, - { - "id": "runtime:domain-vehicle-model-base", - "sourceType": "domain", - "command": "vehicle.model", - "label": "vehicle.model", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.model", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.model()", - "expectedUiSchemaText": "Value\nvehicle.model()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-model-base" - }, - { - "id": "runtime:domain-vehicle-model-example-1", - "sourceType": "domain", - "command": "vehicle.model", - "label": "vehicle.model example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.model", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.model()", - "expectedUiSchemaText": "Value\nvehicle.model()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-model-example-1" - }, - { - "id": "runtime:domain-vehicle-type-base", - "sourceType": "domain", - "command": "vehicle.type", - "label": "vehicle.type", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.type()", - "expectedUiSchemaText": "Value\nvehicle.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-type-base" - }, - { - "id": "runtime:domain-vehicle-type-example-1", - "sourceType": "domain", - "command": "vehicle.type", - "label": "vehicle.type example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.type", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.type()", - "expectedUiSchemaText": "Value\nvehicle.type()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-type-example-1" - }, - { - "id": "runtime:domain-vehicle-vehicle-base", - "sourceType": "domain", - "command": "vehicle.vehicle", - "label": "vehicle.vehicle", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vehicle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vehicle()", - "expectedUiSchemaText": "Value\nvehicle.vehicle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vehicle-base" - }, - { - "id": "runtime:domain-vehicle-vehicle-example-1", - "sourceType": "domain", - "command": "vehicle.vehicle", - "label": "vehicle.vehicle example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vehicle", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vehicle()", - "expectedUiSchemaText": "Value\nvehicle.vehicle()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vehicle-example-1" - }, - { - "id": "runtime:domain-vehicle-vin-base", - "sourceType": "domain", - "command": "vehicle.vin", - "label": "vehicle.vin", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vin()", - "expectedUiSchemaText": "Value\nvehicle.vin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vin-base" - }, - { - "id": "runtime:domain-vehicle-vin-example-1", - "sourceType": "domain", - "command": "vehicle.vin", - "label": "vehicle.vin example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vin", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vin()", - "expectedUiSchemaText": "Value\nvehicle.vin()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vin-example-1" - }, - { - "id": "runtime:domain-vehicle-vrm-base", - "sourceType": "domain", - "command": "vehicle.vrm", - "label": "vehicle.vrm", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vrm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vrm()", - "expectedUiSchemaText": "Value\nvehicle.vrm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-vehicle-vrm-base" - }, - { - "id": "runtime:domain-vehicle-vrm-example-1", - "sourceType": "domain", - "command": "vehicle.vrm", - "label": "vehicle.vrm example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "vehicle.vrm", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nvehicle.vrm()", - "expectedUiSchemaText": "Value\nvehicle.vrm()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["example"], - "scenarioId": "domain-vehicle-vrm-example-1" - }, - { - "id": "runtime:domain-word-adjective-base", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective()", - "expectedUiSchemaText": "Value\nword.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-adjective-base" - }, - { - "id": "runtime:domain-word-adjective-example-1", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective()", - "expectedUiSchemaText": "Value\nword.adjective()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-1" - }, - { - "id": "runtime:domain-word-adjective-example-2", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=5)", - "expectedUiSchemaText": "Value\nword.adjective(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-2" - }, - { - "id": "runtime:domain-word-adjective-example-3", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=5)", - "expectedUiSchemaText": "Value\nword.adjective(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-3" - }, - { - "id": "runtime:domain-word-adjective-example-4", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adjective-example-4" - }, - { - "id": "runtime:domain-word-adjective-arg-length", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=4)", - "expectedUiSchemaText": "Value\nword.adjective(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-length" - }, - { - "id": "runtime:domain-word-adjective-arg-max", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=3)", - "expectedUiSchemaText": "Value\nword.adjective(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-max" - }, - { - "id": "runtime:domain-word-adjective-arg-strategy", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-adjective-arg-strategy" - }, - { - "id": "runtime:domain-word-adjective-pair-length-max", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.adjective(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-adjective-pair-length-max" - }, - { - "id": "runtime:domain-word-adjective-pair-max-strategy", - "sourceType": "domain", - "command": "word.adjective", - "label": "word.adjective pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adjective", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adjective(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adjective(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-adjective-pair-max-strategy" - }, - { - "id": "runtime:domain-word-adverb-base", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb()", - "expectedUiSchemaText": "Value\nword.adverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-adverb-base" - }, - { - "id": "runtime:domain-word-adverb-example-1", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb()", - "expectedUiSchemaText": "Value\nword.adverb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-1" - }, - { - "id": "runtime:domain-word-adverb-example-2", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=5)", - "expectedUiSchemaText": "Value\nword.adverb(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-2" - }, - { - "id": "runtime:domain-word-adverb-example-3", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=5)", - "expectedUiSchemaText": "Value\nword.adverb(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-3" - }, - { - "id": "runtime:domain-word-adverb-example-4", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-adverb-example-4" - }, - { - "id": "runtime:domain-word-adverb-arg-length", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=4)", - "expectedUiSchemaText": "Value\nword.adverb(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-length" - }, - { - "id": "runtime:domain-word-adverb-arg-max", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=3)", - "expectedUiSchemaText": "Value\nword.adverb(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-max" - }, - { - "id": "runtime:domain-word-adverb-arg-strategy", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-adverb-arg-strategy" - }, - { - "id": "runtime:domain-word-adverb-pair-length-max", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.adverb(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-adverb-pair-length-max" - }, - { - "id": "runtime:domain-word-adverb-pair-max-strategy", - "sourceType": "domain", - "command": "word.adverb", - "label": "word.adverb pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.adverb", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.adverb(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.adverb(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-adverb-pair-max-strategy" - }, - { - "id": "runtime:domain-word-conjunction-base", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction()", - "expectedUiSchemaText": "Value\nword.conjunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-conjunction-base" - }, - { - "id": "runtime:domain-word-conjunction-example-1", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction()", - "expectedUiSchemaText": "Value\nword.conjunction()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-1" - }, - { - "id": "runtime:domain-word-conjunction-example-2", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=5)", - "expectedUiSchemaText": "Value\nword.conjunction(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-2" - }, - { - "id": "runtime:domain-word-conjunction-example-3", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=5)", - "expectedUiSchemaText": "Value\nword.conjunction(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-3" - }, - { - "id": "runtime:domain-word-conjunction-example-4", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-conjunction-example-4" - }, - { - "id": "runtime:domain-word-conjunction-arg-length", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=4)", - "expectedUiSchemaText": "Value\nword.conjunction(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-length" - }, - { - "id": "runtime:domain-word-conjunction-arg-max", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=3)", - "expectedUiSchemaText": "Value\nword.conjunction(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-max" - }, - { - "id": "runtime:domain-word-conjunction-arg-strategy", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-conjunction-arg-strategy" - }, - { - "id": "runtime:domain-word-conjunction-pair-length-max", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.conjunction(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-conjunction-pair-length-max" - }, - { - "id": "runtime:domain-word-conjunction-pair-max-strategy", - "sourceType": "domain", - "command": "word.conjunction", - "label": "word.conjunction pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.conjunction", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.conjunction(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.conjunction(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-conjunction-pair-max-strategy" - }, - { - "id": "runtime:domain-word-interjection-base", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection()", - "expectedUiSchemaText": "Value\nword.interjection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-interjection-base" - }, - { - "id": "runtime:domain-word-interjection-example-1", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection()", - "expectedUiSchemaText": "Value\nword.interjection()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-1" - }, - { - "id": "runtime:domain-word-interjection-example-2", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=5)", - "expectedUiSchemaText": "Value\nword.interjection(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-2" - }, - { - "id": "runtime:domain-word-interjection-example-3", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=5)", - "expectedUiSchemaText": "Value\nword.interjection(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-3" - }, - { - "id": "runtime:domain-word-interjection-example-4", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-interjection-example-4" - }, - { - "id": "runtime:domain-word-interjection-arg-length", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=4)", - "expectedUiSchemaText": "Value\nword.interjection(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-length" - }, - { - "id": "runtime:domain-word-interjection-arg-max", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=3)", - "expectedUiSchemaText": "Value\nword.interjection(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-max" - }, - { - "id": "runtime:domain-word-interjection-arg-strategy", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-interjection-arg-strategy" - }, - { - "id": "runtime:domain-word-interjection-pair-length-max", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.interjection(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-interjection-pair-length-max" - }, - { - "id": "runtime:domain-word-interjection-pair-max-strategy", - "sourceType": "domain", - "command": "word.interjection", - "label": "word.interjection pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.interjection", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.interjection(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.interjection(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-interjection-pair-max-strategy" - }, - { - "id": "runtime:domain-word-noun-base", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun()", - "expectedUiSchemaText": "Value\nword.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-noun-base" - }, - { - "id": "runtime:domain-word-noun-example-1", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun()", - "expectedUiSchemaText": "Value\nword.noun()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-1" - }, - { - "id": "runtime:domain-word-noun-example-2", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=5)", - "expectedUiSchemaText": "Value\nword.noun(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-2" - }, - { - "id": "runtime:domain-word-noun-example-3", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=5)", - "expectedUiSchemaText": "Value\nword.noun(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-3" - }, - { - "id": "runtime:domain-word-noun-example-4", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-noun-example-4" - }, - { - "id": "runtime:domain-word-noun-arg-length", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=4)", - "expectedUiSchemaText": "Value\nword.noun(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-length" - }, - { - "id": "runtime:domain-word-noun-arg-max", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=3)", - "expectedUiSchemaText": "Value\nword.noun(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-max" - }, - { - "id": "runtime:domain-word-noun-arg-strategy", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-noun-arg-strategy" - }, - { - "id": "runtime:domain-word-noun-pair-length-max", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.noun(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-noun-pair-length-max" - }, - { - "id": "runtime:domain-word-noun-pair-max-strategy", - "sourceType": "domain", - "command": "word.noun", - "label": "word.noun pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.noun", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.noun(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.noun(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-noun-pair-max-strategy" - }, - { - "id": "runtime:domain-word-preposition-base", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition()", - "expectedUiSchemaText": "Value\nword.preposition()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-preposition-base" - }, - { - "id": "runtime:domain-word-preposition-example-1", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition()", - "expectedUiSchemaText": "Value\nword.preposition()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-1" - }, - { - "id": "runtime:domain-word-preposition-example-2", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=5)", - "expectedUiSchemaText": "Value\nword.preposition(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-2" - }, - { - "id": "runtime:domain-word-preposition-example-3", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=5)", - "expectedUiSchemaText": "Value\nword.preposition(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-3" - }, - { - "id": "runtime:domain-word-preposition-example-4", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-preposition-example-4" - }, - { - "id": "runtime:domain-word-preposition-arg-length", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=4)", - "expectedUiSchemaText": "Value\nword.preposition(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-length" - }, - { - "id": "runtime:domain-word-preposition-arg-max", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=3)", - "expectedUiSchemaText": "Value\nword.preposition(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-max" - }, - { - "id": "runtime:domain-word-preposition-arg-strategy", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-preposition-arg-strategy" - }, - { - "id": "runtime:domain-word-preposition-pair-length-max", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.preposition(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-preposition-pair-length-max" - }, - { - "id": "runtime:domain-word-preposition-pair-max-strategy", - "sourceType": "domain", - "command": "word.preposition", - "label": "word.preposition pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.preposition", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.preposition(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.preposition(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-preposition-pair-max-strategy" - }, - { - "id": "runtime:domain-word-sample-base", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample()", - "expectedUiSchemaText": "Value\nword.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-sample-base" - }, - { - "id": "runtime:domain-word-sample-example-1", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample()", - "expectedUiSchemaText": "Value\nword.sample()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-1" - }, - { - "id": "runtime:domain-word-sample-example-2", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=5)", - "expectedUiSchemaText": "Value\nword.sample(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-2" - }, - { - "id": "runtime:domain-word-sample-example-3", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=5)", - "expectedUiSchemaText": "Value\nword.sample(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-3" - }, - { - "id": "runtime:domain-word-sample-example-4", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-sample-example-4" - }, - { - "id": "runtime:domain-word-sample-arg-length", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=4)", - "expectedUiSchemaText": "Value\nword.sample(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-length" - }, - { - "id": "runtime:domain-word-sample-arg-max", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=3)", - "expectedUiSchemaText": "Value\nword.sample(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-max" - }, - { - "id": "runtime:domain-word-sample-arg-strategy", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-sample-arg-strategy" - }, - { - "id": "runtime:domain-word-sample-pair-length-max", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.sample(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-sample-pair-length-max" - }, - { - "id": "runtime:domain-word-sample-pair-max-strategy", - "sourceType": "domain", - "command": "word.sample", - "label": "word.sample pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.sample", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.sample(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.sample(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-sample-pair-max-strategy" - }, - { - "id": "runtime:domain-word-verb-base", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb()", - "expectedUiSchemaText": "Value\nword.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-verb-base" - }, - { - "id": "runtime:domain-word-verb-example-1", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb()", - "expectedUiSchemaText": "Value\nword.verb()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-1" - }, - { - "id": "runtime:domain-word-verb-example-2", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=5)", - "expectedUiSchemaText": "Value\nword.verb(length=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-2" - }, - { - "id": "runtime:domain-word-verb-example-3", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=5)", - "expectedUiSchemaText": "Value\nword.verb(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-3" - }, - { - "id": "runtime:domain-word-verb-example-4", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb example 4", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max", "strategy"], - "origins": ["example"], - "scenarioId": "domain-word-verb-example-4" - }, - { - "id": "runtime:domain-word-verb-arg-length", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=4)", - "expectedUiSchemaText": "Value\nword.verb(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-length" - }, - { - "id": "runtime:domain-word-verb-arg-max", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=3)", - "expectedUiSchemaText": "Value\nword.verb(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-max" - }, - { - "id": "runtime:domain-word-verb-arg-strategy", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb arg strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["strategy"], - "origins": ["arg"], - "scenarioId": "domain-word-verb-arg-strategy" - }, - { - "id": "runtime:domain-word-verb-pair-length-max", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb pair length/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(length=4, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(length=4, max=3)", - "expectedUiSchemaText": "Value\nword.verb(length=4, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-verb-pair-length-max" - }, - { - "id": "runtime:domain-word-verb-pair-max-strategy", - "sourceType": "domain", - "command": "word.verb", - "label": "word.verb pair max/strategy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.verb", - "params": "(max=3, strategy=\"any-length\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.verb(max=3, strategy=\"any-length\")", - "expectedUiSchemaText": "Value\nword.verb(max=3, strategy=\"any-length\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max", "strategy"], - "origins": ["pair"], - "scenarioId": "domain-word-verb-pair-max-strategy" - }, - { - "id": "runtime:domain-word-words-base", - "sourceType": "domain", - "command": "word.words", - "label": "word.words", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words()", - "expectedUiSchemaText": "Value\nword.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-word-words-base" - }, - { - "id": "runtime:domain-word-words-example-1", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words()", - "expectedUiSchemaText": "Value\nword.words()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-1" - }, - { - "id": "runtime:domain-word-words-example-2", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 2", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=5)", - "expectedUiSchemaText": "Value\nword.words(count=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-2" - }, - { - "id": "runtime:domain-word-words-example-3", - "sourceType": "domain", - "command": "word.words", - "label": "word.words example 3", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(max=5)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(max=5)", - "expectedUiSchemaText": "Value\nword.words(max=5)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["example"], - "scenarioId": "domain-word-words-example-3" - }, - { - "id": "runtime:domain-word-words-arg-count", - "sourceType": "domain", - "command": "word.words", - "label": "word.words arg count", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=2)", - "expectedUiSchemaText": "Value\nword.words(count=2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count"], - "origins": ["arg"], - "scenarioId": "domain-word-words-arg-count" - }, - { - "id": "runtime:domain-word-words-arg-max", - "sourceType": "domain", - "command": "word.words", - "label": "word.words arg max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(max=3)", - "expectedUiSchemaText": "Value\nword.words(max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["max"], - "origins": ["arg"], - "scenarioId": "domain-word-words-arg-max" - }, - { - "id": "runtime:domain-word-words-pair-count-max", - "sourceType": "domain", - "command": "word.words", - "label": "word.words pair count/max", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "word.words", - "params": "(count=2, max=3)", - "value": "" - } - ], - "expectedSchemaText": "Value\nword.words(count=2, max=3)", - "expectedUiSchemaText": "Value\nword.words(count=2, max=3)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["count", "max"], - "origins": ["pair"], - "scenarioId": "domain-word-words-pair-count-max" - } - ], - "uiScenarios": [ - { - "id": "ui:custom-enum-base", - "sourceType": "enum", - "command": "", - "label": "enum", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-enum-base", - "parityMode": "exact" - }, - { - "id": "ui:custom-enum-pairwise", - "sourceType": "enum", - "command": "", - "label": "enum pairwise", - "rows": [ - { - "name": "Status", - "sourceType": "enum", - "command": "", - "params": "", - "value": "active,inactive,pending" - }, - { - "name": "Priority", - "sourceType": "enum", - "command": "", - "params": "", - "value": "high,medium,low" - } - ], - "expectedSchemaText": "Status\nactive,inactive,pending\nPriority\nhigh,medium,low", - "expectedUiSchemaText": "Status\nenum(active,inactive,pending)\nPriority\nenum(high,medium,low)", - "expectedFileExtension": ".csv", - "pairwiseEligible": true, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "pairwise"], - "scenarioId": "custom-enum-pairwise", - "parityMode": "exact" - }, - { - "id": "ui:custom-literal-base", - "sourceType": "literal", - "command": "", - "label": "literal", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "Pending" - } - ], - "expectedSchemaText": "Status\nliteral(Pending)", - "expectedUiSchemaText": "Status\nliteral(Pending)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-literal-base", - "parityMode": "exact" - }, - { - "id": "ui:custom-literal-empty", - "sourceType": "literal", - "command": "", - "label": "literal empty", - "rows": [ - { - "name": "Status", - "sourceType": "literal", - "command": "", - "params": "", - "value": "" - } - ], - "expectedSchemaText": "Status\nliteral(\"\")", - "expectedUiSchemaText": "Status\nliteral(\"\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom", "empty"], - "scenarioId": "custom-literal-empty", - "parityMode": "exact" - }, - { - "id": "ui:custom-regex-base", - "sourceType": "regex", - "command": "", - "label": "regex", - "rows": [ - { - "name": "Code", - "sourceType": "regex", - "command": "", - "params": "", - "value": "[A-Z]{2}[0-9]{2}" - } - ], - "expectedSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedUiSchemaText": "Code\n[A-Z]{2}[0-9]{2}", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["custom"], - "scenarioId": "custom-regex-base", - "parityMode": "structural" - }, - { - "id": "ui:faker-helpers-arrayElement-base", - "sourceType": "faker", - "command": "helpers.arrayElement", - "label": "helpers.arrayElement", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.arrayElement", - "params": "([\"A\", \"B\"])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedUiSchemaText": "Value\nhelpers.arrayElement([\"A\", \"B\"])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-arrayElement-base", - "parityMode": "exact" - }, - { - "id": "ui:faker-helpers-fake-base", - "sourceType": "faker", - "command": "helpers.fake", - "label": "helpers.fake", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fake", - "params": "(\"{{person.firstName}}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedUiSchemaText": "Value\nhelpers.fake(\"{{person.firstName}}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-fake-base", - "parityMode": "structural" - }, - { - "id": "ui:faker-helpers-fromRegExp-example-1", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "label": "helpers.fromRegExp example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.fromRegExp", - "params": "(\"[A-Z]{2}[0-9]{2}\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedUiSchemaText": "Value\nhelpers.fromRegExp(\"[A-Z]{2}[0-9]{2}\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["pattern"], - "origins": ["example"], - "scenarioId": "faker-helpers-fromRegExp-example-1", - "parityMode": "structural" - }, - { - "id": "ui:faker-helpers-mustache-base", - "sourceType": "faker", - "command": "helpers.mustache", - "label": "helpers.mustache", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.mustache", - "params": "(\"{{name}}\", { name: \"Ada\" })", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedUiSchemaText": "Value\nhelpers.mustache(\"{{name}}\", { name: \"Ada\" })", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "faker-helpers-mustache-base", - "parityMode": "exact" - }, - { - "id": "ui:faker-helpers-uniqueArray-example-1", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "label": "helpers.uniqueArray example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.uniqueArray", - "params": "([\"red\", \"green\", \"blue\"], 2)", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedUiSchemaText": "Value\nhelpers.uniqueArray([\"red\", \"green\", \"blue\"], 2)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": true, - "coveredArgs": ["source", "length"], - "origins": ["example"], - "scenarioId": "faker-helpers-uniqueArray-example-1", - "parityMode": "structural" - }, - { - "id": "ui:faker-helpers-weightedArrayElement-example-1", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "label": "helpers.weightedArrayElement example 1", - "rows": [ - { - "name": "Value", - "sourceType": "faker", - "command": "helpers.weightedArrayElement", - "params": "([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "value": "" - } - ], - "expectedSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedUiSchemaText": "Value\nhelpers.weightedArrayElement([{ weight: 5, value: \"sunny\" }, { weight: 1, value: \"rainy\" }])", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["array"], - "origins": ["example"], - "scenarioId": "faker-helpers-weightedArrayElement-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-airline-seat-example-1", - "sourceType": "domain", - "command": "airline.seat", - "label": "airline.seat example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "airline.seat", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nairline.seat()", - "expectedUiSchemaText": "Value\nairline.seat()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["aircraftType"], - "origins": ["example"], - "scenarioId": "domain-airline-seat-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-autoIncrement-sequence-example-1", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nautoIncrement.sequence()", - "expectedUiSchemaText": "Value\nautoIncrement.sequence()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"], - "scenarioId": "domain-autoIncrement-sequence-example-1", - "parityMode": "structural" - }, - { - "id": "ui:domain-commerce-price-example-1", - "sourceType": "domain", - "command": "commerce.price", - "label": "commerce.price example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "commerce.price", - "params": "(dec=2, max=10, min=1, symbol=\"$\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedUiSchemaText": "Value\ncommerce.price(dec=2, max=10, min=1, symbol=\"$\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"], - "scenarioId": "domain-commerce-price-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-date-birthdate-example-1", - "sourceType": "domain", - "command": "date.birthdate", - "label": "date.birthdate example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "date.birthdate", - "params": "(refDate=20000, max=69, min=16, mode=\"age\")", - "value": "" - } - ], - "expectedSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedUiSchemaText": "Value\ndate.birthdate(refDate=20000, max=69, min=16, mode=\"age\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"], - "scenarioId": "domain-date-birthdate-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-internet-password-example-1", - "sourceType": "domain", - "command": "internet.password", - "label": "internet.password example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.password", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.password()", - "expectedUiSchemaText": "Value\ninternet.password()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"], - "scenarioId": "domain-internet-password-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-literal-value-example-1", - "sourceType": "domain", - "command": "literal.value", - "label": "literal.value example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "literal.value", - "params": "(value=\"Pending\")", - "value": "" - } - ], - "expectedSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedUiSchemaText": "Value\nliteral.value(value=\"Pending\")", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["value"], - "origins": ["example"], - "scenarioId": "domain-literal-value-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-string-counterString-example-1", - "sourceType": "domain", - "command": "string.counterString", - "label": "string.counterString example 1", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.counterString", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.counterString()", - "expectedUiSchemaText": "Value\nstring.counterString()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"], - "scenarioId": "domain-string-counterString-example-1", - "parityMode": "exact" - }, - { - "id": "ui:domain-string-fromCharacters-base", - "sourceType": "domain", - "command": "string.fromCharacters", - "label": "string.fromCharacters", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "string.fromCharacters", - "params": "(\"ABC123\", 4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedUiSchemaText": "Value\nstring.fromCharacters(\"ABC123\", 4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"], - "scenarioId": "domain-string-fromCharacters-base", - "parityMode": "exact" - } - ] -} diff --git a/packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json b/packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json deleted file mode 100644 index 0f8f31b3..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "ui:custom-enum-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:custom-enum-pairwise": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:custom-literal-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:custom-literal-empty": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:custom-regex-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "ui:faker-helpers-arrayElement-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:faker-helpers-fake-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "ui:faker-helpers-fromRegExp-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "ui:faker-helpers-mustache-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:faker-helpers-uniqueArray-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "ui:faker-helpers-weightedArrayElement-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-airline-seat-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-commerce-price-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-date-birthdate-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-internet-password-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-literal-value-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-string-counterString-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "ui:domain-string-fromCharacters-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - } -} diff --git a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js index c21885ae..de2e5b2e 100644 --- a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js @@ -16,16 +16,12 @@ */ import { jest } from '@jest/globals'; -import { readFileSync } from 'node:fs'; -import { join } from 'node:path'; import { createGeneratorInteractionHarness } from './support/generator-interaction-harness.js'; +import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; -const fixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); +const scenarioSource = 'buildUiInteractionScenarios()'; const SMOKE_SCENARIO_IDS = [ 'custom-literal-base', 'custom-regex-base', @@ -33,7 +29,7 @@ const SMOKE_SCENARIO_IDS = [ 'domain-commerce-price-example-1', 'custom-enum-pairwise', ]; -const allScenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; +const allScenarios = buildUiInteractionScenarios(); const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => findScenarioByLogicalId(allScenarios, scenarioId)).filter( Boolean ); @@ -49,7 +45,7 @@ describe('generator schema interaction matrix', () => { beforeAll(() => { jest.spyOn(console, 'warn').mockImplementation(() => {}); harness = createGeneratorInteractionHarness(); - console.info(`[generator-matrix] fixture=${fixturePath}`); + console.info(`[generator-matrix] source=${scenarioSource}`); console.info(`[generator-matrix] scenarios=${scenarios.length} chunks=${chunkDescriptors.length}`); console.info(`[generator-matrix] commands\n${formatCommandsForConsole(scenarios)}`); }); diff --git a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-matrix-report.test.js b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-matrix-report.test.js deleted file mode 100644 index 84e03206..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-matrix-report.test.js +++ /dev/null @@ -1,73 +0,0 @@ -import { describe, test, expect } from '@jest/globals'; -import { - buildChunkDescriptors, - formatCommandsForConsole, - getScenarioDisplayOrigin, - renderMatrixSummaryMarkdown, -} from './support/schema-interaction-matrix-report.js'; - -describe('schema interaction matrix report', () => { - test('buildChunkDescriptors includes scenario ids in labels', () => { - const chunks = buildChunkDescriptors([{ id: 'a' }, { id: 'b' }, { id: 'c' }], 2); - - expect(chunks).toHaveLength(2); - expect(chunks[0].label).toContain('a .. b'); - expect(chunks[1].label).toContain('c .. c'); - }); - - test('formatCommandsForConsole groups commands by source type', () => { - const text = formatCommandsForConsole([ - { sourceType: 'faker', command: 'helpers.fake' }, - { sourceType: 'domain', command: 'string.counterString' }, - { sourceType: 'faker', command: 'helpers.mustache' }, - ]); - - expect(text).toContain('domain(1): string.counterString'); - expect(text).toContain('faker(2): helpers.fake, helpers.mustache'); - }); - - test('getScenarioDisplayOrigin prefers the specific non-custom origin when multiple tags exist', () => { - expect(getScenarioDisplayOrigin({ origins: ['custom', 'empty'] })).toBe('empty'); - expect(getScenarioDisplayOrigin({ origins: ['custom', 'pairwise'] })).toBe('pairwise'); - expect(getScenarioDisplayOrigin({ origins: ['custom'] })).toBe('custom'); - expect(getScenarioDisplayOrigin({ origins: ['base'] })).toBe('base'); - }); - - test('renderMatrixSummaryMarkdown includes ui parity counts and structural-only list', () => { - const scenario = { - id: 'faker-helpers-fake-base', - sourceType: 'faker', - command: 'helpers.fake', - label: 'helpers.fake', - rows: [{ name: 'Value', sourceType: 'faker', command: 'helpers.fake', params: '("{{person.firstName}}")' }], - origins: ['base'], - parityMode: 'structural', - }; - - const markdown = renderMatrixSummaryMarkdown({ - generatedAt: '2026-05-21T00:00:00.000Z', - coverageScenarios: [scenario], - runtimeScenarios: [scenario], - uiScenarios: [scenario], - previewDataByScenarioId: { - [scenario.id]: { - status: 'generated', - csv: '"Value"\n"Ada"', - }, - }, - uiParityByScenarioId: { - [scenario.id]: { - mode: 'structural', - exactPreviewParity: false, - structuralParity: true, - }, - }, - }); - - expect(markdown).toContain('Exact preview parity scenario count: **0**'); - expect(markdown).toContain('Structural-only preview parity scenario count: **1**'); - expect(markdown).toContain('### Structural-Only UI Scenarios'); - expect(markdown).toContain('- `faker-helpers-fake-base` - `helpers.fake("{{person.firstName}}")`'); - expect(markdown).toContain('- UI preview parity: `structural`'); - }); -}); diff --git a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js index 5cb68530..bef86dea 100644 --- a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js @@ -13,8 +13,6 @@ */ import { jest } from '@jest/globals'; -import { readFileSync } from 'node:fs'; -import { join } from 'node:path'; import { faker } from '@faker-js/faker'; import RandExp from 'randexp'; import { TestDataGenerator } from '@anywaydata/core/data_generation/testDataGenerator.js'; @@ -26,7 +24,10 @@ import { dataRulesToSchemaText, schemaRowsToDataRules, } from '@anywaydata/core/data_generation/schema-rules-adapter.js'; -import { buildExpectedSchemaText } from './support/schema-interaction-scenario-builder.js'; +import { + buildExpectedSchemaText, + buildRuntimeInteractionScenarios, +} from './support/schema-interaction-scenario-builder.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; import { assertScenarioDataQuality } from '../support/generated-value-quality.js'; import { @@ -51,18 +52,15 @@ import { SOURCE_TYPE_REGEX, } from '../../../../js/gui_components/shared/schema-row-rule-mapper.js'; -const fixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); -const scenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).runtimeScenarios; +const scenarioSource = 'buildRuntimeInteractionScenarios()'; +const scenarios = buildRuntimeInteractionScenarios(); const CHUNK_SIZE = 100; const chunkDescriptors = buildChunkDescriptors(scenarios, CHUNK_SIZE); describe('schema interaction scenario runtime matrix', () => { beforeAll(() => { jest.spyOn(console, 'warn').mockImplementation(() => {}); - console.info(`[runtime-matrix] fixture=${fixturePath}`); + console.info(`[runtime-matrix] source=${scenarioSource}`); console.info(`[runtime-matrix] scenarios=${scenarios.length} chunks=${chunkDescriptors.length}`); console.info(`[runtime-matrix] commands\n${formatCommandsForConsole(scenarios)}`); }); diff --git a/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js index 31470c97..b6de5db7 100644 --- a/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js +++ b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js @@ -1,33 +1,11 @@ -function countBy(items, selectKey) { - const counts = new Map(); - (Array.isArray(items) ? items : []).forEach((item) => { - const key = selectKey(item); - counts.set(key, (counts.get(key) || 0) + 1); - }); - return [...counts.entries()].sort((left, right) => String(left[0]).localeCompare(String(right[0]))); -} - function uniqueSorted(values) { return [ ...new Set((Array.isArray(values) ? values : []).map((value) => String(value || '').trim()).filter(Boolean)), ].sort((left, right) => left.localeCompare(right)); } -function getScenarioDisplayOrigin(scenario) { - const origins = (Array.isArray(scenario?.origins) ? scenario.origins : []).map((origin) => - String(origin || '').trim() - ); - const filtered = origins.filter(Boolean); - if (filtered.length === 0) { - return 'unknown'; - } - - const nonCustomOrigins = filtered.filter((origin) => origin !== 'custom'); - if (nonCustomOrigins.length > 0) { - return nonCustomOrigins[nonCustomOrigins.length - 1]; - } - - return filtered[0]; +function getScenarioDisplayId(scenario) { + return String(scenario?.scenarioId || scenario?.id || '').trim() || 'n/a'; } function buildCommandsBySourceType(scenarios) { @@ -52,82 +30,6 @@ function buildCommandsBySourceType(scenarios) { })); } -function formatScenarioRowInvocation(row) { - const sourceType = String(row?.sourceType || '').trim(); - const command = String(row?.command || '').trim(); - const params = String(row?.params || '').trim(); - const value = String(row?.value ?? ''); - - if (sourceType === 'faker' || sourceType === 'domain') { - return `${command}${params || '()'}`; - } - - if (sourceType === 'enum') { - return `enum(${value})`; - } - - if (sourceType === 'literal') { - return `literal(${JSON.stringify(value)})`; - } - - if (sourceType === 'regex') { - return `regex(${JSON.stringify(value)})`; - } - - return `${sourceType}(${value})`; -} - -function formatScenarioRowSummary(row) { - const name = String(row?.name || '').trim() || 'Value'; - return `${name}: ${formatScenarioRowInvocation(row)}`; -} - -function getScenarioDisplayId(scenario) { - return String(scenario?.scenarioId || scenario?.id || '').trim() || 'n/a'; -} - -function formatScenarioCommandLabel(scenario) { - const rows = Array.isArray(scenario?.rows) ? scenario.rows : []; - if (rows.length === 1) { - return formatScenarioRowInvocation(rows[0]); - } - return rows.map((row) => formatScenarioRowSummary(row)).join(' | '); -} - -function renderScenarioPreviewData(previewDataByScenarioId, scenario) { - const previewEntry = previewDataByScenarioId?.[scenario.id]; - if (!previewEntry) { - return '- Preview data: not generated for this review-only scenario'; - } - - if (previewEntry.status === 'review-only') { - return '- Preview data: not generated for this review-only scenario'; - } - - if (previewEntry.status === 'non-executable') { - return '- Preview data: not generated for this non-executable scenario'; - } - - if (previewEntry.error) { - return `- Preview data: generation failed - \`${previewEntry.error}\``; - } - - const sections = ['- Preview data:', '```csv', String(previewEntry.csv || '').trimEnd(), '```']; - if (String(previewEntry.pairwiseCsv || '').trim()) { - sections.push('- Pairwise preview data:', '```csv', String(previewEntry.pairwiseCsv || '').trimEnd(), '```'); - } - return sections.join('\n'); -} - -function renderParityModeLine(scenario, uiParityByScenarioId = {}) { - const parityInfo = uiParityByScenarioId?.[scenario.id]; - const mode = String(scenario?.parityMode || parityInfo?.mode || '').trim(); - if (!mode) { - return ''; - } - return `- UI preview parity: \`${mode}\``; -} - function buildChunkDescriptors(items, chunkSize) { const descriptors = []; for (let index = 0; index < items.length; index += chunkSize) { @@ -143,145 +45,10 @@ function buildChunkDescriptors(items, chunkSize) { return descriptors; } -function buildSubsetSummary(name, scenarios) { - return { - name, - count: scenarios.length, - bySourceType: countBy(scenarios, (scenario) => scenario.sourceType), - byOrigin: countBy(scenarios, (scenario) => getScenarioDisplayOrigin(scenario)), - commandsBySourceType: buildCommandsBySourceType(scenarios), - }; -} - -function renderCountsMarkdown(title, counts) { - if (!counts.length) { - return `### ${title}\n\nNone\n`; - } - - return [ - `### ${title}`, - '', - '| Key | Count |', - '| --- | ---: |', - ...counts.map(([key, count]) => `| \`${key}\` | ${count} |`), - '', - ].join('\n'); -} - -function renderSubsetMarkdown(name, scenarios, previewDataByScenarioId = {}, uiParityByScenarioId = {}) { - const summary = buildSubsetSummary(name, scenarios); - const generatedPreviewCount = scenarios.filter( - (scenario) => previewDataByScenarioId?.[scenario.id]?.status === 'generated' - ).length; - const nonExecutableScenarioCount = scenarios.filter( - (scenario) => previewDataByScenarioId?.[scenario.id]?.status === 'non-executable' - ).length; - const reviewOnlyScenarioCount = scenarios.filter( - (scenario) => previewDataByScenarioId?.[scenario.id]?.status === 'review-only' - ).length; - const exactParityCount = scenarios.filter( - (scenario) => String(scenario?.parityMode || uiParityByScenarioId?.[scenario.id]?.mode || '') === 'exact' - ).length; - const structuralParityCount = scenarios.filter( - (scenario) => String(scenario?.parityMode || uiParityByScenarioId?.[scenario.id]?.mode || '') === 'structural' - ).length; - const structuralOnlyScenarios = scenarios.filter( - (scenario) => String(scenario?.parityMode || uiParityByScenarioId?.[scenario.id]?.mode || '') === 'structural' - ); - - return [ - `## ${name}`, - '', - `Scenario count: **${summary.count}**`, - `Generated preview data count: **${generatedPreviewCount}**`, - `Review-only scenario count: **${reviewOnlyScenarioCount}**`, - `Non-executable scenario count: **${nonExecutableScenarioCount}**`, - ...(name === 'UI Scenarios' - ? [ - `Exact preview parity scenario count: **${exactParityCount}**`, - `Structural-only preview parity scenario count: **${structuralParityCount}**`, - ] - : []), - '', - renderCountsMarkdown('By Source Type', summary.bySourceType), - renderCountsMarkdown('By Origin', summary.byOrigin), - ...(name === 'UI Scenarios' - ? [ - '### UI Parity Modes', - '', - '| Mode | Count |', - '| --- | ---: |', - `| \`exact\` | ${exactParityCount} |`, - `| \`structural\` | ${structuralParityCount} |`, - '', - '### Structural-Only UI Scenarios', - '', - ...(structuralOnlyScenarios.length - ? structuralOnlyScenarios.map( - (scenario) => `- \`${getScenarioDisplayId(scenario)}\` - \`${formatScenarioCommandLabel(scenario)}\`` - ) - : ['None']), - '', - ] - : []), - '### Commands By Source Type', - '', - ...summary.commandsBySourceType.flatMap(({ sourceType, commands }) => [ - `#### \`${sourceType}\` (${commands.length})`, - '', - ...commands.map((command) => `- \`${command}\``), - '', - ]), - '### Scenario Details', - '', - ...(scenarios.length - ? [ - ...scenarios.flatMap((scenario) => [ - `#### \`${getScenarioDisplayId(scenario)}\``, - '', - `- Command(s): \`${formatScenarioCommandLabel(scenario)}\``, - ...[renderParityModeLine(scenario, uiParityByScenarioId)].filter(Boolean), - ...(scenario.rows.length > 1 - ? [`- Schema Rows: ${scenario.rows.map((row) => `\`${formatScenarioRowSummary(row)}\``).join(', ')}`] - : []), - renderScenarioPreviewData(previewDataByScenarioId, scenario), - '', - ]), - ] - : ['None']), - '', - ].join('\n'); -} - function formatCommandsForConsole(scenarios) { return buildCommandsBySourceType(scenarios) .map(({ sourceType, commands }) => `${sourceType}(${commands.length}): ${commands.join(', ')}`) .join('\n'); } -function renderMatrixSummaryMarkdown({ - generatedAt, - coverageScenarios, - runtimeScenarios, - uiScenarios, - previewDataByScenarioId = {}, - uiParityByScenarioId = {}, -}) { - return [ - '# Schema Interaction Matrix Summary', - '', - `Generated: \`${generatedAt}\``, - '', - 'This file describes what the interaction matrix covers.', - '', - '- `coverageScenarios`: full review catalog generated from definitions', - '- `runtimeScenarios`: executable real-core runtime subset', - '- `uiScenarios`: executable JSDOM UI subset', - '', - renderSubsetMarkdown('Coverage Scenarios', coverageScenarios, previewDataByScenarioId, uiParityByScenarioId), - renderSubsetMarkdown('Runtime Scenarios', runtimeScenarios, previewDataByScenarioId, uiParityByScenarioId), - renderSubsetMarkdown('UI Scenarios', uiScenarios, previewDataByScenarioId, uiParityByScenarioId), - ].join('\n'); -} - -export { buildChunkDescriptors, renderMatrixSummaryMarkdown, formatCommandsForConsole, getScenarioDisplayOrigin }; +export { buildChunkDescriptors, formatCommandsForConsole }; diff --git a/packages/core-ui/src/tests/interaction/matrix/support/ui-scenario-parity.js b/packages/core-ui/src/tests/interaction/matrix/support/ui-scenario-parity.js deleted file mode 100644 index 2e4a164e..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/support/ui-scenario-parity.js +++ /dev/null @@ -1,137 +0,0 @@ -import { createAppTestDataInteractionHarness } from './app-test-data-interaction-harness.js'; -import { createGeneratorInteractionHarness } from './generator-interaction-harness.js'; - -function normaliseMultilineText(value) { - return String(value || '') - .replace(/\r\n/g, '\n') - .trim(); -} - -function createMiniExpect() { - function assert(condition, message) { - if (!condition) { - throw new Error(message); - } - } - - function buildMatchers(received, isNegated = false) { - function check(condition, message) { - assert(isNegated ? !condition : condition, message); - } - - return { - get not() { - return buildMatchers(received, !isNegated); - }, - toBe(expected) { - check( - Object.is(received, expected), - `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to be ${JSON.stringify(expected)}` - ); - }, - toEqual(expected) { - check( - JSON.stringify(received) === JSON.stringify(expected), - `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to equal ${JSON.stringify(expected)}` - ); - }, - toBeTruthy() { - check(Boolean(received), `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to be truthy`); - }, - toBeGreaterThan(expected) { - check( - Number(received) > Number(expected), - `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to be greater than ${JSON.stringify(expected)}` - ); - }, - toMatch(expected) { - const regex = expected instanceof RegExp ? expected : new RegExp(String(expected)); - check( - regex.test(String(received)), - `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to match ${String(regex)}` - ); - }, - toContain(expected) { - check( - String(received).includes(String(expected)), - `Expected ${JSON.stringify(received)} ${isNegated ? 'not ' : ''}to contain ${JSON.stringify(expected)}` - ); - }, - }; - } - - return function expectLike(received) { - return buildMatchers(received); - }; -} - -function hasStructuralParity({ appResult, generatorResult }) { - if (JSON.stringify(appResult.headers) !== JSON.stringify(generatorResult.headers)) { - return false; - } - - if (appResult.rowCount !== generatorResult.rowCount) { - return false; - } - - const appPairwiseCsv = normaliseMultilineText(appResult.pairwiseCsv); - const generatorPairwiseCsv = normaliseMultilineText(generatorResult.pairwiseCsv); - return appPairwiseCsv === generatorPairwiseCsv; -} - -function hasExactPreviewParity({ appResult, generatorResult }) { - return normaliseMultilineText(appResult.previewCsv) === normaliseMultilineText(generatorResult.previewCsv); -} - -async function probeUiScenarioParity(scenarios) { - const previousExpect = global.expect; - const previousWarn = console.warn; - global.expect = createMiniExpect(); - console.warn = () => {}; - - const parityByScenarioId = {}; - - try { - for (const scenario of Array.isArray(scenarios) ? scenarios : []) { - let appHarness = null; - let generatorHarness = null; - try { - appHarness = createAppTestDataInteractionHarness(); - const appResult = await appHarness.runScenario(scenario); - appHarness.cleanup(); - appHarness = null; - - generatorHarness = createGeneratorInteractionHarness(); - const generatorResult = await generatorHarness.runScenario(scenario); - generatorHarness.cleanup(); - generatorHarness = null; - - const structuralParity = hasStructuralParity({ appResult, generatorResult }); - const exactPreviewParity = structuralParity && hasExactPreviewParity({ appResult, generatorResult }); - - parityByScenarioId[scenario.id] = { - mode: exactPreviewParity ? 'exact' : 'structural', - exactPreviewParity, - structuralParity, - }; - } catch (error) { - parityByScenarioId[scenario.id] = { - mode: 'failed', - exactPreviewParity: false, - structuralParity: false, - error: error?.message || String(error), - }; - } finally { - appHarness?.cleanup(); - generatorHarness?.cleanup(); - } - } - } finally { - global.expect = previousExpect; - console.warn = previousWarn; - } - - return parityByScenarioId; -} - -export { normaliseMultilineText, probeUiScenarioParity }; diff --git a/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-fixture.test.js b/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-fixture.test.js deleted file mode 100644 index 4a5aec48..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-fixture.test.js +++ /dev/null @@ -1,31 +0,0 @@ -import { test, expect, jest } from '@jest/globals'; -import { readFileSync, writeFileSync } from 'node:fs'; -import { join } from 'node:path'; -import { probeUiScenarioParity } from './support/ui-scenario-parity.js'; - -const matrixFixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); -const parityFixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json' -); - -const parityFixtureTest = process.env.WRITE_UI_SCENARIO_PARITY === '1' ? test : test.skip; - -parityFixtureTest( - 'probes ui scenario parity and writes the parity fixture', - async () => { - jest.spyOn(console, 'warn').mockImplementation(() => {}); - const scenarios = JSON.parse(readFileSync(matrixFixturePath, 'utf8')).uiScenarios; - const parityByScenarioId = await probeUiScenarioParity(scenarios); - writeFileSync(parityFixturePath, JSON.stringify(parityByScenarioId, null, 2)); - - expect(Object.keys(parityByScenarioId)).toHaveLength(scenarios.length); - expect(Object.values(parityByScenarioId).every((entry) => ['exact', 'structural'].includes(entry.mode))).toBe(true); - - console.warn.mockRestore(); - }, - 180000 -); diff --git a/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-support.test.js b/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-support.test.js deleted file mode 100644 index 36772914..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/ui-scenario-parity-support.test.js +++ /dev/null @@ -1,59 +0,0 @@ -import { describe, test, expect } from '@jest/globals'; -import { readFileSync } from 'node:fs'; -import { join } from 'node:path'; -import { normaliseMultilineText, probeUiScenarioParity } from './support/ui-scenario-parity.js'; -import { findScenarioByLogicalId, getScenarioLogicalId } from './support/scenario-fixture-identity.js'; - -const fixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); -const matrixFixture = JSON.parse(readFileSync(fixturePath, 'utf8')); -const uiScenarios = matrixFixture.uiScenarios; - -describe('ui scenario parity support', () => { - test('fixture scenario ids are unique across coverage, runtime, and ui subsets', () => { - const allScenarios = [ - ...(matrixFixture.coverageScenarios || []), - ...(matrixFixture.runtimeScenarios || []), - ...(matrixFixture.uiScenarios || []), - ]; - const ids = allScenarios.map((scenario) => scenario.id); - expect(new Set(ids).size).toBe(ids.length); - }); - - test('normaliseMultilineText trims and normalises CRLF', () => { - expect(normaliseMultilineText('a\r\nb\r\n')).toBe('a\nb'); - }); - - test('probeUiScenarioParity classifies representative exact and structural scenarios', async () => { - const literalScenario = findScenarioByLogicalId(uiScenarios, 'custom-literal-base'); - const regexScenario = findScenarioByLogicalId(uiScenarios, 'custom-regex-base'); - const mustacheScenario = findScenarioByLogicalId(uiScenarios, 'faker-helpers-mustache-base'); - expect(literalScenario).toBeDefined(); - expect(regexScenario).toBeDefined(); - expect(mustacheScenario).toBeDefined(); - const parityByScenarioId = await probeUiScenarioParity( - [literalScenario, regexScenario, mustacheScenario].filter(Boolean) - ); - - expect(parityByScenarioId[literalScenario.id]).toEqual({ - mode: 'exact', - exactPreviewParity: true, - structuralParity: true, - }); - expect(getScenarioLogicalId(literalScenario)).toBe('custom-literal-base'); - expect(parityByScenarioId[regexScenario.id].structuralParity).toBe(true); - expect(['exact', 'structural']).toContain(parityByScenarioId[regexScenario.id].mode); - expect(parityByScenarioId[regexScenario.id].mode).toBe( - parityByScenarioId[regexScenario.id].exactPreviewParity ? 'exact' : 'structural' - ); - expect(getScenarioLogicalId(regexScenario)).toBe('custom-regex-base'); - expect(parityByScenarioId[mustacheScenario.id]).toEqual({ - mode: 'exact', - exactPreviewParity: true, - structuralParity: true, - }); - expect(getScenarioLogicalId(mustacheScenario)).toBe('faker-helpers-mustache-base'); - }, 120000); -}); diff --git a/packages/core-ui/src/tests/interaction/matrix/ui-schema-interaction-parity.test.js b/packages/core-ui/src/tests/interaction/matrix/ui-schema-interaction-parity.test.js deleted file mode 100644 index 8ce0d52c..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/ui-schema-interaction-parity.test.js +++ /dev/null @@ -1,105 +0,0 @@ -/* - * Purpose: - * - Detects drift between the embedded app test-data UI and the standalone generator UI. - * - * Triage status: - * - This broad parity sweep is a known matrix-rationalization shrink candidate. - * - Keep it opt-in during the active component refactor so unrelated frontend work is not blocked by - * a high-cost duplicated parity run. See docs/frontend-ui-matrix-rationalization-plan.md. - * - * Asserts: - * - the same uiScenario produces the same semantic preview CSV in both UIs - * - pairwise-eligible scenarios produce the same pairwise CSV in both UIs - * - parity is checked on normalized generated content rather than widget-specific DOM markup - */ - -import { jest } from '@jest/globals'; -import { readFileSync } from 'node:fs'; -import { join } from 'node:path'; -import { createAppTestDataInteractionHarness } from './support/app-test-data-interaction-harness.js'; -import { createGeneratorInteractionHarness } from './support/generator-interaction-harness.js'; -import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; -import { normaliseMultilineText } from './support/ui-scenario-parity.js'; - -const fixturePath = join( - process.cwd(), - 'packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json' -); -const scenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; -const CHUNK_SIZE = 20; -const chunkDescriptors = buildChunkDescriptors(scenarios, CHUNK_SIZE); -const maybeDescribe = process.env.RUN_UI_PARITY_MATRIX === 'true' ? describe : describe.skip; - -function assertScenarioParity({ scenario, appResult, generatorResult }) { - expect(appResult.headers).toEqual(generatorResult.headers); - expect(appResult.rowCount).toBe(generatorResult.rowCount); - - if (scenario.parityMode === 'exact') { - const appPreviewCsv = normaliseMultilineText(appResult.previewCsv); - const generatorPreviewCsv = normaliseMultilineText(generatorResult.previewCsv); - expect(appPreviewCsv).toBe(generatorPreviewCsv); - } - - if (scenario.pairwiseEligible) { - const appPairwiseCsv = normaliseMultilineText(appResult.pairwiseCsv); - const generatorPairwiseCsv = normaliseMultilineText(generatorResult.pairwiseCsv); - expect(appPairwiseCsv).toBe(generatorPairwiseCsv); - } -} - -maybeDescribe('ui schema interaction parity matrix', () => { - beforeAll(() => { - jest.spyOn(console, 'warn').mockImplementation(() => {}); - const exactScenarios = scenarios.filter((scenario) => scenario.parityMode === 'exact'); - const structuralScenarios = scenarios.filter((scenario) => scenario.parityMode === 'structural'); - console.info(`[ui-parity-matrix] fixture=${fixturePath}`); - console.info(`[ui-parity-matrix] scenarios=${scenarios.length} chunks=${chunkDescriptors.length}`); - console.info(`[ui-parity-matrix] exact=${exactScenarios.length} structural=${structuralScenarios.length}`); - console.info(`[ui-parity-matrix] commands\n${formatCommandsForConsole(scenarios)}`); - console.info( - `[ui-parity-matrix] structural-only\n${ - structuralScenarios - .map((scenario) => `${scenario.id}: ${scenario.rows.map((row) => row.command || row.sourceType).join(' | ')}`) - .join('\n') || 'none' - }` - ); - }); - - afterAll(() => { - console.warn.mockRestore(); - }); - - test.each(chunkDescriptors.map((descriptor) => [descriptor.label, descriptor.scenarios]))( - '%s', - async (_chunkLabel, scenarioChunk) => { - const failures = []; - for (const scenario of scenarioChunk) { - let appHarness = null; - let generatorHarness = null; - try { - appHarness = createAppTestDataInteractionHarness(); - const appResult = await appHarness.runScenario(scenario); - appHarness.cleanup(); - appHarness = null; - - generatorHarness = createGeneratorInteractionHarness(); - const generatorResult = await generatorHarness.runScenario(scenario); - generatorHarness.cleanup(); - generatorHarness = null; - - assertScenarioParity({ scenario, appResult, generatorResult }); - } catch (error) { - failures.push(`${scenario.id}: ${error.message}`); - } finally { - appHarness?.cleanup(); - generatorHarness?.cleanup(); - } - } - - if (failures.length > 0) { - throw new Error(failures.slice(0, 10).join('\n')); - } - }, - 60000 - ); -}); diff --git a/packages/core-ui/src/tests/shared/generation-controller.test.js b/packages/core-ui/src/tests/shared/generation-controller.test.js index 7e4b192f..467929bc 100644 --- a/packages/core-ui/src/tests/shared/generation-controller.test.js +++ b/packages/core-ui/src/tests/shared/generation-controller.test.js @@ -148,7 +148,7 @@ describe('generation-controller', () => { expect(result.errors).toEqual([]); }); - test('treats domain datatype.enum row as enum rule type', () => { + test('normalizes datatype.enum rows to canonical domain rules for generation', () => { class FakeGenerator { constructor() { this.importSpec = jest.fn(); @@ -188,7 +188,10 @@ describe('generation-controller', () => { }); expect(result.errors).toEqual([]); - expect(result.generator.testDataRules()[0]).toEqual({ type: 'enum', ruleSpec: 'enum(active,inactive)' }); + expect(result.generator.testDataRules()[0]).toEqual({ + type: 'domain', + ruleSpec: 'datatype.enum("active", "inactive")', + }); }); test('creates preview and pairwise tables through shared adapters', () => { diff --git a/packages/core-ui/src/tests/shared/schema-runtime.test.js b/packages/core-ui/src/tests/shared/schema-runtime.test.js index 488f723b..29cacc4b 100644 --- a/packages/core-ui/src/tests/shared/schema-runtime.test.js +++ b/packages/core-ui/src/tests/shared/schema-runtime.test.js @@ -15,7 +15,13 @@ describe('schema-runtime', () => { expect(result).toEqual({ dataRules: [], errors: [] }); }); - test('countEnumRules counts enum type rows', () => { - expect(countEnumRules([{ type: 'enum' }, { type: 'regex' }, { type: 'enum' }])).toBe(2); + test('countEnumRules counts enum and canonical datatype.enum domain rows', () => { + expect( + countEnumRules([ + { type: 'enum' }, + { type: 'regex' }, + { type: 'domain', ruleSpec: 'datatype.enum("active", "inactive")' }, + ]) + ).toBe(2); }); }); diff --git a/packages/core/js/command-help/command-help-validators.js b/packages/core/js/command-help/command-help-validators.js index a991d899..e8756d03 100644 --- a/packages/core/js/command-help/command-help-validators.js +++ b/packages/core/js/command-help/command-help-validators.js @@ -863,6 +863,7 @@ function extractEnumValuesFromContext(context = {}) { return explicitEnumValues.map((entry) => String(entry)); } + const contextArgs = getContextArgs(context); const candidates = [getContextRuleSpec(context)]; const sourceType = String(fieldDefinition?.sourceType ?? '') .trim() @@ -877,6 +878,16 @@ function extractEnumValuesFromContext(context = {}) { candidates.push(`enum(${value.replace(/^\(|\)$/g, '').trim()})`); candidates.push(value); } + if (command === 'datatype.enum' && contextArgs.length > 0) { + if (contextArgs.length === 1 && typeof contextArgs[0] === 'string') { + try { + return EnumParser.extractEnumValues(`enum(${contextArgs[0]})`).map((entry) => String(entry)); + } catch { + return [String(contextArgs[0])]; + } + } + return contextArgs.map((entry) => String(entry)); + } if (command === 'datatype.enum' && params.length > 0) { candidates.push(`datatype.enum(${params.replace(/^\(|\)$/g, '').trim()})`); candidates.push(params); diff --git a/packages/core/js/data_generation/n-wise/pairwiseTestDataGenerator.js b/packages/core/js/data_generation/n-wise/pairwiseTestDataGenerator.js index d78cf7d7..41eadc04 100644 --- a/packages/core/js/data_generation/n-wise/pairwiseTestDataGenerator.js +++ b/packages/core/js/data_generation/n-wise/pairwiseTestDataGenerator.js @@ -379,6 +379,9 @@ export class PairwiseTestDataGenerator { * Support both TestDataRule instances (isType function) and canonical plain rule objects. */ isRuleType(rule, typeName) { + if (String(typeName).trim().toLowerCase() === 'enum' && EnumParser.isEnumLikeRule(rule)) { + return true; + } if (rule && typeof rule.isType === 'function') { return rule.isType(typeName); } diff --git a/packages/core/js/data_generation/rulesBasedDataGenerator.js b/packages/core/js/data_generation/rulesBasedDataGenerator.js index 9b50931d..71d29129 100644 --- a/packages/core/js/data_generation/rulesBasedDataGenerator.js +++ b/packages/core/js/data_generation/rulesBasedDataGenerator.js @@ -1,10 +1,10 @@ import { FakerTestDataGenerator } from './faker/fakerTestDataGenerator.js'; import { RegexTestDataGenerator } from './regex/regexTestDataGenerator.js'; import { LiteralTestDataGenerator } from './literal/literalTestDataGenerator.js'; -import { EnumTestDataGenerator } from './enum/enumTestDataGenerator.js'; import { DomainTestDataGenerator } from './domain/domainTestDataGenerator.js'; import { dataResponse } from './ruleResponse.js'; import { evaluateConstraint } from './schema-constraint-evaluator.js'; +import { EnumParser } from './utils/enumParser.js'; export class RulesBasedDataGenerator { constructor(aFaker, RandExp, options = {}) { @@ -15,7 +15,6 @@ export class RulesBasedDataGenerator { this.fakerGenerator = new FakerTestDataGenerator(aFaker, options); this.regexGenerator = new RegexTestDataGenerator(RandExp); this.literalGenerator = new LiteralTestDataGenerator(); - this.enumGenerator = new EnumTestDataGenerator(); this.domainGenerator = new DomainTestDataGenerator(aFaker); this.defaultGenerator = new DefaultTestDataGenerator(); } @@ -63,8 +62,6 @@ export class RulesBasedDataGenerator { break; case 'enum': - generator = this.enumGenerator; - break; case 'domain': generator = this.domainGenerator; break; @@ -74,7 +71,16 @@ export class RulesBasedDataGenerator { generator = this.defaultGenerator; } - value = generator.generateFrom(rule, { rowIndex, runStartedAt }); + const executableRule = + rule.type === 'enum' + ? { + ...rule, + type: 'domain', + ruleSpec: EnumParser.normalizeToCanonicalDomainRuleSpec(rule.ruleSpec), + } + : rule; + + value = generator.generateFrom(executableRule, { rowIndex, runStartedAt }); if (value.isError) { dataGen = '**ERROR**'; diff --git a/packages/core/js/data_generation/rulesParser.js b/packages/core/js/data_generation/rulesParser.js index f1436525..3e23a2a2 100644 --- a/packages/core/js/data_generation/rulesParser.js +++ b/packages/core/js/data_generation/rulesParser.js @@ -2,6 +2,7 @@ import { TestDataRules } from './testDataRules.js'; import { SchemaParsingErrors } from './schema-parsing-errors.js'; import { parseConstraintText } from './schema-constraint-parser.js'; import { looksLikeInlineRuleSpec, startsConstraint } from './inline-schema-rule.js'; +import { EnumParser } from './utils/enumParser.js'; function parseInlineRuleDefinition(line) { const source = String(line ?? ''); @@ -238,7 +239,9 @@ export class RulesParser { const rows = Array.isArray(rules) ? rules.map((rule) => ({ name: String(rule?.name ?? ''), - rule: String(rule?.ruleSpec ?? ''), + rule: EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) + : String(rule?.ruleSpec ?? ''), })) : []; const outputLines = []; @@ -289,7 +292,11 @@ export class RulesParser { } outputLines.push(String(rule?.name ?? '')); - outputLines.push(String(rule?.ruleSpec ?? '')); + outputLines.push( + EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) + : String(rule?.ruleSpec ?? '') + ); }); return outputLines.join('\n'); } diff --git a/packages/core/js/data_generation/schema-constraint-validator.js b/packages/core/js/data_generation/schema-constraint-validator.js index 385fd7a7..30a9707e 100644 --- a/packages/core/js/data_generation/schema-constraint-validator.js +++ b/packages/core/js/data_generation/schema-constraint-validator.js @@ -29,13 +29,14 @@ function buildRegexMatcher(ruleSpec) { function matchesRuleScalarValue(rule, value) { const normalizedValue = normalizeScalarValue(value); + if (EnumParser.isEnumLikeRule(rule)) { + return EnumParser.extractEnumValues(rule.ruleSpec).includes(normalizedValue); + } switch ( String(rule?.type || '') .trim() .toLowerCase() ) { - case 'enum': - return EnumParser.extractEnumValues(rule.ruleSpec).includes(normalizedValue); case 'regex': { const matcher = buildRegexMatcher(rule.ruleSpec); return matcher ? matcher.test(normalizedValue) : null; @@ -48,12 +49,12 @@ function matchesRuleScalarValue(rule, value) { } function getRuleUniverseValues(rule) { + if (EnumParser.isEnumLikeRule(rule)) { + return EnumParser.extractEnumValues(rule.ruleSpec); + } const ruleType = String(rule?.type || '') .trim() .toLowerCase(); - if (ruleType === 'enum') { - return EnumParser.extractEnumValues(rule.ruleSpec); - } if (ruleType === 'literal') { return [normalizeScalarValue(rule.ruleSpec)]; } @@ -76,7 +77,7 @@ function validateComparisonPredicate(predicate, rule) { .trim() .toLowerCase(); if (predicate.relation === '=' && matchesValue === false) { - if (ruleType === 'enum') { + if (EnumParser.isEnumLikeRule(rule)) { return [SchemaParsingErrors.invalidConstraintEnumValue(rule.name, rightValue, line)]; } if (ruleType === 'regex') { diff --git a/packages/core/js/data_generation/schema-conversion.js b/packages/core/js/data_generation/schema-conversion.js index e96ad2f0..30fa8590 100644 --- a/packages/core/js/data_generation/schema-conversion.js +++ b/packages/core/js/data_generation/schema-conversion.js @@ -1,4 +1,5 @@ import { TestDataGenerator } from './testDataGenerator.js'; +import { EnumParser } from './utils/enumParser.js'; function cloneConstraintAst(ast) { if (ast == null) { @@ -11,9 +12,13 @@ function cloneConstraintAst(ast) { } function cloneRule(rule) { + const rawRuleSpec = String(rule?.ruleSpec ?? ''); + const normalizedRuleSpec = EnumParser.isCanonicalDomainEnumRuleSpec(rawRuleSpec) + ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rawRuleSpec) + : rawRuleSpec; return { name: String(rule?.name ?? ''), - ruleSpec: String(rule?.ruleSpec ?? ''), + ruleSpec: normalizedRuleSpec, type: String(rule?.type ?? ''), comments: String(rule?.comments ?? ''), }; @@ -76,7 +81,9 @@ function renderSpecFromRulesWithTokens(rules, constraints, schemaTokens) { const rows = Array.isArray(rules) ? rules.map((rule) => ({ name: String(rule?.name ?? ''), - rule: String(rule?.ruleSpec ?? ''), + rule: EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) + : String(rule?.ruleSpec ?? ''), })) : []; const safeConstraints = Array.isArray(constraints) ? constraints : []; diff --git a/packages/core/js/data_generation/schema-rules-adapter.js b/packages/core/js/data_generation/schema-rules-adapter.js index f2ac26fe..6c031bc0 100644 --- a/packages/core/js/data_generation/schema-rules-adapter.js +++ b/packages/core/js/data_generation/schema-rules-adapter.js @@ -7,6 +7,42 @@ const SOURCE_TYPE_REGEX = 'regex'; const SOURCE_TYPE_LITERAL = 'literal'; const SOURCE_TYPE_ENUM = 'enum'; +function extractEnumValueFromRuleSpec(ruleSpec) { + const value = String(ruleSpec ?? '').trim(); + const wrappedMatch = value.match(/^(?:enum|datatype\.enum|awd\.datatype\.enum)\s*\(([\s\S]*)\)$/i); + if (wrappedMatch) { + return wrappedMatch[1].trim(); + } + if (/^enum\s+/i.test(value)) { + const shorthand = value.replace(/^enum\s+/i, '').trim(); + if (shorthand.startsWith('(') && shorthand.endsWith(')') && shorthand.length >= 2) { + return shorthand.slice(1, -1).trim(); + } + return shorthand; + } + if (value.startsWith('(') && value.endsWith(')') && value.length >= 2) { + return value.slice(1, -1).trim(); + } + return value; +} + +function buildEnumRuleSpec(enumInput) { + const enumValue = String(enumInput ?? '').trim(); + if (enumValue.length === 0) { + return ''; + } + if (/^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/i.test(enumValue)) { + return `enum(${extractEnumValueFromRuleSpec(enumValue)})`; + } + if (/^enum\s+/i.test(enumValue)) { + return `enum(${enumValue.replace(/^enum\s+/i, '').trim()})`; + } + if (enumValue.startsWith('(') && enumValue.endsWith(')')) { + return `enum${enumValue}`; + } + return `enum(${enumValue})`; +} + function isBlankSchemaRow(row) { return ( String(row?.name ?? '').trim().length === 0 && @@ -56,6 +92,9 @@ function buildRuleSpecFromRow(row) { if (sourceType === SOURCE_TYPE_FAKER || sourceType === SOURCE_TYPE_DOMAIN) { const command = normaliseFakerCommand(row?.command); const params = String(row?.params ?? '').trim(); + if (sourceType === SOURCE_TYPE_DOMAIN && command.toLowerCase() === 'datatype.enum') { + return buildEnumRuleSpec(params); + } return `${command}${params}`; } if (sourceType === SOURCE_TYPE_LITERAL) { @@ -80,6 +119,9 @@ function buildRuleSpecFromRow(row) { } return value; } + if (sourceType === SOURCE_TYPE_ENUM) { + return buildEnumRuleSpec(row?.value); + } return String(row?.value ?? '').trim(); } diff --git a/packages/core/js/data_generation/testDataRulesCompiler.js b/packages/core/js/data_generation/testDataRulesCompiler.js index 8f75fe71..2576e806 100644 --- a/packages/core/js/data_generation/testDataRulesCompiler.js +++ b/packages/core/js/data_generation/testDataRulesCompiler.js @@ -3,6 +3,7 @@ import { RegexTestDataRuleValidator } from './regex/regexTestDataRuleValidator.j import { EnumTestDataRuleValidator } from './enum/enumTestDataRuleValidator.js'; import { DomainTestDataRuleValidator } from './domain/domainTestDataRuleValidator.js'; import { SchemaParsingErrors } from './schema-parsing-errors.js'; +import { EnumParser } from './utils/enumParser.js'; /* 'Compilation' of rules is where we try to identify if the rules are @@ -69,7 +70,8 @@ export class TestDataRulesCompiler { enumValidator.validate(rule); if (enumValidator.isValid()) { this.compilationReportLines.push(`${rule.name} is a valid 'enum': ${rule.ruleSpec}`); - rule.type = 'enum'; + rule.ruleSpec = EnumParser.normalizeToCanonicalDomainRuleSpec(rule.ruleSpec); + rule.type = 'domain'; } else { this.compilationReportLines.push( `${rule.name} is not a valid 'enum': ${enumValidator.getValidationError()}` diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index 2898da67..15d8829c 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -28,6 +28,50 @@ export class EnumParser { return /^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/.test(ruleSpec); } + static serializeDomainEnumValue(value) { + return JSON.stringify(String(value ?? '')); + } + + static buildCanonicalDomainRuleSpecFromValues(values = []) { + const normalizedValues = (Array.isArray(values) ? values : []).map((value) => String(value)); + return `datatype.enum(${normalizedValues.map((value) => this.serializeDomainEnumValue(value)).join(', ')})`; + } + + static serializeSchemaEnumValue(value) { + const text = String(value ?? ''); + if (/^[^,\s"()]+$/u.test(text)) { + return text; + } + return JSON.stringify(text); + } + + static buildCanonicalSchemaRuleSpecFromValues(values = []) { + const normalizedValues = (Array.isArray(values) ? values : []).map((value) => String(value)); + return `enum(${normalizedValues.map((value) => this.serializeSchemaEnumValue(value)).join(',')})`; + } + + static normalizeToCanonicalDomainRuleSpec(ruleSpec) { + return this.buildCanonicalDomainRuleSpecFromValues(this.extractEnumValues(ruleSpec)); + } + + static normalizeToCanonicalSchemaRuleSpec(ruleSpec) { + return this.buildCanonicalSchemaRuleSpecFromValues(this.extractEnumValues(ruleSpec)); + } + + static isCanonicalDomainEnumRuleSpec(ruleSpec) { + return /^datatype\.enum\s*\(/i.test(String(ruleSpec || '').trim()); + } + + static isEnumLikeRule(rule = {}) { + const ruleType = String(rule?.type || '') + .trim() + .toLowerCase(); + if (ruleType === 'enum') { + return true; + } + return ruleType === 'domain' && this.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec); + } + /** * Extract enum values from rule specification * Handles both formats: diff --git a/packages/core/js/domain/domain-command-metadata.js b/packages/core/js/domain/domain-command-metadata.js new file mode 100644 index 00000000..53bece5a --- /dev/null +++ b/packages/core/js/domain/domain-command-metadata.js @@ -0,0 +1,85 @@ +import { DOMAIN_KEYWORD_ALIAS_INDEX, getDomainKeywordHelpByAlias } from './domain-keywords.js'; + +const ANYWAYDATA_DOMAIN_DOCS_BASE = 'https://anywaydata.com/docs/test-data/domain'; + +function getDomainPageFromCommand(command) { + const value = String(command || '').trim(); + if (!value.includes('.')) { + return ''; + } + const domain = value.split('.')[0]; + if (!domain) { + return ''; + } + return `${ANYWAYDATA_DOMAIN_DOCS_BASE}/${domain}`; +} + +function resolveDomainDocsUrl(command, keywordDocsUrl) { + const explicitDocsUrl = String(keywordDocsUrl || '').trim(); + if ( + explicitDocsUrl.startsWith('https://anywaydata.com/') || + explicitDocsUrl.startsWith('/docs/') || + explicitDocsUrl.startsWith('docs/') + ) { + return explicitDocsUrl; + } + const domainPage = getDomainPageFromCommand(command); + if (domainPage) { + return domainPage; + } + return explicitDocsUrl || `${ANYWAYDATA_DOMAIN_DOCS_BASE}/domain-test-data`; +} + +function getDomainKeywordEntries() { + const entries = Object.values(DOMAIN_KEYWORD_ALIAS_INDEX.byCanonical || {}); + return entries.sort((a, b) => String(a.keyword || '').localeCompare(String(b.keyword || ''))); +} + +function getKnownDomainCommandsAlphabetical() { + return getDomainKeywordEntries() + .map((entry) => { + const shortest = String(entry.shortestUniqueAlias || '').trim(); + return shortest || String(entry.keyword || '').trim(); + }) + .sort((a, b) => a.localeCompare(b)); +} + +function getKnownDomainCommandsLongestFirst() { + return [...getKnownDomainCommandsAlphabetical()].sort((a, b) => b.length - a.length || a.localeCompare(b)); +} + +function getDomainKeywordByCommand(command) { + const key = String(command || '').trim(); + if (!key) { + return null; + } + return DOMAIN_KEYWORD_ALIAS_INDEX.byAlias[key] || null; +} + +function getDomainCommandHelp(command) { + const normalizedCommand = String(command || '').trim(); + const commandHelp = getDomainKeywordHelpByAlias(command); + if (!commandHelp) { + return null; + } + + return { + canonical: String(commandHelp.canonical || '').trim(), + keyword: String(commandHelp.keyword || normalizedCommand).trim(), + summary: String(commandHelp.summary || '').trim(), + docsUrl: resolveDomainDocsUrl(command, commandHelp.docsUrl || ''), + fakerDocsUrl: String(commandHelp.fakerDocsUrl || '').trim(), + usageExamples: Array.isArray(commandHelp.usageExamples) ? commandHelp.usageExamples : [], + validator: commandHelp.validator, + returnType: String(commandHelp.returnType || '').trim(), + args: Array.isArray(commandHelp.args) ? commandHelp.args : [], + }; +} + +export { + getDomainCommandHelp, + getDomainKeywordByCommand, + getKnownDomainCommandsAlphabetical, + getKnownDomainCommandsLongestFirst, + resolveDomainDocsUrl, +}; diff --git a/packages/core/js/domain/domain-keywords.js b/packages/core/js/domain/domain-keywords.js index 00149742..c61daa10 100644 --- a/packages/core/js/domain/domain-keywords.js +++ b/packages/core/js/domain/domain-keywords.js @@ -1,6 +1,7 @@ import { DOMAIN_KEYWORD_DEFINITIONS } from './domain-keyword-definitions.js'; import { executeCustomAutoIncrementTimestamp } from '../keywords/domain/autoincrement/auto-increment-timestamp.js'; import { executeCustomAutoIncrementSequence } from '../keywords/domain/autoincrement/auto-increment-sequence.js'; +import { executeCustomDatatypeEnum } from '../keywords/domain/datatype/datatype-enum.js'; import { executeCustomCounterString } from '../keywords/domain/string/counterstring.js'; import { executeCustomInternetHttpMethod } from '../keywords/domain/internet/internet-http-method.js'; import { DomainKeywordInvocationParser } from './parser/DomainKeywordInvocationParser.js'; @@ -115,7 +116,15 @@ function buildDomainKeywordCatalog(definitions = DOMAIN_KEYWORD_DEFINITIONS) { name: String(arg?.name || '').trim(), type: String(arg?.type || '').trim(), required: arg?.required === true, + optional: arg?.optional === true || arg?.required === false, + variadic: arg?.variadic === true, description: String(arg?.description || '').trim(), + example: String(arg?.example || '').trim(), + ...(Object.prototype.hasOwnProperty.call(arg || {}, 'defaultValue') + ? { defaultValue: arg.defaultValue } + : Object.prototype.hasOwnProperty.call(arg || {}, 'default') + ? { defaultValue: arg.default } + : {}), examples: Array.isArray(arg?.examples) ? arg.examples.filter((value) => value !== undefined) : [], })) : []; @@ -391,6 +400,7 @@ function applyFakerArgTransform(keyword, args = []) { const BUILT_IN_CUSTOM_DELEGATES = { 'autoIncrement.timestamp': executeCustomAutoIncrementTimestamp, 'autoIncrement.sequence': executeCustomAutoIncrementSequence, + 'datatype.enum': executeCustomDatatypeEnum, 'internet.httpMethod': executeCustomInternetHttpMethod, 'literal.value': (executionContext = {}) => { const args = Array.isArray(executionContext.args) ? executionContext.args : []; @@ -403,27 +413,101 @@ function validateDomainKeywordArgs(keyword, args = []) { const argumentList = Array.isArray(args) ? args : []; const schema = Array.isArray(keyword?.help?.args) ? keyword.help.args : []; const argsByName = {}; + const variadicShape = getVariadicTailShape(schema); + const positionalValidation = validateFixedKeywordArgs( + schema, + argumentList, + argsByName, + variadicShape.fixedSchemaLength + ); + if (!positionalValidation.ok) { + return positionalValidation; + } - for (let index = 0; index < schema.length; index += 1) { - const spec = schema[index]; - const value = argumentList[index]; - if (typeof value !== 'undefined') { - argsByName[String(spec?.name || '').trim()] = value; - } - if (spec.required && typeof value === 'undefined') { - return { - ok: false, - error: `Invalid keyword arguments: argument "${spec.name}" is required`, - }; + const variadicValidation = variadicShape.hasVariadicTail + ? validateVariadicKeywordArgs(schema, argumentList, argsByName, variadicShape.variadicIndex) + : validateKeywordArgCount(schema, argumentList); + if (!variadicValidation.ok) { + return variadicValidation; + } + + return runSemanticKeywordArgsValidator(keyword, argumentList, schema, argsByName); +} + +function getVariadicTailShape(schema = []) { + const variadicIndex = schema.findIndex((spec) => spec?.variadic === true); + const hasVariadicTail = variadicIndex >= 0 && variadicIndex === schema.length - 1; + + return { + variadicIndex, + hasVariadicTail, + fixedSchemaLength: hasVariadicTail ? variadicIndex : schema.length, + }; +} + +function createRequiredArgError(spec) { + return { + ok: false, + error: `Invalid keyword arguments: argument "${spec.name}" is required`, + }; +} + +function createTypeMismatchArgError(spec, value) { + return { + ok: false, + error: `Invalid keyword arguments: argument "${spec.name}" must be ${formatExpectedType(spec.type)}, not ${describeValueType(value)}`, + }; +} + +function recordNamedArgValue(argsByName, spec, value) { + if (typeof value !== 'undefined') { + argsByName[String(spec?.name || '').trim()] = value; + } +} + +function validateSingleKeywordArg(spec, value, argsByName) { + recordNamedArgValue(argsByName, spec, value); + + if (spec.required && typeof value === 'undefined') { + return createRequiredArgError(spec); + } + if (typeof value !== 'undefined' && !isTypeMatch(value, spec.type)) { + return createTypeMismatchArgError(spec, value); + } + + return { ok: true }; +} + +function validateFixedKeywordArgs(schema, argumentList, argsByName, fixedSchemaLength) { + for (let index = 0; index < fixedSchemaLength; index += 1) { + const validation = validateSingleKeywordArg(schema[index], argumentList[index], argsByName); + if (!validation.ok) { + return validation; } - if (typeof value !== 'undefined' && !isTypeMatch(value, spec.type)) { - return { - ok: false, - error: `Invalid keyword arguments: argument "${spec.name}" must be ${formatExpectedType(spec.type)}, not ${describeValueType(value)}`, - }; + } + + return { ok: true }; +} + +function validateVariadicKeywordArgs(schema, argumentList, argsByName, variadicIndex) { + const variadicSpec = schema[variadicIndex]; + const variadicValues = argumentList.slice(variadicIndex); + argsByName[String(variadicSpec?.name || '').trim()] = variadicValues; + + if (variadicSpec?.required === true && variadicValues.length === 0) { + return createRequiredArgError(variadicSpec); + } + + for (const value of variadicValues) { + if (typeof value !== 'undefined' && !isTypeMatch(value, variadicSpec.type)) { + return createTypeMismatchArgError(variadicSpec, value); } } + return { ok: true }; +} + +function validateKeywordArgCount(schema, argumentList) { if (argumentList.length > schema.length) { return { ok: false, @@ -431,19 +515,25 @@ function validateDomainKeywordArgs(keyword, args = []) { }; } + return { ok: true }; +} + +function runSemanticKeywordArgsValidator(keyword, argumentList, schema, argsByName) { const semanticArgsValidator = keyword?.help?.argsValidator; - if (typeof semanticArgsValidator === 'function') { - const semanticValidation = semanticArgsValidator(argumentList, { - keyword, - schema, - argsByName, - }); - if (!semanticValidation?.ok) { - return { - ok: false, - error: semanticValidation?.error || 'Invalid keyword arguments', - }; - } + if (typeof semanticArgsValidator !== 'function') { + return { ok: true }; + } + + const semanticValidation = semanticArgsValidator(argumentList, { + keyword, + schema, + argsByName, + }); + if (!semanticValidation?.ok) { + return { + ok: false, + error: semanticValidation?.error || 'Invalid keyword arguments', + }; } return { ok: true }; diff --git a/packages/core/js/domain/parser/DomainKeywordParser.js b/packages/core/js/domain/parser/DomainKeywordParser.js index 26603529..45197e0c 100644 --- a/packages/core/js/domain/parser/DomainKeywordParser.js +++ b/packages/core/js/domain/parser/DomainKeywordParser.js @@ -41,6 +41,8 @@ class DomainKeywordParser { mapParsedArguments(argumentsList, keywordMetadata) { const schema = Array.isArray(keywordMetadata?.help?.args) ? keywordMetadata.help.args : []; + const variadicIndex = schema.findIndex((entry) => entry?.variadic === true); + const hasVariadicTail = variadicIndex >= 0 && variadicIndex === schema.length - 1; const usesOptionsFromHelpArgs = keywordMetadata?.delegate?.argTransform === 'optionsFromHelpArgs'; const positional = []; const named = {}; @@ -89,7 +91,7 @@ class DomainKeywordParser { return { ok: true, args: resolved }; } - if (keywordMetadata && positional.length > schema.length) { + if (keywordMetadata && !hasVariadicTail && positional.length > schema.length) { return { ok: false, error: `Invalid keyword arguments: too many positional arguments. Expected at most ${schema.length}, received ${positional.length}`, diff --git a/packages/core/js/keywords/domain/datatype/datatype-enum.js b/packages/core/js/keywords/domain/datatype/datatype-enum.js new file mode 100644 index 00000000..9e1c62d6 --- /dev/null +++ b/packages/core/js/keywords/domain/datatype/datatype-enum.js @@ -0,0 +1,33 @@ +import { EnumParser } from '../../../data_generation/utils/enumParser.js'; + +function normalizeDatatypeEnumArgs(args = []) { + const rawArgs = Array.isArray(args) ? args : []; + if (rawArgs.length === 1 && typeof rawArgs[0] === 'string') { + const singleValue = rawArgs[0].trim(); + if (singleValue.length === 0) { + return []; + } + + try { + return EnumParser.extractEnumValues(`enum(${singleValue})`); + } catch { + return [singleValue]; + } + } + + return rawArgs.map((value) => value); +} + +function executeCustomDatatypeEnum(executionContext = {}) { + const args = Array.isArray(executionContext.args) ? executionContext.args : []; + const values = normalizeDatatypeEnumArgs(args); + + if (values.length === 0) { + throw new Error('Invalid keyword arguments: argument "values" is required'); + } + + const randomIndex = Math.floor(Math.random() * values.length); + return values[randomIndex]; +} + +export { executeCustomDatatypeEnum, normalizeDatatypeEnumArgs }; diff --git a/packages/core/js/keywords/domain/datatype/datatype-keyword-definitions.js b/packages/core/js/keywords/domain/datatype/datatype-keyword-definitions.js index 42a0980b..24a048d3 100644 --- a/packages/core/js/keywords/domain/datatype/datatype-keyword-definitions.js +++ b/packages/core/js/keywords/domain/datatype/datatype-keyword-definitions.js @@ -1,5 +1,6 @@ import { DATATYPE_BOOLEAN_KEYWORD_DEFINITION } from './boolean-keyword-definition.js'; +import { DATATYPE_ENUM_KEYWORD_DEFINITION } from './enum-keyword-definition.js'; -const DATATYPE_KEYWORD_DEFINITIONS = [DATATYPE_BOOLEAN_KEYWORD_DEFINITION]; +const DATATYPE_KEYWORD_DEFINITIONS = [DATATYPE_BOOLEAN_KEYWORD_DEFINITION, DATATYPE_ENUM_KEYWORD_DEFINITION]; export { DATATYPE_KEYWORD_DEFINITIONS }; diff --git a/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js b/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js new file mode 100644 index 00000000..f1ee8b4f --- /dev/null +++ b/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js @@ -0,0 +1,65 @@ +import { validateEnumMemberValue } from '../../../command-help/command-help-validators.js'; +import { normalizeDatatypeEnumArgs } from './datatype-enum.js'; + +function validateDatatypeEnumArgs(args = []) { + const values = normalizeDatatypeEnumArgs(args).map((value) => String(value)); + + if (values.length === 0) { + return { + ok: false, + error: 'Invalid keyword arguments: argument "values" is required', + }; + } + + if (values.some((value) => value.length === 0)) { + return { + ok: false, + error: 'Invalid keyword arguments: enum values cannot be empty', + }; + } + + return { ok: true }; +} + +const DATATYPE_ENUM_KEYWORD_DEFINITION = { + keyword: 'datatype.enum', + delegate: { + type: 'custom', + target: 'datatype.enum', + }, + help: { + summary: + 'Enum helper accepts a list of values and returns one value at random. Supports enum(value1,value2), enum value1,value2, or datatype.enum(value1,value2).', + docsUrl: 'https://anywaydata.com/docs/test-data/domain/datatype', + validator: validateEnumMemberValue, + argsValidator: validateDatatypeEnumArgs, + returnType: 'string', + usageExamples: [ + { + functionCall: 'datatype.enum(values="active,inactive,pending")', + sampleReturnValue: 'inactive', + description: + 'Shows the canonical datatype enum helper using a named values argument. The same public enum can also be authored as enum("active","inactive","pending"), enum active,inactive,pending, active,inactive,pending, or "active","inactive","pending".', + }, + { + functionCall: 'datatype.enum(values="GET,POST,PUT,PATCH")', + sampleReturnValue: 'PUT', + description: + 'Shows a second named-parameter example with a different enum set. The fully-qualified compatibility alias awd.datatype.enum(...) also normalizes to this same datatype.enum command internally.', + }, + ], + args: [ + { + name: 'values', + type: 'string', + required: true, + optional: false, + variadic: true, + description: 'List of allowed enum values chosen at random during generation.', + example: 'active,inactive,pending', + }, + ], + }, +}; + +export { DATATYPE_ENUM_KEYWORD_DEFINITION, validateDatatypeEnumArgs }; diff --git a/packages/core/src/tests/data_generation/domain-generation-path.test.js b/packages/core/src/tests/data_generation/domain-generation-path.test.js index cb685401..7e2e56bf 100644 --- a/packages/core/src/tests/data_generation/domain-generation-path.test.js +++ b/packages/core/src/tests/data_generation/domain-generation-path.test.js @@ -64,13 +64,15 @@ describe('domain generation integration', () => { generator.compile(); let keepAttemptCount = 0; - const baseEnumGenerateFrom = generator.generator.enumGenerator.generateFrom.bind(generator.generator.enumGenerator); - generator.generator.enumGenerator.generateFrom = (rule) => { + const baseDomainGenerateFrom = generator.generator.domainGenerator.generateFrom.bind( + generator.generator.domainGenerator + ); + generator.generator.domainGenerator.generateFrom = (rule, executionContext) => { if (rule?.name === 'Keep') { keepAttemptCount += 1; return dataResponse(keepAttemptCount === 1 ? 'no' : 'yes'); } - return baseEnumGenerateFrom(rule); + return baseDomainGenerateFrom(rule, executionContext); }; const firstRow = generator.generateRow(); diff --git a/packages/core/src/tests/data_generation/enum-compiler-integration.test.js b/packages/core/src/tests/data_generation/enum-compiler-integration.test.js index 737c01ef..21a58c79 100644 --- a/packages/core/src/tests/data_generation/enum-compiler-integration.test.js +++ b/packages/core/src/tests/data_generation/enum-compiler-integration.test.js @@ -42,7 +42,8 @@ describe('TestDataRulesCompiler with Enum Support', () => { compiler.compile(rules); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("Active", "Inactive", "Pending")'); expect(compiler.isValid()).toBe(true); }); @@ -51,7 +52,8 @@ describe('TestDataRulesCompiler with Enum Support', () => { compiler.compile(rules); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("High", "Medium", "Low")'); expect(compiler.isValid()).toBe(true); }); @@ -60,7 +62,8 @@ describe('TestDataRulesCompiler with Enum Support', () => { compiler.compile(rules); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("Open")'); expect(compiler.isValid()).toBe(true); }); @@ -69,7 +72,8 @@ describe('TestDataRulesCompiler with Enum Support', () => { compiler.compile(rules); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("High", "Medium", "Low")'); expect(compiler.isValid()).toBe(true); }); @@ -79,7 +83,8 @@ describe('TestDataRulesCompiler with Enum Support', () => { compiler.compile(rules); compiler.validate(); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("One", "Two", "Three")'); expect(rules[1].type).toBe('regex'); // Single value is valid regex (literal text) expect(compiler.isValid()).toBe(true); }); diff --git a/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js b/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js index c9e2048e..7ec891ea 100644 --- a/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js +++ b/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js @@ -11,8 +11,9 @@ describe('Enum Format Bug Fix Integration', () => { const compiler = new TestDataRulesCompiler(); compiler.compile([rule]); - // Verify it was detected as enum type - expect(rule.type).toBe('enum'); + // Verify it was normalized to the canonical domain enum type + expect(rule.type).toBe('domain'); + expect(rule.ruleSpec).toBe('datatype.enum("GET", "POST", "PUT", "DELETE")'); // Validate the rule compiler.validate(); @@ -34,7 +35,8 @@ describe('Enum Format Bug Fix Integration', () => { const compiler = new TestDataRulesCompiler(); compiler.compile([rule]); - expect(rule.type).toBe('enum'); + expect(rule.type).toBe('domain'); + expect(rule.ruleSpec).toBe('datatype.enum("application/json", "xml", "text/plain")'); compiler.validate(); expect(compiler.isValid()).toBe(true); @@ -51,7 +53,8 @@ describe('Enum Format Bug Fix Integration', () => { const compiler = new TestDataRulesCompiler(); compiler.compile([rule]); - expect(rule.type).toBe('enum'); + expect(rule.type).toBe('domain'); + expect(rule.ruleSpec).toBe('datatype.enum("Active, Running", "Inactive, Stopped", "Pending, Waiting")'); compiler.validate(); expect(compiler.isValid()).toBe(true); diff --git a/packages/core/src/tests/data_generation/enum-surface-parity.test.js b/packages/core/src/tests/data_generation/enum-surface-parity.test.js new file mode 100644 index 00000000..16eb6b6a --- /dev/null +++ b/packages/core/src/tests/data_generation/enum-surface-parity.test.js @@ -0,0 +1,100 @@ +import { jest } from '@jest/globals'; +import { faker } from '@faker-js/faker'; +import RandExp from 'randexp'; +import { generateFromTextSpec } from '../../index.js'; +import { TestDataRulesCompiler } from '../../../js/data_generation/testDataRulesCompiler.js'; +import { TestDataRule } from '../../../js/data_generation/testDataRule.js'; +import { EnumTestDataGenerator } from '../../../js/data_generation/enum/enumTestDataGenerator.js'; + +const PUBLIC_ENUM_SURFACE_CASES = [ + { + label: 'simple comma-separated list', + ruleSpec: 'active,inactive,pending', + }, + { + label: 'quoted comma-separated list', + ruleSpec: '"active","inactive","pending"', + }, + { + label: 'explicit enum(...) call', + ruleSpec: 'enum("active","inactive","pending")', + }, + { + label: 'enum shorthand call', + ruleSpec: 'enum active,inactive,pending', + }, + { + label: 'datatype.enum(...) alias', + ruleSpec: 'datatype.enum("active","inactive","pending")', + }, + { + label: 'awd.datatype.enum(...) alias', + ruleSpec: 'awd.datatype.enum("active","inactive","pending")', + }, +]; + +const ENUM_GENERATOR_SURFACE_CASES = [ + ...PUBLIC_ENUM_SURFACE_CASES, + { + label: 'parenthesized comma-separated list', + ruleSpec: '(active,inactive,pending)', + }, +]; + +describe('enum surface parity', () => { + test.each(PUBLIC_ENUM_SURFACE_CASES)( + 'compiler normalizes public $label to the canonical domain enum model', + ({ ruleSpec }) => { + const compiler = new TestDataRulesCompiler(faker, RandExp); + const rules = [new TestDataRule('Status', ruleSpec)]; + + compiler.compile(rules); + compiler.validate(); + + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("active", "inactive", "pending")'); + expect(compiler.isValid()).toBe(true); + } + ); + + test.each(PUBLIC_ENUM_SURFACE_CASES)( + 'generateFromTextSpec evaluates public $label using the same enum value selection', + ({ ruleSpec }) => { + const randomSpy = jest.spyOn(Math, 'random').mockReturnValue(0.5); + + try { + const result = generateFromTextSpec({ + textSpec: `Status\n${ruleSpec}`, + rowCount: 3, + outputFormat: 'json', + }); + + expect(result.ok).toBe(true); + expect(result.headers).toEqual(['Status']); + expect(result.rows).toEqual([['inactive'], ['inactive'], ['inactive']]); + } finally { + randomSpy.mockRestore(); + } + } + ); + + test.each(ENUM_GENERATOR_SURFACE_CASES)( + 'EnumTestDataGenerator evaluates parser-level $label using the same enum value selection', + ({ ruleSpec }) => { + const generator = new EnumTestDataGenerator(); + const rule = new TestDataRule('Status', ruleSpec); + rule.type = 'enum'; + const randomSpy = jest.spyOn(Math, 'random').mockReturnValue(0.5); + + try { + const results = Array.from({ length: 3 }, () => generator.generateFrom(rule)); + results.forEach((result) => { + expect(result.isError).toBe(false); + expect(result.data).toBe('inactive'); + }); + } finally { + randomSpy.mockRestore(); + } + } + ); +}); diff --git a/packages/core/src/tests/data_generation/mixed-compiler-integration.test.js b/packages/core/src/tests/data_generation/mixed-compiler-integration.test.js index db500750..5e301c4f 100644 --- a/packages/core/src/tests/data_generation/mixed-compiler-integration.test.js +++ b/packages/core/src/tests/data_generation/mixed-compiler-integration.test.js @@ -16,10 +16,12 @@ describe('TestDataRulesCompiler mixed rule types', () => { compiler.compile(rules); - expect(rules[0].type).toBe('enum'); + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("Red", "Blue", "Green")'); expect(rules[1].type).toBe('domain'); expect(rules[2].type).toBe('regex'); expect(rules[3].type).toBe('regex'); - expect(rules[4].type).toBe('enum'); + expect(rules[4].type).toBe('domain'); + expect(rules[4].ruleSpec).toBe('datatype.enum("A", "B")'); }); }); diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js new file mode 100644 index 00000000..a30f5385 --- /dev/null +++ b/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js @@ -0,0 +1,40 @@ +import { + getDomainCommandHelp, + getKnownDomainCommandsAlphabetical, +} from '../../../../../js/domain/domain-command-metadata.js'; + +describe('domain command metadata', () => { + test('includes real datatype.enum help in the shared core metadata', () => { + const help = getDomainCommandHelp('datatype.enum'); + + expect(help).toBeTruthy(); + expect(help.canonical).toBe('awd.domain.datatype.enum'); + expect(help.docsUrl).toBe('https://anywaydata.com/docs/test-data/domain/datatype'); + expect(help.usageExamples).toHaveLength(2); + expect(help.usageExamples).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + functionCall: 'datatype.enum(values="active,inactive,pending")', + sampleReturnValue: 'inactive', + }), + expect.objectContaining({ + functionCall: 'datatype.enum(values="GET,POST,PUT,PATCH")', + sampleReturnValue: 'PUT', + }), + ]) + ); + expect(help.args).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: 'values', + variadic: true, + optional: false, + }), + ]) + ); + }); + + test('includes datatype.enum in the shared domain command list', () => { + expect(getKnownDomainCommandsAlphabetical()).toContain('datatype.enum'); + }); +}); diff --git a/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js b/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js index e2889b4b..fc108218 100644 --- a/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js +++ b/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js @@ -11,8 +11,9 @@ describe('User Reported Bug - HTTP Method enum(GET,POST,PUT,DELETE)', () => { const compiler = new TestDataRulesCompiler(); compiler.compile([rule]); - // Should be detected as enum type - expect(rule.type).toBe('enum'); + // Should be normalized to the canonical datatype.enum domain type + expect(rule.type).toBe('domain'); + expect(rule.ruleSpec).toBe('datatype.enum("GET", "POST", "PUT", "DELETE")'); // Should validate successfully compiler.validate(); From db301fcda8256d7ca1830d35257413cc07a54843 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 12:59:14 +0100 Subject: [PATCH 02/25] Support named enum values parsing --- .../js/data_generation/utils/enumParser.js | 99 ++++++++++++------- .../enum-surface-parity.test.js | 16 +++ .../enum/enumTestDataRuleValidator.test.js | 18 ++++ 3 files changed, 98 insertions(+), 35 deletions(-) diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index 15d8829c..c85e7ad0 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -72,6 +72,66 @@ export class EnumParser { return ruleType === 'domain' && this.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec); } + static unwrapNamedValuesArgument(paramsStr) { + const text = String(paramsStr || '').trim(); + const match = text.match(/^values\s*=\s*([\s\S]*)$/i); + if (!match) { + return null; + } + + const valuesText = match[1].trim(); + if ( + valuesText.length >= 2 && + valuesText.startsWith('"') && + valuesText.endsWith('"') && + valuesText[valuesText.length - 2] !== '\\' + ) { + return this.unescapeQuotedEnumValue(valuesText.slice(1, -1)); + } + + return valuesText; + } + + static splitEnumParameterValues(paramsStr) { + const values = []; + let currentValue = ''; + let inQuotes = false; + let i = 0; + + while (i < paramsStr.length) { + const char = paramsStr[i]; + + if (char === '"' && (i === 0 || paramsStr[i - 1] !== '\\')) { + // Toggle quote state for unescaped quotes + inQuotes = !inQuotes; + } else if (char === ',' && !inQuotes) { + // Found separator outside quotes + values.push(currentValue.trim()); + currentValue = ''; + } else { + // Add character to current value + currentValue += char; + } + i++; + } + + // Add final value + values.push(currentValue.trim()); + + if (values.length === 0 || values.every((value) => value.length === 0)) { + throw new Error('No valid values found in enum'); + } + + // Remove surrounding quotes from quoted values + return values.map((value) => { + const trimmed = value.trim(); + if (trimmed.startsWith('"') && trimmed.endsWith('"') && trimmed.length >= 2) { + return this.unescapeQuotedEnumValue(trimmed.slice(1, -1)); + } + return trimmed; + }); + } + /** * Extract enum values from rule specification * Handles both formats: @@ -119,42 +179,11 @@ export class EnumParser { } const paramsStr = match[1].trim(); - const values = []; - let currentValue = ''; - let inQuotes = false; - let i = 0; - - while (i < paramsStr.length) { - const char = paramsStr[i]; - - if (char === '"' && (i === 0 || paramsStr[i - 1] !== '\\')) { - // Toggle quote state for unescaped quotes - inQuotes = !inQuotes; - } else if (char === ',' && !inQuotes) { - // Found separator outside quotes - values.push(currentValue.trim()); - currentValue = ''; - } else { - // Add character to current value - currentValue += char; - } - i++; - } - - // Add final value - values.push(currentValue.trim()); - - if (values.length === 0 || values.every((value) => value.length === 0)) { - throw new Error('No valid values found in enum'); + const namedValues = this.unwrapNamedValuesArgument(paramsStr); + if (namedValues !== null) { + return this.extractEnumValues(namedValues); } - // Remove surrounding quotes from quoted values - return values.map((value) => { - const trimmed = value.trim(); - if (trimmed.startsWith('"') && trimmed.endsWith('"') && trimmed.length >= 2) { - return this.unescapeQuotedEnumValue(trimmed.slice(1, -1)); - } - return trimmed; - }); + return this.splitEnumParameterValues(paramsStr); } } diff --git a/packages/core/src/tests/data_generation/enum-surface-parity.test.js b/packages/core/src/tests/data_generation/enum-surface-parity.test.js index 16eb6b6a..14923cbf 100644 --- a/packages/core/src/tests/data_generation/enum-surface-parity.test.js +++ b/packages/core/src/tests/data_generation/enum-surface-parity.test.js @@ -27,10 +27,26 @@ const PUBLIC_ENUM_SURFACE_CASES = [ label: 'datatype.enum(...) alias', ruleSpec: 'datatype.enum("active","inactive","pending")', }, + { + label: 'datatype.enum named values alias', + ruleSpec: 'datatype.enum(values="active,inactive,pending")', + }, + { + label: 'datatype.enum unquoted named values alias', + ruleSpec: 'datatype.enum(values=active,inactive,pending)', + }, { label: 'awd.datatype.enum(...) alias', ruleSpec: 'awd.datatype.enum("active","inactive","pending")', }, + { + label: 'awd.datatype.enum named values alias', + ruleSpec: 'awd.datatype.enum(values="active,inactive,pending")', + }, + { + label: 'enum(...) named values alias', + ruleSpec: 'enum(values="active,inactive,pending")', + }, ]; const ENUM_GENERATOR_SURFACE_CASES = [ diff --git a/packages/core/src/tests/data_generation/unit/enum/enumTestDataRuleValidator.test.js b/packages/core/src/tests/data_generation/unit/enum/enumTestDataRuleValidator.test.js index 62cd33dd..23dc2db2 100644 --- a/packages/core/src/tests/data_generation/unit/enum/enumTestDataRuleValidator.test.js +++ b/packages/core/src/tests/data_generation/unit/enum/enumTestDataRuleValidator.test.js @@ -133,6 +133,24 @@ describe('EnumTestDataRuleValidator', () => { expect(values).toEqual(['A', 'B', 'C']); }); + test('extracts values from documented named datatype.enum values argument', () => { + const values = EnumParser.extractAwdEnumValues('datatype.enum(values="active,inactive,pending")'); + + expect(values).toEqual(['active', 'inactive', 'pending']); + }); + + test('extracts values from unquoted named datatype.enum values argument', () => { + const values = EnumParser.extractAwdEnumValues('datatype.enum(values=active,inactive,pending)'); + + expect(values).toEqual(['active', 'inactive', 'pending']); + }); + + test('extracts values from named awd.datatype.enum values argument', () => { + const values = EnumParser.extractAwdEnumValues('awd.datatype.enum(values="GET,POST,PUT,PATCH")'); + + expect(values).toEqual(['GET', 'POST', 'PUT', 'PATCH']); + }); + test('handles spaces in enum format', () => { const values = EnumParser.extractAwdEnumValues('enum( "First" , "Second" , "Third" )'); From 86c02560c437886f7682f8da56a1fafc4e5390fb Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 13:30:56 +0100 Subject: [PATCH 03/25] Keep enum params as raw comma lists --- .../generator/functional/schema-edit.spec.js | 4 ++-- .../src/tests/shared/help-model-builder.test.js | 1 + .../src/tests/utils/params-editor-modal.test.js | 14 +++++++++++--- packages/core/js/domain/domain-keywords.js | 1 + .../domain/datatype/enum-keyword-definition.js | 2 +- .../unit/domain/domain-command-metadata.test.js | 1 + .../unit/domain/domainKeywords.test.js | 6 ++++++ 7 files changed, 23 insertions(+), 6 deletions(-) diff --git a/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js b/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js index c475b2cb..2a515a78 100644 --- a/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js +++ b/apps/web/src/tests/browser/generator/functional/schema-edit.spec.js @@ -224,9 +224,9 @@ test.describe('Generator Schema Editing', () => { await expect(generatorPage.schema.row(0).locator('[data-action="pick-command"]')).toHaveText('datatype.enum'); await expect(generatorPage.schema.row(0).locator('input[data-field="params"]')).toHaveValue( - '("active,inactive,pending")' + '(active,inactive,pending)' ); - await expect.poll(async () => generatorPage.schema.getSchemaText()).toContain('enum("active,inactive,pending")'); + await expect.poll(async () => generatorPage.schema.getSchemaText()).toContain('enum(active,inactive,pending)'); expectNoPageErrors(pageErrors); }); diff --git a/packages/core-ui/src/tests/shared/help-model-builder.test.js b/packages/core-ui/src/tests/shared/help-model-builder.test.js index c0f3bf83..4b748427 100644 --- a/packages/core-ui/src/tests/shared/help-model-builder.test.js +++ b/packages/core-ui/src/tests/shared/help-model-builder.test.js @@ -110,6 +110,7 @@ describe('help-model-builder', () => { expect(model.params).toEqual([ expect.objectContaining({ name: 'values', + type: 'comma-separated list', variadic: true, optional: false, }), diff --git a/packages/core-ui/src/tests/utils/params-editor-modal.test.js b/packages/core-ui/src/tests/utils/params-editor-modal.test.js index 9460af43..61ead62c 100644 --- a/packages/core-ui/src/tests/utils/params-editor-modal.test.js +++ b/packages/core-ui/src/tests/utils/params-editor-modal.test.js @@ -199,7 +199,15 @@ describe('params editor modal', () => { commandLabel: 'datatype.enum', helpModel: { summary: 'Enum helper', - params: [{ name: 'values', type: 'comma-separated list', optional: false, example: 'active,inactive' }], + params: [ + { + name: 'values', + type: 'comma-separated list', + optional: false, + variadic: true, + example: 'active,inactive', + }, + ], }, initialParams: '', }); @@ -222,13 +230,13 @@ describe('params editor modal', () => { expect(error.textContent).toBe(''); expect(error.hidden).toBe(true); expect( - within(dialog).getByText('(values=active,inactive,pending)', { + within(dialog).getByText('(active,inactive,pending)', { selector: '[data-role="params-editor-preview"]', }) ).toBeTruthy(); fireEvent.click(applyButton); - await expect(promise).resolves.toBe('(values=active,inactive,pending)'); + await expect(promise).resolves.toBe('(active,inactive,pending)'); }); test('shows a warning when existing params cannot be mapped to the documented fields', async () => { diff --git a/packages/core/js/domain/domain-keywords.js b/packages/core/js/domain/domain-keywords.js index c61daa10..ac1555ca 100644 --- a/packages/core/js/domain/domain-keywords.js +++ b/packages/core/js/domain/domain-keywords.js @@ -276,6 +276,7 @@ function isTypeMatch(value, typeName) { for (const item of allowed) { if (/^[+-]?\d+(\.\d+)?$/.test(item) && typeof value === 'number' && Object.is(value, Number(item))) return true; if (item === 'string' && typeof value === 'string') return true; + if (item === 'comma-separated list' && typeof value === 'string') return true; if (item === 'integer' && typeof value === 'number' && Number.isInteger(value)) return true; if (item === 'number' && typeof value === 'number' && Number.isFinite(value)) return true; if (item === 'date' && value instanceof Date && !Number.isNaN(value.valueOf())) return true; diff --git a/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js b/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js index f1ee8b4f..eb2cd152 100644 --- a/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js +++ b/packages/core/js/keywords/domain/datatype/enum-keyword-definition.js @@ -51,7 +51,7 @@ const DATATYPE_ENUM_KEYWORD_DEFINITION = { args: [ { name: 'values', - type: 'string', + type: 'comma-separated list', required: true, optional: false, variadic: true, diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js index a30f5385..040c9d56 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-command-metadata.test.js @@ -27,6 +27,7 @@ describe('domain command metadata', () => { expect.arrayContaining([ expect.objectContaining({ name: 'values', + type: 'comma-separated list', variadic: true, optional: false, }), diff --git a/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js b/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js index 0902e842..5767c45b 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js @@ -436,6 +436,12 @@ describe('domain keyword arg validation', () => { }); }); + test('treats comma-separated list metadata as string-compatible for datatype.enum', () => { + const keyword = getDomainKeywordByAlias('datatype.enum'); + const result = validateDomainKeywordArgs(keyword, ['active,inactive,pending']); + expect(result).toEqual({ ok: true }); + }); + test('rejects reversed number bounds before generation', () => { const keyword = getDomainKeywordByAlias('number.int'); const result = validateDomainKeywordArgs(keyword, [47, 32]); From 8529bd70c5073cfabad315e89f0c6800d464c79a Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 13:47:53 +0100 Subject: [PATCH 04/25] Canonicalize enum aliases in schema output --- .../shared-schema-definition-view.test.js | 6 +-- .../core/js/data_generation/rulesParser.js | 4 +- .../js/data_generation/schema-conversion.js | 4 +- .../js/data_generation/utils/enumParser.js | 5 +++ .../schema-rules-adapter.test.js | 38 +++++++++++++++++++ 5 files changed, 50 insertions(+), 7 deletions(-) diff --git a/packages/core-ui/src/tests/shared/shared-schema-definition-view.test.js b/packages/core-ui/src/tests/shared/shared-schema-definition-view.test.js index 4d011787..897a42bd 100644 --- a/packages/core-ui/src/tests/shared/shared-schema-definition-view.test.js +++ b/packages/core-ui/src/tests/shared/shared-schema-definition-view.test.js @@ -108,7 +108,7 @@ describe('shared-schema-definition view', () => { helpModel: { heading: 'datatype.enum', summary: 'Enum helper', - params: [{ name: 'values', type: 'comma-separated list', optional: false }], + params: [{ name: 'values', type: 'comma-separated list', optional: false, variadic: true }], }, }, ]; @@ -775,8 +775,8 @@ Authorization Token await Promise.resolve(); await Promise.resolve(); - expect(document.querySelector('[data-field="params"]').value).toBe('(values=active,inactive,pending)'); - expect(component.getSchemaText()).toContain('enum(values=active,inactive,pending)'); + expect(document.querySelector('[data-field="params"]').value).toBe('(active,inactive,pending)'); + expect(component.getSchemaText()).toContain('enum(active,inactive,pending)'); }); test('destroy clears pending validation timers and a second mount works in the same root', () => { diff --git a/packages/core/js/data_generation/rulesParser.js b/packages/core/js/data_generation/rulesParser.js index 3e23a2a2..5ce8d5d4 100644 --- a/packages/core/js/data_generation/rulesParser.js +++ b/packages/core/js/data_generation/rulesParser.js @@ -239,7 +239,7 @@ export class RulesParser { const rows = Array.isArray(rules) ? rules.map((rule) => ({ name: String(rule?.name ?? ''), - rule: EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + rule: EnumParser.isCanonicalSchemaSerializableEnumRuleSpec(rule?.ruleSpec) ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) : String(rule?.ruleSpec ?? ''), })) @@ -293,7 +293,7 @@ export class RulesParser { outputLines.push(String(rule?.name ?? '')); outputLines.push( - EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + EnumParser.isCanonicalSchemaSerializableEnumRuleSpec(rule?.ruleSpec) ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) : String(rule?.ruleSpec ?? '') ); diff --git a/packages/core/js/data_generation/schema-conversion.js b/packages/core/js/data_generation/schema-conversion.js index 30fa8590..d1e9afaf 100644 --- a/packages/core/js/data_generation/schema-conversion.js +++ b/packages/core/js/data_generation/schema-conversion.js @@ -13,7 +13,7 @@ function cloneConstraintAst(ast) { function cloneRule(rule) { const rawRuleSpec = String(rule?.ruleSpec ?? ''); - const normalizedRuleSpec = EnumParser.isCanonicalDomainEnumRuleSpec(rawRuleSpec) + const normalizedRuleSpec = EnumParser.isCanonicalSchemaSerializableEnumRuleSpec(rawRuleSpec) ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rawRuleSpec) : rawRuleSpec; return { @@ -81,7 +81,7 @@ function renderSpecFromRulesWithTokens(rules, constraints, schemaTokens) { const rows = Array.isArray(rules) ? rules.map((rule) => ({ name: String(rule?.name ?? ''), - rule: EnumParser.isCanonicalDomainEnumRuleSpec(rule?.ruleSpec) + rule: EnumParser.isCanonicalSchemaSerializableEnumRuleSpec(rule?.ruleSpec) ? EnumParser.normalizeToCanonicalSchemaRuleSpec(rule?.ruleSpec) : String(rule?.ruleSpec ?? ''), })) diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index c85e7ad0..3770455a 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -62,6 +62,11 @@ export class EnumParser { return /^datatype\.enum\s*\(/i.test(String(ruleSpec || '').trim()); } + static isCanonicalSchemaSerializableEnumRuleSpec(ruleSpec) { + const spec = String(ruleSpec || '').trim(); + return this.isCanonicalDomainEnumRuleSpec(spec) || this.isAwdEnumFormat(spec) || this.isShorthandEnumFormat(spec); + } + static isEnumLikeRule(rule = {}) { const ruleType = String(rule?.type || '') .trim() diff --git a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js index d59ed4fa..b842c288 100644 --- a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js +++ b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js @@ -204,6 +204,44 @@ Status: person.jobTitle`; expect(rendered.text).toBe(schemaText); }); + test('canonicalizes legacy awd datatype enum schema text when round-tripping', () => { + const parsed = schemaTextToDataRules({ + schemaText: 'Status\nawd.datatype.enum("active","inactive","pending")', + faker, + RandExp, + }); + + expect(parsed.errors).toEqual([]); + expect(parsed.dataRules).toEqual([ + expect.objectContaining({ + name: 'Status', + ruleSpec: 'enum(active,inactive,pending)', + }), + ]); + + const rendered = dataRulesToSchemaText({ + dataRules: parsed.dataRules, + schemaTokens: parsed.schemaTokens, + }); + + expect(rendered.text).toBe('Status\nenum(active,inactive,pending)'); + }); + + test('canonicalizes legacy awd datatype enum data rules when rendering schema text', () => { + const rendered = dataRulesToSchemaText({ + dataRules: [ + { + name: 'Status', + ruleSpec: 'awd.datatype.enum("active","inactive","pending")', + comments: '', + }, + ], + }); + + expect(rendered.errors).toEqual([]); + expect(rendered.text).toBe('Status\nenum(active,inactive,pending)'); + }); + test('prefers schema tokens when rendering so blank lines are preserved', () => { const rendered = dataRulesToSchemaText({ dataRules: [ From 29c9a929f40175bc2934562e18a02d2c1ce4d421 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 14:01:23 +0100 Subject: [PATCH 05/25] Canonicalize AWD enum domain rows --- .../js/data_generation/schema-rules-adapter.js | 6 +++++- .../schema-rules-adapter.test.js | 18 ++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/packages/core/js/data_generation/schema-rules-adapter.js b/packages/core/js/data_generation/schema-rules-adapter.js index 6c031bc0..581e8897 100644 --- a/packages/core/js/data_generation/schema-rules-adapter.js +++ b/packages/core/js/data_generation/schema-rules-adapter.js @@ -87,12 +87,16 @@ function isDomainHelpersCommand(commandValue) { ); } +function isDomainEnumCommand(commandValue) { + return /^(?:datatype\.enum|awd\.datatype\.enum)$/i.test(String(commandValue || '').trim()); +} + function buildRuleSpecFromRow(row) { const sourceType = normaliseSourceType(row?.sourceType); if (sourceType === SOURCE_TYPE_FAKER || sourceType === SOURCE_TYPE_DOMAIN) { const command = normaliseFakerCommand(row?.command); const params = String(row?.params ?? '').trim(); - if (sourceType === SOURCE_TYPE_DOMAIN && command.toLowerCase() === 'datatype.enum') { + if (sourceType === SOURCE_TYPE_DOMAIN && isDomainEnumCommand(command)) { return buildEnumRuleSpec(params); } return `${command}${params}`; diff --git a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js index b842c288..982f9367 100644 --- a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js +++ b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js @@ -460,6 +460,24 @@ IF [Ticket] = "ABC-1234" THEN [Ticket] <> "XYZ-9999" ENDIF`, expect(result.dataRules).toEqual([{ name: 'A', ruleSpec: 'number.int(1,10)', comments: '', type: 'domain' }]); }); + test('canonicalizes awd datatype enum domain schema rows to enum rule specs', () => { + const result = schemaRowsToDataRules({ + schemaRows: [ + { + name: 'Status', + sourceType: 'domain', + command: 'awd.datatype.enum', + params: '(active,inactive,pending)', + }, + ], + }); + + expect(result.errors).toEqual([]); + expect(result.dataRules).toEqual([ + { name: 'Status', ruleSpec: 'enum(active,inactive,pending)', comments: '', type: 'domain' }, + ]); + }); + test('ignores fully blank rows when at least one real schema row exists', () => { const result = schemaRowsToDataRules({ schemaRows: [ From fbb452e0c5d67afd5d18d02d88fdf812953c067e Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 14:16:03 +0100 Subject: [PATCH 06/25] Normalize declared enum rules during compile --- .../js/data_generation/testDataRulesCompiler.js | 7 +++++++ .../data_generation/enum-surface-parity.test.js | 16 ++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/packages/core/js/data_generation/testDataRulesCompiler.js b/packages/core/js/data_generation/testDataRulesCompiler.js index 2576e806..073e0b85 100644 --- a/packages/core/js/data_generation/testDataRulesCompiler.js +++ b/packages/core/js/data_generation/testDataRulesCompiler.js @@ -142,6 +142,13 @@ export class TestDataRulesCompiler { if (rule.type === 'regex' && this.isRegexPattern(rule.ruleSpec)) { rule.ruleSpec = this.extractRegexValue(rule.ruleSpec); } + if (rule.type === 'enum') { + enumValidator.validate(rule); + if (enumValidator.isValid()) { + rule.ruleSpec = EnumParser.normalizeToCanonicalDomainRuleSpec(rule.ruleSpec); + rule.type = 'domain'; + } + } } } }); diff --git a/packages/core/src/tests/data_generation/enum-surface-parity.test.js b/packages/core/src/tests/data_generation/enum-surface-parity.test.js index 14923cbf..808f40cd 100644 --- a/packages/core/src/tests/data_generation/enum-surface-parity.test.js +++ b/packages/core/src/tests/data_generation/enum-surface-parity.test.js @@ -73,6 +73,22 @@ describe('enum surface parity', () => { } ); + test.each(PUBLIC_ENUM_SURFACE_CASES)( + 'compiler normalizes predeclared enum $label to the canonical domain enum model', + ({ ruleSpec }) => { + const compiler = new TestDataRulesCompiler(faker, RandExp); + const rules = [new TestDataRule('Status', ruleSpec)]; + rules[0].type = 'enum'; + + compiler.compile(rules); + compiler.validate(); + + expect(rules[0].type).toBe('domain'); + expect(rules[0].ruleSpec).toBe('datatype.enum("active", "inactive", "pending")'); + expect(compiler.isValid()).toBe(true); + } + ); + test.each(PUBLIC_ENUM_SURFACE_CASES)( 'generateFromTextSpec evaluates public $label using the same enum value selection', ({ ruleSpec }) => { From 77cdbd1016b3969fde2ef0c8dc4a923ac0e3bcbb Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 14:32:49 +0100 Subject: [PATCH 07/25] Anchor enum invocation detection --- .../js/data_generation/utils/enumParser.js | 10 ++++--- .../schema-rules-adapter.test.js | 26 +++++++++++++++++++ .../unit/enum/enumTestDataGenerator.test.js | 8 ++++++ 3 files changed, 41 insertions(+), 3 deletions(-) diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index 3770455a..a087ec65 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -25,7 +25,11 @@ export class EnumParser { * @returns {boolean} True if using function format */ static isAwdEnumFormat(ruleSpec) { - return /^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/.test(ruleSpec); + return /^(enum|datatype\.enum|awd\.datatype\.enum)\s*\([\s\S]*\)$/i.test(String(ruleSpec || '').trim()); + } + + static hasAwdEnumInvocationPrefix(ruleSpec) { + return /^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/i.test(String(ruleSpec || '').trim()); } static serializeDomainEnumValue(value) { @@ -59,7 +63,7 @@ export class EnumParser { } static isCanonicalDomainEnumRuleSpec(ruleSpec) { - return /^datatype\.enum\s*\(/i.test(String(ruleSpec || '').trim()); + return /^datatype\.enum\s*\(\s*[\s\S]+\s*\)$/i.test(String(ruleSpec || '').trim()); } static isCanonicalSchemaSerializableEnumRuleSpec(ruleSpec) { @@ -149,7 +153,7 @@ export class EnumParser { const spec = String(ruleSpec || '').trim(); // Check if it's a formal enum function format - if (this.isAwdEnumFormat(spec)) { + if (this.hasAwdEnumInvocationPrefix(spec)) { return this.extractAwdEnumValues(spec); } diff --git a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js index 982f9367..cb16ef5f 100644 --- a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js +++ b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js @@ -369,6 +369,32 @@ IF [Ticket] = "ABC-1234" THEN [Ticket] <> "XYZ-9999" ENDIF`, ); }); + test('keeps malformed datatype enum commands with trailing text out of enum constraint parsing', () => { + const parsed = schemaTextToDataRules({ + schemaText: `Status +datatype.enum("open") trailing + +IF [Status] = "closed" THEN [Status] = "open" ENDIF`, + faker, + RandExp, + }); + + expect(parsed.dataRules).toEqual([]); + expect(() => parsed.errors).not.toThrow(); + expect(parsed.errors).not.toContainEqual( + expect.objectContaining({ + code: 'invalid_constraint_enum_value', + parameterName: 'Status', + }) + ); + expect(parsed.errors).toContainEqual( + expect.objectContaining({ + code: 'invalid_constraint_literal_value', + parameterName: 'Status', + }) + ); + }); + test('returns blank explicit regex text as a regex validation error when requested', () => { const result = schemaTextToDataRules({ schemaText: 'Code\nregex("")', diff --git a/packages/core/src/tests/data_generation/unit/enum/enumTestDataGenerator.test.js b/packages/core/src/tests/data_generation/unit/enum/enumTestDataGenerator.test.js index 2a144895..9568ae09 100644 --- a/packages/core/src/tests/data_generation/unit/enum/enumTestDataGenerator.test.js +++ b/packages/core/src/tests/data_generation/unit/enum/enumTestDataGenerator.test.js @@ -106,7 +106,15 @@ describe('EnumTestDataGenerator', () => { expect(EnumParser.isAwdEnumFormat('enum("A", "B")')).toBe(true); expect(EnumParser.isAwdEnumFormat('datatype.enum("A", "B")')).toBe(true); expect(EnumParser.isAwdEnumFormat('awd.datatype.enum("A", "B")')).toBe(true); + expect(EnumParser.isAwdEnumFormat('datatype.enum()')).toBe(true); + expect(EnumParser.isAwdEnumFormat('datatype.enum("A") trailing')).toBe(false); expect(EnumParser.isAwdEnumFormat('A,B,C')).toBe(false); }); + + test('detects only complete canonical domain enum invocations', () => { + expect(EnumParser.isCanonicalDomainEnumRuleSpec('datatype.enum("A", "B")')).toBe(true); + expect(EnumParser.isCanonicalDomainEnumRuleSpec('datatype.enum("A") trailing')).toBe(false); + expect(EnumParser.isCanonicalDomainEnumRuleSpec('datatype.enum()')).toBe(false); + }); }); }); From 363d2d6f80ba032ac854a496b0c675f673c95602 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 14:48:24 +0100 Subject: [PATCH 08/25] Parse function-shaped datatype enum args --- .../keywords/domain/datatype/datatype-enum.js | 2 +- .../unit/domain/domainKeywords.test.js | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/packages/core/js/keywords/domain/datatype/datatype-enum.js b/packages/core/js/keywords/domain/datatype/datatype-enum.js index 9e1c62d6..43072274 100644 --- a/packages/core/js/keywords/domain/datatype/datatype-enum.js +++ b/packages/core/js/keywords/domain/datatype/datatype-enum.js @@ -9,7 +9,7 @@ function normalizeDatatypeEnumArgs(args = []) { } try { - return EnumParser.extractEnumValues(`enum(${singleValue})`); + return EnumParser.extractEnumValues(singleValue); } catch { return [singleValue]; } diff --git a/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js b/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js index 5767c45b..95a13b46 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domainKeywords.test.js @@ -400,6 +400,19 @@ describe('domain keyword delegation', () => { expect(executeDomainKeyword('autoIncrement.sequence', { args: [], autoIncrementState: state })).toBe(2); }); + test('executes datatype.enum from a single function-shaped string argument', () => { + const originalRandom = Math.random; + Math.random = () => 0; + + try { + expect(executeDomainKeyword('datatype.enum', { args: ['enum(active,inactive)'] })).toBe('active'); + expect(executeDomainKeyword('datatype.enum', { args: ['datatype.enum(active,inactive)'] })).toBe('active'); + expect(executeDomainKeyword('datatype.enum', { args: ['awd.datatype.enum(active,inactive)'] })).toBe('active'); + } finally { + Math.random = originalRandom; + } + }); + test('allows custom literal delegate to override built-in behavior', () => { const result = executeDomainKeyword('literal.value', { customDelegates: { @@ -442,6 +455,14 @@ describe('domain keyword arg validation', () => { expect(result).toEqual({ ok: true }); }); + test('treats single function-shaped enum args as enum value lists for datatype.enum', () => { + const keyword = getDomainKeywordByAlias('datatype.enum'); + + expect(validateDomainKeywordArgs(keyword, ['enum(active,inactive)'])).toEqual({ ok: true }); + expect(validateDomainKeywordArgs(keyword, ['datatype.enum(active,inactive)'])).toEqual({ ok: true }); + expect(validateDomainKeywordArgs(keyword, ['awd.datatype.enum(active,inactive)'])).toEqual({ ok: true }); + }); + test('rejects reversed number bounds before generation', () => { const keyword = getDomainKeywordByAlias('number.int'); const result = validateDomainKeywordArgs(keyword, [47, 32]); From ce9d0fcaa46d4ff580794ddb87f0106d12f79e18 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 15:03:59 +0100 Subject: [PATCH 09/25] Cover AWD enum token rendering --- .../tests/data_generation/unit/rulesParser.test.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/packages/core/src/tests/data_generation/unit/rulesParser.test.js b/packages/core/src/tests/data_generation/unit/rulesParser.test.js index 519525a3..98f30021 100644 --- a/packages/core/src/tests/data_generation/unit/rulesParser.test.js +++ b/packages/core/src/tests/data_generation/unit/rulesParser.test.js @@ -140,6 +140,19 @@ Status: person.jobTitle`; expect(parser.renderSpecFromRulesWithTokens(parser.testDataRules.rules)).toBe(inputText); }); + test('canonicalizes legacy awd datatype enum rules when rebuilding from parsed tokens', () => { + const inputText = `Priority +enum(high,medium,low) +Status +enum(active,inactive)`; + + const parser = new RulesParser(faker, RandExp); + parser.parseText(inputText); + parser.testDataRules.rules[1].ruleSpec = 'awd.datatype.enum("active","inactive")'; + + expect(parser.renderSpecFromRulesWithTokens(parser.testDataRules.rules)).toBe(inputText); + }); + test('preserves authored inline separator spacing when rebuilding from parsed tokens', () => { const inputText = `Name:person.fullName Role: enum(admin,user)`; From 451de73062b05ffb20f5e6fa46bf9b52e69ef4b1 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 15:19:40 +0100 Subject: [PATCH 10/25] Remove stale matrix report generator --- ...frontend-ui-matrix-rationalization-plan.md | 2 +- .../app-schema-interaction-matrix.test.js | 2 +- ...enerator-schema-interaction-matrix.test.js | 2 +- .../schema-interaction-runtime-matrix.test.js | 2 +- ...> schema-interaction-matrix-formatting.js} | 0 .../generate-schema-interaction-matrix.mjs | 344 ------------------ 6 files changed, 4 insertions(+), 348 deletions(-) rename packages/core-ui/src/tests/interaction/matrix/support/{schema-interaction-matrix-report.js => schema-interaction-matrix-formatting.js} (100%) delete mode 100644 scripts/generate-schema-interaction-matrix.mjs diff --git a/docs/frontend-ui-matrix-rationalization-plan.md b/docs/frontend-ui-matrix-rationalization-plan.md index fe5bf747..e190783e 100644 --- a/docs/frontend-ui-matrix-rationalization-plan.md +++ b/docs/frontend-ui-matrix-rationalization-plan.md @@ -281,4 +281,4 @@ That path removes the most obvious duplication first while preserving the highes - one representative domain/options flow - pairwise wiring coverage - The broad app-vs-generator parity sweep, parity fixture writer, parity fixture JSON, and static matrix summary artifact have been removed. -- The retained matrix report helper only formats chunk labels and command summaries for the active runtime and smoke suites. +- The retained matrix formatting helper only formats chunk labels and command summaries for the active runtime and smoke suites. diff --git a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js index 0c8c5311..ab893c09 100644 --- a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js @@ -18,7 +18,7 @@ import { jest } from '@jest/globals'; import { createAppTestDataInteractionHarness } from './support/app-test-data-interaction-harness.js'; import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; -import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; +import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-formatting.js'; import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; const scenarioSource = 'buildUiInteractionScenarios()'; diff --git a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js index de2e5b2e..38bc7b1d 100644 --- a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js @@ -18,7 +18,7 @@ import { jest } from '@jest/globals'; import { createGeneratorInteractionHarness } from './support/generator-interaction-harness.js'; import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; -import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; +import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-formatting.js'; import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; const scenarioSource = 'buildUiInteractionScenarios()'; diff --git a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js index bef86dea..3e5384f6 100644 --- a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-runtime-matrix.test.js @@ -28,7 +28,7 @@ import { buildExpectedSchemaText, buildRuntimeInteractionScenarios, } from './support/schema-interaction-scenario-builder.js'; -import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; +import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-formatting.js'; import { assertScenarioDataQuality } from '../support/generated-value-quality.js'; import { createConfiguredGeneratorFromSchemaRows, diff --git a/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-formatting.js similarity index 100% rename from packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js rename to packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-formatting.js diff --git a/scripts/generate-schema-interaction-matrix.mjs b/scripts/generate-schema-interaction-matrix.mjs deleted file mode 100644 index a339d368..00000000 --- a/scripts/generate-schema-interaction-matrix.mjs +++ /dev/null @@ -1,344 +0,0 @@ -import { existsSync, readFileSync, writeFileSync } from 'node:fs'; -import { faker } from '@faker-js/faker'; -import RandExp from 'randexp'; -import { TestDataGenerator } from '../packages/core/js/data_generation/testDataGenerator.js'; -import { GenericDataTable } from '../packages/core/js/data_formats/generic-data-table.js'; -import { Exporter } from '../packages/core/js/grid/exporter.js'; -import { - schemaRowsToDataRules, - dataRulesToSchemaText, -} from '../packages/core/js/data_generation/schema-rules-adapter.js'; -import { - buildSchemaInteractionScenarios, - buildUiInteractionScenarios, -} from '../packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-scenario-builder.js'; -import { renderMatrixSummaryMarkdown } from '../packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js'; -import { getFakerCommandHelp } from '../packages/core/js/faker/faker-helper-keyword-definitions.js'; -import { getDomainCommandHelp } from '../packages/core-ui/js/gui_components/shared/domain-command-help-metadata.js'; -import { - createConfiguredGeneratorFromSchemaRows, - createPreviewDataTable, - createPairwiseDataTable, -} from '../packages/core-ui/js/gui_components/shared/test-data/generation/generation-controller.js'; -import { - validateSchemaRows, - schemaRowsToSpec, -} from '../packages/core-ui/js/gui_components/shared/test-data/schema/schema-editor-core.js'; -import { - buildRuleSpecFromSchemaRow, - extractLiteralValueFromRuleSpec, - extractRegexValueFromRuleSpec, - SOURCE_TYPE_FAKER, - SOURCE_TYPE_DOMAIN, - SOURCE_TYPE_LITERAL, - SOURCE_TYPE_ENUM, - SOURCE_TYPE_REGEX, -} from '../packages/core-ui/js/gui_components/shared/schema-row-rule-mapper.js'; -import { PairwiseTestDataGenerator } from '../packages/core/js/data_generation/n-wise/pairwiseTestDataGenerator.js'; - -const generatedAt = new Date().toISOString(); -const coverageScenarios = buildSchemaInteractionScenarios(); -const previewDataByScenarioId = buildPreviewDataByScenarioId(coverageScenarios); -const runtimeScenarios = coverageScenarios.filter( - (scenario) => previewDataByScenarioId[scenario.id]?.status === 'generated' -); -const rawUiScenarios = buildUiInteractionScenarios().filter((scenario) => - runtimeScenarios.some((runtimeScenario) => runtimeScenario.id === scenario.id) -); -const uiParityByScenarioId = loadUiParityByScenarioId(); -const uiScenarios = rawUiScenarios.map((scenario) => ({ - ...scenario, - parityMode: uiParityByScenarioId[scenario.id]?.mode || 'structural', - exactPreviewParity: Boolean(uiParityByScenarioId[scenario.id]?.exactPreviewParity), - structuralParity: uiParityByScenarioId[scenario.id]?.structuralParity !== false, -})); - -const payload = { - generatedAt, - coverageScenarios, - runtimeScenarios, - uiScenarios, - uiParityByScenarioId, -}; - -writeFileSync( - './packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix.json', - JSON.stringify(payload, null, 2) -); - -writeFileSync( - './packages/core-ui/src/tests/interaction/matrix/fixtures/schema-interaction-matrix-summary.md', - renderMatrixSummaryMarkdown({ - generatedAt, - coverageScenarios, - runtimeScenarios, - uiScenarios, - previewDataByScenarioId, - uiParityByScenarioId, - }) -); - -function loadUiParityByScenarioId() { - const parityFixturePath = './packages/core-ui/src/tests/interaction/matrix/fixtures/ui-scenario-parity.json'; - if (!existsSync(parityFixturePath)) { - return {}; - } - return JSON.parse(readFileSync(parityFixturePath, 'utf8')); -} - -function hashScenarioId(value) { - let hash = 0; - const text = String(value || ''); - for (let index = 0; index < text.length; index += 1) { - hash = (hash * 31 + text.charCodeAt(index)) >>> 0; - } - return hash || 1; -} - -function createSeededRandom(seed) { - let state = seed >>> 0; - return () => { - state = (1664525 * state + 1013904223) >>> 0; - return state / 0x100000000; - }; -} - -function withDeterministicRandom(seed, callback) { - const previousRandom = Math.random; - Math.random = createSeededRandom(seed); - faker.seed(seed); - try { - return callback(); - } finally { - Math.random = previousRandom; - } -} - -function buildPreviewDataByScenarioId(scenarios) { - const previewData = {}; - - scenarios.forEach((scenario) => { - const executionStatus = determineExecutionStatus(scenario); - if (executionStatus !== 'generated') { - previewData[scenario.id] = { status: executionStatus }; - return; - } - - const seed = hashScenarioId(scenario.id); - previewData[scenario.id] = withDeterministicRandom(seed, () => { - try { - const configured = createConfiguredGeneratorFromSchemaRows({ - schemaRows: scenario.rows, - validateSchemaRows: (rows) => validateSchemaRows({ schemaRows: rows, schemaRowsToDataRules }), - schemaRowsToSpec: (rows) => - schemaRowsToSpec({ - schemaRows: rows, - schemaRowsToDataRules, - dataRulesToSchemaText, - }), - TestDataGeneratorClass: TestDataGenerator, - faker, - RandExp, - buildRuleSpecFromSchemaRow, - extractLiteralValueFromRuleSpec, - extractRegexValueFromRuleSpec, - SOURCE_TYPE_FAKER, - SOURCE_TYPE_DOMAIN, - SOURCE_TYPE_LITERAL, - SOURCE_TYPE_ENUM, - SOURCE_TYPE_REGEX, - }); - - if (configured.errors.length > 0) { - return { error: configured.errors.map((error) => error.message || JSON.stringify(error)).join('; ') }; - } - - const previewTable = createPreviewDataTable({ - rowCount: scenario.pairwiseEligible ? 2 : 1, - generator: configured.generator, - GenericDataTableClass: GenericDataTable, - }); - - const exporter = new Exporter({ - getGridAsGenericDataTable: () => previewTable, - getHeadersFromGrid: () => previewTable.getHeaders(), - }); - - const previewEntry = { - status: 'generated', - csv: exporter.getDataTableAs('csv', previewTable) || '', - }; - - if (scenario.pairwiseEligible) { - const pairwiseTable = createPairwiseDataTable({ - generator: configured.generator, - PairwiseTestDataGeneratorClass: PairwiseTestDataGenerator, - GenericDataTableClass: GenericDataTable, - faker, - RandExp, - }); - const pairwiseExporter = new Exporter({ - getGridAsGenericDataTable: () => pairwiseTable, - getHeadersFromGrid: () => pairwiseTable.getHeaders(), - }); - previewEntry.pairwiseCsv = pairwiseExporter.getDataTableAs('csv', pairwiseTable) || ''; - } - - return previewEntry; - } catch (error) { - return { status: 'generated', error: error?.message || String(error) }; - } - }); - }); - - return previewData; -} - -function determineExecutionStatus(scenario) { - if (!scenario) { - return 'review-only'; - } - - if (scenario.sourceType === 'domain') { - return canGenerateCleanPreview(scenario) ? 'generated' : 'non-executable'; - } - - if (scenario.sourceType === 'faker') { - return canGenerateCleanPreview(scenario) ? 'generated' : 'non-executable'; - } - - if (scenario.origins.includes('custom') || scenario.origins.includes('example')) { - return 'generated'; - } - - return scenario.origins.includes('base') ? 'generated' : 'non-executable'; -} - -function canGenerateCleanPreview(scenario) { - try { - const configured = createConfiguredGeneratorFromSchemaRows({ - schemaRows: scenario.rows, - validateSchemaRows: (rows) => validateSchemaRows({ schemaRows: rows, schemaRowsToDataRules }), - schemaRowsToSpec: (rows) => - schemaRowsToSpec({ - schemaRows: rows, - schemaRowsToDataRules, - dataRulesToSchemaText, - }), - TestDataGeneratorClass: TestDataGenerator, - faker, - RandExp, - buildRuleSpecFromSchemaRow, - extractLiteralValueFromRuleSpec, - extractRegexValueFromRuleSpec, - SOURCE_TYPE_FAKER, - SOURCE_TYPE_DOMAIN, - SOURCE_TYPE_LITERAL, - SOURCE_TYPE_ENUM, - SOURCE_TYPE_REGEX, - }); - if (configured.errors.length > 0) { - return false; - } - - const previewTable = createPreviewDataTable({ - rowCount: scenario.pairwiseEligible ? 2 : 1, - generator: configured.generator, - GenericDataTableClass: GenericDataTable, - }); - const exporter = new Exporter({ - getGridAsGenericDataTable: () => previewTable, - getHeadersFromGrid: () => previewTable.getHeaders(), - }); - const csvText = exporter.getDataTableAs('csv', previewTable) || ''; - - if (containsErrorIndicators(csvText)) { - return false; - } - - return scenario.rows.every((row, columnIndex) => rowValueLooksValid(row, previewTable.getCell(0, columnIndex))); - } catch { - return false; - } -} - -function containsErrorIndicators(value) { - const text = - typeof value === 'string' ? value : typeof value === 'bigint' ? value.toString() : JSON.stringify(value ?? ''); - return [ - /\*\*ERROR\*\*/i, - /Invalid Faker API Call/i, - /Could not find Faker API Command/i, - /Unsafe faker rule syntax/i, - /\bException\b/i, - ].some((pattern) => pattern.test(String(text || ''))); -} - -function inferValueType(value) { - if (value === null || typeof value === 'undefined') return 'unknown'; - if (typeof value === 'bigint') return 'number'; - if (Array.isArray(value)) return 'array'; - if (typeof value === 'boolean') return 'boolean'; - if (typeof value === 'number') return Number.isFinite(value) ? 'number' : 'unknown'; - if (typeof value === 'object') return 'object'; - - const text = String(value).trim(); - if (text === 'true' || text === 'false') return 'boolean'; - if (text.startsWith('[') && text.endsWith(']')) return 'array'; - if (text.startsWith('{') && text.endsWith('}')) return 'object'; - if (/^"?\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z"?$/.test(text)) return 'date'; - if (/^[+-]?\d+(\.\d+)?$/.test(text)) return 'number'; - return 'string'; -} - -function rowValueLooksValid(row, value) { - if (containsErrorIndicators(value)) { - return false; - } - - if (row?.sourceType === 'enum') { - return String(row?.value || '') - .split(',') - .map((item) => item.trim()) - .filter(Boolean) - .includes(String(value)); - } - - if (row?.sourceType === 'regex' && String(row?.value || '').length > 0) { - return new RegExp(String(row.value)).test(String(value)); - } - - if (row?.sourceType === 'literal' && String(row?.value || '').length > 0) { - return String(value) === String(row.value); - } - - if (row?.sourceType === 'domain' && row?.command === 'string.counterString') { - return typeof value === 'string' && value.length > 0; - } - - const allowedTypes = getAllowedTypesForRow(row); - if (allowedTypes.includes('string') || allowedTypes.includes('unknown')) { - return true; - } - return allowedTypes.includes(inferValueType(value)); -} - -function getAllowedTypesForRow(row) { - if (row?.sourceType === 'faker') { - return String(getFakerCommandHelp(row.command)?.returnType || 'string') - .split('|') - .map((entry) => entry.trim()) - .map((entry) => (entry === 'integer' ? 'number' : entry)) - .filter(Boolean); - } - - if (row?.sourceType === 'domain') { - return String(getDomainCommandHelp(row.command)?.returnType || 'string') - .split('|') - .map((entry) => entry.trim()) - .map((entry) => (entry === 'integer' ? 'number' : entry)) - .filter(Boolean); - } - - return ['string']; -} From bc06cd7f5f70f83b53405d7195586c63a6372eca Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 15:36:12 +0100 Subject: [PATCH 11/25] Select matrix smoke scenarios semantically --- ...frontend-ui-matrix-rationalization-plan.md | 12 +++--- .../app-schema-interaction-matrix.test.js | 20 ++------- ...enerator-schema-interaction-matrix.test.js | 20 ++------- ...chema-interaction-scenario-builder.test.js | 27 ++++++++++++ .../support/scenario-fixture-identity.js | 10 ----- .../schema-interaction-scenario-builder.js | 43 +++++++++++++++++++ 6 files changed, 82 insertions(+), 50 deletions(-) delete mode 100644 packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js diff --git a/docs/frontend-ui-matrix-rationalization-plan.md b/docs/frontend-ui-matrix-rationalization-plan.md index e190783e..d7c239eb 100644 --- a/docs/frontend-ui-matrix-rationalization-plan.md +++ b/docs/frontend-ui-matrix-rationalization-plan.md @@ -268,12 +268,12 @@ That path removes the most obvious duplication first while preserving the highes - The runtime matrix remains the broad generated safety net. - `app-schema-interaction-matrix.test.js` and `generator-schema-interaction-matrix.test.js` now run a page-wiring smoke subset instead of the full shared `uiScenarios` fixture. -- The retained page-shell smoke scenarios are: - - `custom-literal-base` - - `custom-regex-base` - - `faker-helpers-arrayElement-base` - - `domain-commerce-price-example-1` - - `custom-enum-pairwise` +- The retained page-shell smoke scenarios are selected by semantic coverage lane: + - custom literal + - custom regex + - faker `helpers.arrayElement` + - domain `commerce.price` example with guided params + - enum pairwise - The smoke subset keeps: - simple schema editing and generate wiring - regex/text synchronization coverage diff --git a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js index ab893c09..017395f7 100644 --- a/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/app-schema-interaction-matrix.test.js @@ -17,25 +17,11 @@ import { jest } from '@jest/globals'; import { createAppTestDataInteractionHarness } from './support/app-test-data-interaction-harness.js'; -import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; +import { buildPageWiringSmokeInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-formatting.js'; -import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; -const scenarioSource = 'buildUiInteractionScenarios()'; -const SMOKE_SCENARIO_IDS = [ - 'custom-literal-base', - 'custom-regex-base', - 'faker-helpers-arrayElement-base', - 'domain-commerce-price-example-1', - 'custom-enum-pairwise', -]; -const allScenarios = buildUiInteractionScenarios(); -const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => findScenarioByLogicalId(allScenarios, scenarioId)).filter( - Boolean -); -if (scenarios.length !== SMOKE_SCENARIO_IDS.length) { - throw new Error('app schema interaction smoke subset is missing fixture scenarios'); -} +const scenarioSource = 'buildPageWiringSmokeInteractionScenarios()'; +const scenarios = buildPageWiringSmokeInteractionScenarios(); const CHUNK_SIZE = 20; const chunkDescriptors = buildChunkDescriptors(scenarios, CHUNK_SIZE); diff --git a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js index 38bc7b1d..bb5acd43 100644 --- a/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/generator-schema-interaction-matrix.test.js @@ -17,25 +17,11 @@ import { jest } from '@jest/globals'; import { createGeneratorInteractionHarness } from './support/generator-interaction-harness.js'; -import { buildUiInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; +import { buildPageWiringSmokeInteractionScenarios } from './support/schema-interaction-scenario-builder.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-formatting.js'; -import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; -const scenarioSource = 'buildUiInteractionScenarios()'; -const SMOKE_SCENARIO_IDS = [ - 'custom-literal-base', - 'custom-regex-base', - 'faker-helpers-arrayElement-base', - 'domain-commerce-price-example-1', - 'custom-enum-pairwise', -]; -const allScenarios = buildUiInteractionScenarios(); -const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => findScenarioByLogicalId(allScenarios, scenarioId)).filter( - Boolean -); -if (scenarios.length !== SMOKE_SCENARIO_IDS.length) { - throw new Error('generator schema interaction smoke subset is missing fixture scenarios'); -} +const scenarioSource = 'buildPageWiringSmokeInteractionScenarios()'; +const scenarios = buildPageWiringSmokeInteractionScenarios(); const CHUNK_SIZE = 20; const chunkDescriptors = buildChunkDescriptors(scenarios, CHUNK_SIZE); diff --git a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-scenario-builder.test.js b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-scenario-builder.test.js index e2d332b7..d757b5e7 100644 --- a/packages/core-ui/src/tests/interaction/matrix/schema-interaction-scenario-builder.test.js +++ b/packages/core-ui/src/tests/interaction/matrix/schema-interaction-scenario-builder.test.js @@ -10,6 +10,7 @@ import { buildScenarioCoverageSummary, buildRuntimeInteractionScenarios, buildUiInteractionScenarios, + buildPageWiringSmokeInteractionScenarios, CUSTOM_SOURCE_TYPES, FAKER_INTERACTION_COMMANDS, getScenarioExecutionStatus, @@ -181,4 +182,30 @@ describe('schema interaction scenario builder', () => { expect(runtimeScenarios.some((scenario) => scenario.id === 'custom-regex-empty')).toBe(false); expect(uiScenarios.some((scenario) => scenario.id === 'custom-regex-empty')).toBe(false); }); + + test('page-wiring smoke subset covers the retained semantic lanes', () => { + const scenarios = buildPageWiringSmokeInteractionScenarios(); + + expect(scenarios).toHaveLength(5); + expect(scenarios.some((scenario) => scenario.sourceType === 'literal' && scenario.origins.includes('custom'))).toBe( + true + ); + expect(scenarios.some((scenario) => scenario.sourceType === 'regex' && scenario.origins.includes('custom'))).toBe( + true + ); + expect( + scenarios.some((scenario) => scenario.sourceType === 'faker' && scenario.command === 'helpers.arrayElement') + ).toBe(true); + expect( + scenarios.some( + (scenario) => + scenario.sourceType === 'domain' && + scenario.command === 'commerce.price' && + scenario.origins.includes('example') + ) + ).toBe(true); + expect(scenarios.some((scenario) => scenario.sourceType === 'enum' && scenario.pairwiseEligible === true)).toBe( + true + ); + }); }); diff --git a/packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js b/packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js deleted file mode 100644 index caf01ad2..00000000 --- a/packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js +++ /dev/null @@ -1,10 +0,0 @@ -function getScenarioLogicalId(scenario) { - return String(scenario?.scenarioId || scenario?.id || '').trim(); -} - -function findScenarioByLogicalId(scenarios, logicalId) { - const expectedId = String(logicalId || '').trim(); - return (Array.isArray(scenarios) ? scenarios : []).find((scenario) => getScenarioLogicalId(scenario) === expectedId); -} - -export { findScenarioByLogicalId, getScenarioLogicalId }; diff --git a/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-scenario-builder.js b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-scenario-builder.js index 4357f1c0..424ee2ff 100644 --- a/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-scenario-builder.js +++ b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-scenario-builder.js @@ -780,6 +780,48 @@ function buildUiInteractionScenarios() { return buildRuntimeInteractionScenarios().filter((scenario) => UI_REPRESENTATIVE_SCENARIO_IDS.has(scenario.id)); } +function selectPageSmokeScenario(scenarios, label, predicate) { + const scenario = scenarios.find(predicate); + if (!scenario) { + throw new Error(`page-wiring smoke scenario is missing ${label} coverage`); + } + return scenario; +} + +function buildPageWiringSmokeInteractionScenarios() { + const scenarios = buildUiInteractionScenarios(); + return [ + selectPageSmokeScenario( + scenarios, + 'literal', + (scenario) => scenario.sourceType === SOURCE_TYPE_LITERAL && scenario.origins.includes('custom') + ), + selectPageSmokeScenario( + scenarios, + 'regex', + (scenario) => scenario.sourceType === SOURCE_TYPE_REGEX && scenario.origins.includes('custom') + ), + selectPageSmokeScenario( + scenarios, + 'faker helpers.arrayElement', + (scenario) => scenario.sourceType === SOURCE_TYPE_FAKER && scenario.command === 'helpers.arrayElement' + ), + selectPageSmokeScenario( + scenarios, + 'domain commerce.price example', + (scenario) => + scenario.sourceType === SOURCE_TYPE_DOMAIN && + scenario.command === 'commerce.price' && + scenario.origins.includes('example') + ), + selectPageSmokeScenario( + scenarios, + 'enum pairwise', + (scenario) => scenario.sourceType === SOURCE_TYPE_ENUM && scenario.pairwiseEligible === true + ), + ]; +} + function buildScenarioCoverageSummary() { const scenarios = buildSchemaInteractionScenarios(); const byCommand = new Map(); @@ -803,6 +845,7 @@ export { buildSchemaInteractionScenarios, buildRuntimeInteractionScenarios, buildUiInteractionScenarios, + buildPageWiringSmokeInteractionScenarios, buildScenarioCoverageSummary, buildExpectedSchemaText, buildExpectedUiSchemaText, From 3b9afc158d424044d76434e10a7a298be6fbafed Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 15:50:49 +0100 Subject: [PATCH 12/25] Simplify canonical enum regex --- packages/core/js/data_generation/utils/enumParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index a087ec65..3d9877cc 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -63,7 +63,7 @@ export class EnumParser { } static isCanonicalDomainEnumRuleSpec(ruleSpec) { - return /^datatype\.enum\s*\(\s*[\s\S]+\s*\)$/i.test(String(ruleSpec || '').trim()); + return /^datatype\.enum\s*\([\s\S]+\)$/i.test(String(ruleSpec || '').trim()); } static isCanonicalSchemaSerializableEnumRuleSpec(ruleSpec) { From 115da3e450201618f83290635f3f9b9c24677624 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 16:03:00 +0100 Subject: [PATCH 13/25] Use shared enum-like rule detection --- .../shared/test-data/schema/schema-runtime.js | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js index ce89753a..90da1c93 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js +++ b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-runtime.js @@ -4,17 +4,7 @@ * - Shared counting helpers for generated rule collections. */ -function isDatatypeEnumRule(rule = {}) { - return ( - String(rule?.type || '') - .trim() - .toLowerCase() === 'domain' && - String(rule?.ruleSpec || '') - .trim() - .toLowerCase() - .startsWith('datatype.enum(') - ); -} +import { EnumParser } from '@anywaydata/core/data_generation/utils/enumParser.js'; function parseSchemaText({ schemaTextToDataRules, schemaText, faker, RandExp }) { return schemaTextToDataRules({ @@ -26,7 +16,7 @@ function parseSchemaText({ schemaTextToDataRules, schemaText, faker, RandExp }) } function countEnumRules(rules = []) { - return (Array.isArray(rules) ? rules : []).filter((rule) => rule?.type === 'enum' || isDatatypeEnumRule(rule)).length; + return (Array.isArray(rules) ? rules : []).filter((rule) => EnumParser.isEnumLikeRule(rule)).length; } export { parseSchemaText, countEnumRules }; From 7d8619a8d936b30c9a48dbef12858f8f9bccaef7 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 16:49:19 +0100 Subject: [PATCH 14/25] enum refactoring --- .../shared/schema-row-rule-mapper.js | 44 +---- .../generator/schema-row-rule-mapper.test.js | 7 + .../command-help/command-help-validators.js | 56 +----- .../enum/enumTestDataRuleValidator.js | 21 ++- .../data_generation/schema-rules-adapter.js | 41 +---- .../data_generation/testDataRulesCompiler.js | 26 +-- .../utils/enum-rule-detection.js | 7 +- .../js/data_generation/utils/enumParser.js | 159 +++++++++++++++++- .../keywords/domain/datatype/datatype-enum.js | 78 ++++++++- .../enum-format-bug-fix.test.js | 67 -------- .../enum-surface-parity.test.js | 49 +++--- .../enum-value-format-generation.test.js | 49 ++++++ .../unit/enum/enumParser.test.js | 73 ++++++++ .../user-reported-bug-http-method.test.js | 43 ----- 14 files changed, 418 insertions(+), 302 deletions(-) delete mode 100644 packages/core/src/tests/data_generation/enum-format-bug-fix.test.js create mode 100644 packages/core/src/tests/data_generation/enum-value-format-generation.test.js create mode 100644 packages/core/src/tests/data_generation/unit/enum/enumParser.test.js delete mode 100644 packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js diff --git a/packages/core-ui/js/gui_components/shared/schema-row-rule-mapper.js b/packages/core-ui/js/gui_components/shared/schema-row-rule-mapper.js index 3750acb6..b48406c5 100644 --- a/packages/core-ui/js/gui_components/shared/schema-row-rule-mapper.js +++ b/packages/core-ui/js/gui_components/shared/schema-row-rule-mapper.js @@ -1,3 +1,5 @@ +import { EnumParser } from '@anywaydata/core/data_generation/utils/enumParser.js'; + const SOURCE_TYPE_FAKER = 'faker'; const SOURCE_TYPE_DOMAIN = 'domain'; const SOURCE_TYPE_REGEX = 'regex'; @@ -46,21 +48,8 @@ function normaliseCommandParams(paramsValue, { allowUnwrapped = false } = {}) { return `(${params})`; } -function buildEnumRuleSpec(enumInput) { - const enumValue = String(enumInput ?? '').trim(); - if (enumValue.length === 0) { - return ''; - } - if (/^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/i.test(enumValue)) { - return `enum(${extractEnumValueFromRuleSpec(enumValue)})`; - } - if (/^enum\s+/i.test(enumValue)) { - return `enum(${enumValue.replace(/^enum\s+/i, '').trim()})`; - } - if (enumValue.startsWith('(') && enumValue.endsWith(')')) { - return `enum${enumValue}`; - } - return `enum(${enumValue})`; +function isDomainEnumCommand(commandValue) { + return /^(?:datatype\.enum|awd\.datatype\.enum)$/i.test(String(commandValue || '').trim()); } function buildRuleSpecFromSchemaRow(row) { @@ -73,10 +62,10 @@ function buildRuleSpecFromSchemaRow(row) { if (sourceType === SOURCE_TYPE_DOMAIN) { const command = normaliseDomainCommand(row?.command); const params = normaliseCommandParams(row?.params, { - allowUnwrapped: command.toLowerCase() === 'datatype.enum', + allowUnwrapped: isDomainEnumCommand(command), }); - if (command.toLowerCase() === 'datatype.enum') { - return buildEnumRuleSpec(params); + if (isDomainEnumCommand(command)) { + return EnumParser.buildSchemaRuleSpecFromInput(params); } return `${command}${params}`; } @@ -103,28 +92,13 @@ function buildRuleSpecFromSchemaRow(row) { return regexValue; } if (sourceType === SOURCE_TYPE_ENUM) { - return buildEnumRuleSpec(row?.value); + return EnumParser.buildSchemaRuleSpecFromInput(row?.value); } return String(row?.value ?? '').trim(); } function extractEnumValueFromRuleSpec(ruleSpec) { - const value = String(ruleSpec ?? '').trim(); - const wrappedMatch = value.match(/^(?:enum|datatype\.enum|awd\.datatype\.enum)\s*\(([\s\S]*)\)$/i); - if (wrappedMatch) { - return wrappedMatch[1].trim(); - } - if (/^enum\s+/i.test(value)) { - const shorthand = value.replace(/^enum\s+/i, '').trim(); - if (shorthand.startsWith('(') && shorthand.endsWith(')') && shorthand.length >= 2) { - return shorthand.slice(1, -1).trim(); - } - return shorthand; - } - if (value.startsWith('(') && value.endsWith(')') && value.length >= 2) { - return value.slice(1, -1).trim(); - } - return value; + return EnumParser.extractEnumDisplayValue(ruleSpec); } function extractLiteralValueFromRuleSpec(ruleSpec) { diff --git a/packages/core-ui/src/tests/generator/schema-row-rule-mapper.test.js b/packages/core-ui/src/tests/generator/schema-row-rule-mapper.test.js index 73e004e8..15afeb05 100644 --- a/packages/core-ui/src/tests/generator/schema-row-rule-mapper.test.js +++ b/packages/core-ui/src/tests/generator/schema-row-rule-mapper.test.js @@ -70,6 +70,13 @@ describe('schema-row-rule-mapper', () => { params: '("a","quoted","bracketed","list")', }) ).toBe('enum("a","quoted","bracketed","list")'); + expect( + buildRuleSpecFromSchemaRow({ + sourceType: 'domain', + command: 'awd.datatype.enum', + params: 'active,inactive,pending', + }) + ).toBe('enum(active,inactive,pending)'); }); test('buildRuleSpecFromSchemaRow handles literal rows including blank default', () => { diff --git a/packages/core/js/command-help/command-help-validators.js b/packages/core/js/command-help/command-help-validators.js index e8756d03..ce2a1259 100644 --- a/packages/core/js/command-help/command-help-validators.js +++ b/packages/core/js/command-help/command-help-validators.js @@ -1,4 +1,4 @@ -import { EnumParser } from '../data_generation/utils/enumParser.js'; +import { normalizeDatatypeEnumValuesFromContext } from '../keywords/domain/datatype/datatype-enum.js'; const STRING_COMMANDS_ALLOWING_EMPTY_INPUT_OUTPUT = new Set([ 'helpers.fake', @@ -856,60 +856,8 @@ const validateCronValue = createPredicateValidator((value) => { return fields.every((field) => CRON_FIELD_REGEX.test(field)); }); -function extractEnumValuesFromContext(context = {}) { - const fieldDefinition = getFieldDefinitionFromContext(context); - const explicitEnumValues = Array.isArray(context?.enumValues) ? context.enumValues : []; - if (explicitEnumValues.length > 0) { - return explicitEnumValues.map((entry) => String(entry)); - } - - const contextArgs = getContextArgs(context); - const candidates = [getContextRuleSpec(context)]; - const sourceType = String(fieldDefinition?.sourceType ?? '') - .trim() - .toLowerCase(); - const command = String(fieldDefinition?.command ?? '') - .trim() - .toLowerCase(); - const params = String(fieldDefinition?.params ?? '').trim(); - const value = String(fieldDefinition?.value ?? '').trim(); - - if (sourceType === 'enum' && value.length > 0) { - candidates.push(`enum(${value.replace(/^\(|\)$/g, '').trim()})`); - candidates.push(value); - } - if (command === 'datatype.enum' && contextArgs.length > 0) { - if (contextArgs.length === 1 && typeof contextArgs[0] === 'string') { - try { - return EnumParser.extractEnumValues(`enum(${contextArgs[0]})`).map((entry) => String(entry)); - } catch { - return [String(contextArgs[0])]; - } - } - return contextArgs.map((entry) => String(entry)); - } - if (command === 'datatype.enum' && params.length > 0) { - candidates.push(`datatype.enum(${params.replace(/^\(|\)$/g, '').trim()})`); - candidates.push(params); - } - - for (const candidate of candidates) { - const ruleSpec = String(candidate ?? '').trim(); - if (!ruleSpec) { - continue; - } - try { - return EnumParser.extractEnumValues(ruleSpec).map((entry) => String(entry)); - } catch { - // Keep looking until a valid enum source is found. - } - } - - return []; -} - function validateEnumMemberValue(value, context = {}) { - const enumValues = extractEnumValuesFromContext(context); + const enumValues = normalizeDatatypeEnumValuesFromContext(context); if (enumValues.length === 0) { return false; } diff --git a/packages/core/js/data_generation/enum/enumTestDataRuleValidator.js b/packages/core/js/data_generation/enum/enumTestDataRuleValidator.js index 95d1e0e7..8fc1924c 100644 --- a/packages/core/js/data_generation/enum/enumTestDataRuleValidator.js +++ b/packages/core/js/data_generation/enum/enumTestDataRuleValidator.js @@ -1,5 +1,4 @@ import { EnumParser } from '../utils/enumParser.js'; -import { isExplicitEnumRule } from '../utils/enum-rule-detection.js'; export class EnumTestDataRuleValidator { constructor() { @@ -11,8 +10,24 @@ export class EnumTestDataRuleValidator { try { const ruleSpec = String(aTestDataRule.ruleSpec || ''); - const enumValues = EnumParser.extractEnumValues(ruleSpec); - const minimumValues = isExplicitEnumRule(ruleSpec) ? 1 : 2; + let parsed = EnumParser.parseEnumRuleSpec(ruleSpec); + if (!parsed.ok && !parsed.explicit) { + parsed = { + ok: true, + values: EnumParser.extractEnumValues(ruleSpec), + explicit: false, + source: 'legacy-enum-type', + error: '', + }; + } + + if (!parsed.ok) { + this.validationError = parsed.error; + return false; + } + + const enumValues = parsed.values; + const minimumValues = parsed.explicit ? 1 : 2; // Explicit enum(...) syntax supports a single value, while implicit CSV enums still need at least two. if (enumValues.length < minimumValues) { diff --git a/packages/core/js/data_generation/schema-rules-adapter.js b/packages/core/js/data_generation/schema-rules-adapter.js index 581e8897..54002ed3 100644 --- a/packages/core/js/data_generation/schema-rules-adapter.js +++ b/packages/core/js/data_generation/schema-rules-adapter.js @@ -1,5 +1,6 @@ import { parseSchemaText, renderSchemaText } from './schema-conversion.js'; import { SchemaParsingErrors } from './schema-parsing-errors.js'; +import { EnumParser } from './utils/enumParser.js'; const SOURCE_TYPE_FAKER = 'faker'; const SOURCE_TYPE_DOMAIN = 'domain'; @@ -7,42 +8,6 @@ const SOURCE_TYPE_REGEX = 'regex'; const SOURCE_TYPE_LITERAL = 'literal'; const SOURCE_TYPE_ENUM = 'enum'; -function extractEnumValueFromRuleSpec(ruleSpec) { - const value = String(ruleSpec ?? '').trim(); - const wrappedMatch = value.match(/^(?:enum|datatype\.enum|awd\.datatype\.enum)\s*\(([\s\S]*)\)$/i); - if (wrappedMatch) { - return wrappedMatch[1].trim(); - } - if (/^enum\s+/i.test(value)) { - const shorthand = value.replace(/^enum\s+/i, '').trim(); - if (shorthand.startsWith('(') && shorthand.endsWith(')') && shorthand.length >= 2) { - return shorthand.slice(1, -1).trim(); - } - return shorthand; - } - if (value.startsWith('(') && value.endsWith(')') && value.length >= 2) { - return value.slice(1, -1).trim(); - } - return value; -} - -function buildEnumRuleSpec(enumInput) { - const enumValue = String(enumInput ?? '').trim(); - if (enumValue.length === 0) { - return ''; - } - if (/^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/i.test(enumValue)) { - return `enum(${extractEnumValueFromRuleSpec(enumValue)})`; - } - if (/^enum\s+/i.test(enumValue)) { - return `enum(${enumValue.replace(/^enum\s+/i, '').trim()})`; - } - if (enumValue.startsWith('(') && enumValue.endsWith(')')) { - return `enum${enumValue}`; - } - return `enum(${enumValue})`; -} - function isBlankSchemaRow(row) { return ( String(row?.name ?? '').trim().length === 0 && @@ -97,7 +62,7 @@ function buildRuleSpecFromRow(row) { const command = normaliseFakerCommand(row?.command); const params = String(row?.params ?? '').trim(); if (sourceType === SOURCE_TYPE_DOMAIN && isDomainEnumCommand(command)) { - return buildEnumRuleSpec(params); + return EnumParser.buildSchemaRuleSpecFromInput(params); } return `${command}${params}`; } @@ -124,7 +89,7 @@ function buildRuleSpecFromRow(row) { return value; } if (sourceType === SOURCE_TYPE_ENUM) { - return buildEnumRuleSpec(row?.value); + return EnumParser.buildSchemaRuleSpecFromInput(row?.value); } return String(row?.value ?? '').trim(); } diff --git a/packages/core/js/data_generation/testDataRulesCompiler.js b/packages/core/js/data_generation/testDataRulesCompiler.js index 073e0b85..f66f4090 100644 --- a/packages/core/js/data_generation/testDataRulesCompiler.js +++ b/packages/core/js/data_generation/testDataRulesCompiler.js @@ -206,31 +206,7 @@ export class TestDataRulesCompiler { } isEnumPattern(ruleSpec) { - const spec = String(ruleSpec || '').trim(); - - // Check for awd enum formats: enum(), datatype.enum(), awd.datatype.enum() - if (spec.match(/^(enum|datatype\.enum|awd\.datatype\.enum)\s*\(/)) { - return true; - } - - // Check for simple comma-separated values that look like enums - if (spec.includes(',')) { - const values = spec.split(',').map((v) => v.trim()); - // Must have at least 2 values - if (values.length >= 2) { - // Values should be reasonably short (not code/expressions) - if (values.every((v) => v.length > 0 && v.length <= 50)) { - // Values shouldn't look like regex/function syntax. - // Dotted literals such as versions (1.0) or domains (example.com) are valid, - // but faker-like dotted member paths (e.g. person.firstName) should not be enums. - if (!values.some((v) => /[[\]{}()^$*+?|\\]/.test(v) || (v.includes('.') && /[A-Z]/.test(v)))) { - return true; - } - } - } - } - - return false; + return EnumParser.isEnumRuleSpec(ruleSpec); } isLiteralPattern(ruleSpec) { diff --git a/packages/core/js/data_generation/utils/enum-rule-detection.js b/packages/core/js/data_generation/utils/enum-rule-detection.js index 1306806d..9058ef31 100644 --- a/packages/core/js/data_generation/utils/enum-rule-detection.js +++ b/packages/core/js/data_generation/utils/enum-rule-detection.js @@ -1,12 +1,7 @@ import { EnumParser } from './enumParser.js'; function isExplicitEnumRule(ruleSpec) { - const spec = String(ruleSpec || '').trim(); - return ( - EnumParser.isAwdEnumFormat(spec) || - EnumParser.isShorthandEnumFormat(spec) || - (spec.startsWith('(') && spec.endsWith(')') && spec.includes(',')) - ); + return EnumParser.parseEnumRuleSpec(ruleSpec, { allowImplicitCsv: false }).explicit === true; } export { isExplicitEnumRule }; diff --git a/packages/core/js/data_generation/utils/enumParser.js b/packages/core/js/data_generation/utils/enumParser.js index 3d9877cc..b2cd5316 100644 --- a/packages/core/js/data_generation/utils/enumParser.js +++ b/packages/core/js/data_generation/utils/enumParser.js @@ -19,6 +19,11 @@ export class EnumParser { return text; } + static isParenthesizedListFormat(ruleSpec) { + const spec = String(ruleSpec || '').trim(); + return spec.startsWith('(') && spec.endsWith(')') && spec.includes(','); + } + /** * Check if rule spec uses AWD enum function format * @param {string} ruleSpec - The rule specification to check @@ -54,12 +59,22 @@ export class EnumParser { return `enum(${normalizedValues.map((value) => this.serializeSchemaEnumValue(value)).join(',')})`; } + static buildCanonicalDomainRuleSpec(ruleSpecOrValues) { + const values = Array.isArray(ruleSpecOrValues) ? ruleSpecOrValues : this.extractEnumValues(ruleSpecOrValues); + return this.buildCanonicalDomainRuleSpecFromValues(values); + } + + static buildCanonicalSchemaRuleSpec(ruleSpecOrValues) { + const values = Array.isArray(ruleSpecOrValues) ? ruleSpecOrValues : this.extractEnumValues(ruleSpecOrValues); + return this.buildCanonicalSchemaRuleSpecFromValues(values); + } + static normalizeToCanonicalDomainRuleSpec(ruleSpec) { - return this.buildCanonicalDomainRuleSpecFromValues(this.extractEnumValues(ruleSpec)); + return this.buildCanonicalDomainRuleSpec(ruleSpec); } static normalizeToCanonicalSchemaRuleSpec(ruleSpec) { - return this.buildCanonicalSchemaRuleSpecFromValues(this.extractEnumValues(ruleSpec)); + return this.buildCanonicalSchemaRuleSpec(ruleSpec); } static isCanonicalDomainEnumRuleSpec(ruleSpec) { @@ -71,6 +86,146 @@ export class EnumParser { return this.isCanonicalDomainEnumRuleSpec(spec) || this.isAwdEnumFormat(spec) || this.isShorthandEnumFormat(spec); } + static isImplicitCsvEnumRuleSpec(ruleSpec) { + const spec = String(ruleSpec || '').trim(); + if (!spec.includes(',')) { + return false; + } + + const values = spec.split(',').map((value) => value.trim()); + if (values.length < 2) { + return false; + } + + return ( + values.every((value) => value.length > 0 && value.length <= 50) && + !values.some((value) => { + return /[[\]{}()^$*+?|\\]/.test(value) || (value.includes('.') && /[A-Z]/.test(value)); + }) + ); + } + + static parseEnumRuleSpec(ruleSpec, { allowImplicitCsv = true } = {}) { + const spec = String(ruleSpec || '').trim(); + if (!spec) { + return { ok: false, values: [], explicit: false, source: '', error: 'Invalid enum format' }; + } + + if (this.hasAwdEnumInvocationPrefix(spec)) { + try { + return { + ok: true, + values: this.extractAwdEnumValues(spec), + explicit: true, + source: 'function', + error: '', + }; + } catch (error) { + return { + ok: false, + values: [], + explicit: true, + source: 'function', + error: error?.message || String(error), + }; + } + } + + if (this.isShorthandEnumFormat(spec)) { + try { + return { + ok: true, + values: this.extractEnumValues(spec), + explicit: true, + source: 'shorthand', + error: '', + }; + } catch (error) { + return { + ok: false, + values: [], + explicit: true, + source: 'shorthand', + error: error?.message || String(error), + }; + } + } + + if (this.isParenthesizedListFormat(spec)) { + try { + return { + ok: true, + values: this.extractEnumValues(spec), + explicit: true, + source: 'parenthesized-list', + error: '', + }; + } catch (error) { + return { + ok: false, + values: [], + explicit: true, + source: 'parenthesized-list', + error: error?.message || String(error), + }; + } + } + + if (allowImplicitCsv && this.isImplicitCsvEnumRuleSpec(spec)) { + try { + return { + ok: true, + values: this.extractEnumValues(spec), + explicit: false, + source: 'implicit-csv', + error: '', + }; + } catch (error) { + return { + ok: false, + values: [], + explicit: false, + source: 'implicit-csv', + error: error?.message || String(error), + }; + } + } + + return { ok: false, values: [], explicit: false, source: '', error: 'Invalid enum format' }; + } + + static isEnumRuleSpec(ruleSpec, { allowImplicitCsv = true, includeParenthesizedList = false } = {}) { + const parsed = this.parseEnumRuleSpec(ruleSpec, { allowImplicitCsv }); + if (!parsed.ok && parsed.explicit) { + return true; + } + if (!parsed.ok) { + return false; + } + return includeParenthesizedList || parsed.source !== 'parenthesized-list'; + } + + static extractEnumDisplayValue(ruleSpec) { + const value = String(ruleSpec ?? '').trim(); + const wrappedMatch = value.match(/^(?:enum|datatype\.enum|awd\.datatype\.enum)\s*\(([\s\S]*)\)$/i); + if (wrappedMatch) { + return wrappedMatch[1].trim(); + } + if (this.isShorthandEnumFormat(value)) { + const shorthand = value.replace(/^enum\s+/i, '').trim(); + return this.unwrapOptionalListParens(shorthand); + } + return this.unwrapOptionalListParens(value); + } + + static buildSchemaRuleSpecFromInput(enumInput) { + const enumValue = String(enumInput ?? '').trim(); + if (enumValue.length === 0) { + return ''; + } + return `enum(${this.extractEnumDisplayValue(enumValue)})`; + } + static isEnumLikeRule(rule = {}) { const ruleType = String(rule?.type || '') .trim() diff --git a/packages/core/js/keywords/domain/datatype/datatype-enum.js b/packages/core/js/keywords/domain/datatype/datatype-enum.js index 43072274..37d4670e 100644 --- a/packages/core/js/keywords/domain/datatype/datatype-enum.js +++ b/packages/core/js/keywords/domain/datatype/datatype-enum.js @@ -1,6 +1,6 @@ import { EnumParser } from '../../../data_generation/utils/enumParser.js'; -function normalizeDatatypeEnumArgs(args = []) { +function normalizeDatatypeEnumValuesFromArgs(args = []) { const rawArgs = Array.isArray(args) ? args : []; if (rawArgs.length === 1 && typeof rawArgs[0] === 'string') { const singleValue = rawArgs[0].trim(); @@ -18,9 +18,81 @@ function normalizeDatatypeEnumArgs(args = []) { return rawArgs.map((value) => value); } +function normalizeDatatypeEnumArgs(args = []) { + return normalizeDatatypeEnumValuesFromArgs(args); +} + +function getContextFieldDefinition(context = {}) { + return context?.fieldDefinition && typeof context.fieldDefinition === 'object' ? context.fieldDefinition : {}; +} + +function getContextRuleSpec(context = {}) { + const fieldDefinition = getContextFieldDefinition(context); + const candidates = [context?.ruleSpec, fieldDefinition?.ruleSpec, context?.functionCall]; + + for (const candidate of candidates) { + const value = String(candidate ?? '').trim(); + if (value.length > 0) { + return value; + } + } + + return ''; +} + +function normalizeDatatypeEnumValuesFromContext(context = {}) { + const explicitEnumValues = Array.isArray(context?.enumValues) ? context.enumValues : []; + if (explicitEnumValues.length > 0) { + return explicitEnumValues.map((entry) => String(entry)); + } + + const args = Array.isArray(context?.args) + ? context.args + : Array.isArray(context?.parsedArgs) + ? context.parsedArgs + : []; + if (args.length > 0) { + return normalizeDatatypeEnumValuesFromArgs(args).map((entry) => String(entry)); + } + + const fieldDefinition = getContextFieldDefinition(context); + const sourceType = String(fieldDefinition?.sourceType ?? '') + .trim() + .toLowerCase(); + const command = String(fieldDefinition?.command ?? '') + .trim() + .toLowerCase(); + const params = String(fieldDefinition?.params ?? '').trim(); + const value = String(fieldDefinition?.value ?? '').trim(); + const candidates = [getContextRuleSpec(context)]; + + if (sourceType === 'enum' && value.length > 0) { + candidates.push(`enum(${EnumParser.extractEnumDisplayValue(value)})`); + candidates.push(value); + } + if (command === 'datatype.enum' && params.length > 0) { + candidates.push(`datatype.enum(${EnumParser.extractEnumDisplayValue(params)})`); + candidates.push(params); + } + + for (const candidate of candidates) { + const ruleSpec = String(candidate ?? '').trim(); + if (!ruleSpec) { + continue; + } + try { + return EnumParser.extractEnumValues(ruleSpec).map((entry) => String(entry)); + } catch { + // Keep looking until a valid enum source is found. + } + } + + return []; +} + function executeCustomDatatypeEnum(executionContext = {}) { const args = Array.isArray(executionContext.args) ? executionContext.args : []; - const values = normalizeDatatypeEnumArgs(args); + const values = normalizeDatatypeEnumValuesFromArgs(args); if (values.length === 0) { throw new Error('Invalid keyword arguments: argument "values" is required'); @@ -30,4 +102,4 @@ function executeCustomDatatypeEnum(executionContext = {}) { return values[randomIndex]; } -export { executeCustomDatatypeEnum, normalizeDatatypeEnumArgs }; +export { executeCustomDatatypeEnum, normalizeDatatypeEnumArgs, normalizeDatatypeEnumValuesFromContext }; diff --git a/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js b/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js deleted file mode 100644 index 7ec891ea..00000000 --- a/packages/core/src/tests/data_generation/enum-format-bug-fix.test.js +++ /dev/null @@ -1,67 +0,0 @@ -import { TestDataRulesCompiler } from '../../../js/data_generation/testDataRulesCompiler.js'; -import { EnumTestDataGenerator } from '../../../js/data_generation/enum/enumTestDataGenerator.js'; -import { TestDataRule } from '../../../js/data_generation/testDataRule.js'; - -describe('Enum Format Bug Fix Integration', () => { - test('unquoted enum() format works in normal data generation', () => { - // Create a rule with unquoted enum format that was failing before - const rule = new TestDataRule('HttpMethod', 'enum(GET,POST,PUT,DELETE)'); - - // Compile the rule to detect the type - const compiler = new TestDataRulesCompiler(); - compiler.compile([rule]); - - // Verify it was normalized to the canonical domain enum type - expect(rule.type).toBe('domain'); - expect(rule.ruleSpec).toBe('datatype.enum("GET", "POST", "PUT", "DELETE")'); - - // Validate the rule - compiler.validate(); - expect(compiler.isValid()).toBe(true); - expect(compiler.validationErrors()).toBe(''); - - // Generate data from the rule - const generator = new EnumTestDataGenerator(); - const result = generator.generateFrom(rule); - - // Verify generation worked and returned valid data - expect(result.isError).toBe(false); - expect(['GET', 'POST', 'PUT', 'DELETE']).toContain(result.data); - }); - - test('mixed quoted and unquoted enum() format works', () => { - const rule = new TestDataRule('ContentType', 'enum("application/json",xml,"text/plain")'); - - const compiler = new TestDataRulesCompiler(); - compiler.compile([rule]); - - expect(rule.type).toBe('domain'); - expect(rule.ruleSpec).toBe('datatype.enum("application/json", "xml", "text/plain")'); - compiler.validate(); - expect(compiler.isValid()).toBe(true); - - const generator = new EnumTestDataGenerator(); - const result = generator.generateFrom(rule); - - expect(result.isError).toBe(false); - expect(['application/json', 'xml', 'text/plain']).toContain(result.data); - }); - - test('quoted enum() format still works as before', () => { - const rule = new TestDataRule('Status', 'enum("Active, Running","Inactive, Stopped","Pending, Waiting")'); - - const compiler = new TestDataRulesCompiler(); - compiler.compile([rule]); - - expect(rule.type).toBe('domain'); - expect(rule.ruleSpec).toBe('datatype.enum("Active, Running", "Inactive, Stopped", "Pending, Waiting")'); - compiler.validate(); - expect(compiler.isValid()).toBe(true); - - const generator = new EnumTestDataGenerator(); - const result = generator.generateFrom(rule); - - expect(result.isError).toBe(false); - expect(['Active, Running', 'Inactive, Stopped', 'Pending, Waiting']).toContain(result.data); - }); -}); diff --git a/packages/core/src/tests/data_generation/enum-surface-parity.test.js b/packages/core/src/tests/data_generation/enum-surface-parity.test.js index 808f40cd..05b4fe41 100644 --- a/packages/core/src/tests/data_generation/enum-surface-parity.test.js +++ b/packages/core/src/tests/data_generation/enum-surface-parity.test.js @@ -4,7 +4,6 @@ import RandExp from 'randexp'; import { generateFromTextSpec } from '../../index.js'; import { TestDataRulesCompiler } from '../../../js/data_generation/testDataRulesCompiler.js'; import { TestDataRule } from '../../../js/data_generation/testDataRule.js'; -import { EnumTestDataGenerator } from '../../../js/data_generation/enum/enumTestDataGenerator.js'; const PUBLIC_ENUM_SURFACE_CASES = [ { @@ -49,14 +48,6 @@ const PUBLIC_ENUM_SURFACE_CASES = [ }, ]; -const ENUM_GENERATOR_SURFACE_CASES = [ - ...PUBLIC_ENUM_SURFACE_CASES, - { - label: 'parenthesized comma-separated list', - ruleSpec: '(active,inactive,pending)', - }, -]; - describe('enum surface parity', () => { test.each(PUBLIC_ENUM_SURFACE_CASES)( 'compiler normalizes public $label to the canonical domain enum model', @@ -110,23 +101,29 @@ describe('enum surface parity', () => { } ); - test.each(ENUM_GENERATOR_SURFACE_CASES)( - 'EnumTestDataGenerator evaluates parser-level $label using the same enum value selection', - ({ ruleSpec }) => { - const generator = new EnumTestDataGenerator(); - const rule = new TestDataRule('Status', ruleSpec); - rule.type = 'enum'; - const randomSpy = jest.spyOn(Math, 'random').mockReturnValue(0.5); + test('compiled enum surfaces execute through the canonical domain rule model', () => { + const compiler = new TestDataRulesCompiler(faker, RandExp); + const rules = [new TestDataRule('Status', 'enum(values="active,inactive,pending")')]; + const randomSpy = jest.spyOn(Math, 'random').mockReturnValue(0.5); - try { - const results = Array.from({ length: 3 }, () => generator.generateFrom(rule)); - results.forEach((result) => { - expect(result.isError).toBe(false); - expect(result.data).toBe('inactive'); - }); - } finally { - randomSpy.mockRestore(); - } + try { + compiler.compile(rules); + compiler.validate(); + + expect(rules[0]).toMatchObject({ + type: 'domain', + ruleSpec: 'datatype.enum("active", "inactive", "pending")', + }); + const result = generateFromTextSpec({ + textSpec: `Status\n${rules[0].ruleSpec}`, + rowCount: 1, + outputFormat: 'json', + }); + + expect(result.ok).toBe(true); + expect(result.rows).toEqual([['inactive']]); + } finally { + randomSpy.mockRestore(); } - ); + }); }); diff --git a/packages/core/src/tests/data_generation/enum-value-format-generation.test.js b/packages/core/src/tests/data_generation/enum-value-format-generation.test.js new file mode 100644 index 00000000..55ff61d3 --- /dev/null +++ b/packages/core/src/tests/data_generation/enum-value-format-generation.test.js @@ -0,0 +1,49 @@ +import { TestDataRulesCompiler } from '../../../js/data_generation/testDataRulesCompiler.js'; +import { DomainTestDataGenerator } from '../../../js/data_generation/domain/domainTestDataGenerator.js'; +import { TestDataRule } from '../../../js/data_generation/testDataRule.js'; + +function compileAndGenerate(ruleSpec, expectedCanonicalRuleSpec, expectedValues) { + const rule = new TestDataRule('EnumValue', ruleSpec); + const compiler = new TestDataRulesCompiler(); + + compiler.compile([rule]); + compiler.validate(); + + expect(rule.type).toBe('domain'); + expect(rule.ruleSpec).toBe(expectedCanonicalRuleSpec); + expect(compiler.isValid()).toBe(true); + expect(compiler.validationErrors()).toBe(''); + + const generator = new DomainTestDataGenerator(); + const result = generator.generateFrom(rule); + + expect(result.isError).toBe(false); + expect(expectedValues).toContain(result.data); +} + +describe('enum value format generation', () => { + test('normalizes and generates unquoted enum function values', () => { + compileAndGenerate('enum(GET,POST,PUT,DELETE)', 'datatype.enum("GET", "POST", "PUT", "DELETE")', [ + 'GET', + 'POST', + 'PUT', + 'DELETE', + ]); + }); + + test('normalizes and generates mixed quoted and unquoted enum function values', () => { + compileAndGenerate( + 'enum("application/json",xml,"text/plain")', + 'datatype.enum("application/json", "xml", "text/plain")', + ['application/json', 'xml', 'text/plain'] + ); + }); + + test('normalizes and generates quoted enum values that contain commas', () => { + compileAndGenerate( + 'enum("Active, Running","Inactive, Stopped","Pending, Waiting")', + 'datatype.enum("Active, Running", "Inactive, Stopped", "Pending, Waiting")', + ['Active, Running', 'Inactive, Stopped', 'Pending, Waiting'] + ); + }); +}); diff --git a/packages/core/src/tests/data_generation/unit/enum/enumParser.test.js b/packages/core/src/tests/data_generation/unit/enum/enumParser.test.js new file mode 100644 index 00000000..a492897e --- /dev/null +++ b/packages/core/src/tests/data_generation/unit/enum/enumParser.test.js @@ -0,0 +1,73 @@ +import { EnumParser } from '../../../../../js/data_generation/utils/enumParser.js'; + +const ENUM_SURFACES = [ + ['implicit comma-separated list', 'active,inactive,pending', false, 'implicit-csv'], + ['quoted comma-separated list', '"active","inactive","pending"', false, 'implicit-csv'], + ['parenthesized comma-separated list', '(active,inactive,pending)', true, 'parenthesized-list'], + ['enum shorthand', 'enum active,inactive,pending', true, 'shorthand'], + ['enum function', 'enum("active","inactive","pending")', true, 'function'], + ['enum named values function', 'enum(values="active,inactive,pending")', true, 'function'], + ['datatype enum function', 'datatype.enum("active","inactive","pending")', true, 'function'], + ['datatype enum named values function', 'datatype.enum(values="active,inactive,pending")', true, 'function'], + ['awd datatype enum function', 'awd.datatype.enum("active","inactive","pending")', true, 'function'], + ['awd datatype enum named values function', 'awd.datatype.enum(values="active,inactive,pending")', true, 'function'], +]; + +describe('EnumParser shared enum surface parser', () => { + test.each(ENUM_SURFACES)('parses %s', (_label, ruleSpec, explicit, source) => { + expect(EnumParser.parseEnumRuleSpec(ruleSpec)).toEqual({ + ok: true, + values: ['active', 'inactive', 'pending'], + explicit, + source, + error: '', + }); + }); + + test('keeps compiler-oriented detection compatible with previous implicit enum heuristics', () => { + expect(EnumParser.isEnumRuleSpec('active,inactive,pending')).toBe(true); + expect(EnumParser.isEnumRuleSpec('person.firstName,person.lastName')).toBe(false); + expect(EnumParser.isEnumRuleSpec('[A-Z],{3}')).toBe(false); + expect(EnumParser.isEnumRuleSpec('(active,inactive,pending)')).toBe(false); + expect(EnumParser.isEnumRuleSpec('(active,inactive,pending)', { includeParenthesizedList: true })).toBe(true); + }); + + test('reports malformed explicit enum invocations without classifying arbitrary text as enum', () => { + expect(EnumParser.parseEnumRuleSpec('datatype.enum(unclosed')).toMatchObject({ + ok: false, + explicit: true, + source: 'function', + error: 'Invalid enum format', + }); + expect(EnumParser.isEnumRuleSpec('datatype.enum(unclosed')).toBe(true); + expect(EnumParser.parseEnumRuleSpec('SingleValue')).toMatchObject({ + ok: false, + explicit: false, + source: '', + }); + expect(EnumParser.isEnumRuleSpec('SingleValue')).toBe(false); + }); + + test('builds canonical internal and public enum rule specs from values or rule text', () => { + expect(EnumParser.buildCanonicalDomainRuleSpec(['active', 'inactive', 'pending'])).toBe( + 'datatype.enum("active", "inactive", "pending")' + ); + expect(EnumParser.buildCanonicalDomainRuleSpec('enum(values="active,inactive,pending")')).toBe( + 'datatype.enum("active", "inactive", "pending")' + ); + expect(EnumParser.buildCanonicalSchemaRuleSpec('awd.datatype.enum("active","inactive","pending")')).toBe( + 'enum(active,inactive,pending)' + ); + }); + + test('extracts display values for UI enum fields without changing the authored list shape', () => { + expect(EnumParser.extractEnumDisplayValue('datatype.enum(active,inactive,pending)')).toBe( + 'active,inactive,pending' + ); + expect(EnumParser.extractEnumDisplayValue('enum active,inactive,pending')).toBe('active,inactive,pending'); + expect(EnumParser.extractEnumDisplayValue('(active,inactive,pending)')).toBe('active,inactive,pending'); + expect(EnumParser.buildSchemaRuleSpecFromInput('("active","inactive","pending")')).toBe( + 'enum("active","inactive","pending")' + ); + }); +}); diff --git a/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js b/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js deleted file mode 100644 index fc108218..00000000 --- a/packages/core/src/tests/data_generation/user-reported-bug-http-method.test.js +++ /dev/null @@ -1,43 +0,0 @@ -import { TestDataRulesCompiler } from '../../../js/data_generation/testDataRulesCompiler.js'; -import { EnumTestDataGenerator } from '../../../js/data_generation/enum/enumTestDataGenerator.js'; -import { TestDataRule } from '../../../js/data_generation/testDataRule.js'; - -describe('User Reported Bug - HTTP Method enum(GET,POST,PUT,DELETE)', () => { - test('reproduces and verifies fix for the exact user issue', () => { - // Reproduce the exact user example that was failing - const rule = new TestDataRule('HTTP Method', 'enum(GET,POST,PUT,DELETE)'); - - // Test the compilation process - const compiler = new TestDataRulesCompiler(); - compiler.compile([rule]); - - // Should be normalized to the canonical datatype.enum domain type - expect(rule.type).toBe('domain'); - expect(rule.ruleSpec).toBe('datatype.enum("GET", "POST", "PUT", "DELETE")'); - - // Should validate successfully - compiler.validate(); - expect(compiler.isValid()).toBe(true); - - // Should generate valid data (not "**ERROR**") - const generator = new EnumTestDataGenerator(); - const result = generator.generateFrom(rule); - - // Verify result is not an error - expect(result.isError).toBe(false); - expect(result.errorMessage).toBeFalsy(); // Should be undefined or empty - - // Verify generated data is one of the expected values - expect(['GET', 'POST', 'PUT', 'DELETE']).toContain(result.data); - expect(result.data).not.toBe('**ERROR**'); - expect(typeof result.data).toBe('string'); - expect(result.data.length).toBeGreaterThan(0); - - // Test multiple generations to ensure consistency - for (let i = 0; i < 10; i++) { - const testResult = generator.generateFrom(rule); - expect(testResult.isError).toBe(false); - expect(['GET', 'POST', 'PUT', 'DELETE']).toContain(testResult.data); - } - }); -}); From 8382b9e1947ba95ed4d7374025b9b344d6fac92e Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 17:00:01 +0100 Subject: [PATCH 15/25] Move export conversion coverage into converter suites --- .../export-string-conversion-bug-fix.test.js | 86 ------------------- .../data_formats/gherkin-convertor.test.js | 15 ++++ .../tests/data_formats/html-convertor.test.js | 15 ++++ .../data_formats/markdown-convertor.test.js | 15 ++++ 4 files changed, 45 insertions(+), 86 deletions(-) delete mode 100644 packages/core/src/tests/data_formats/export-string-conversion-bug-fix.test.js diff --git a/packages/core/src/tests/data_formats/export-string-conversion-bug-fix.test.js b/packages/core/src/tests/data_formats/export-string-conversion-bug-fix.test.js deleted file mode 100644 index b69edaff..00000000 --- a/packages/core/src/tests/data_formats/export-string-conversion-bug-fix.test.js +++ /dev/null @@ -1,86 +0,0 @@ -import { MarkdownConvertor } from '../../../js/data_formats/markdown-convertor.js'; -import { HtmlConvertor } from '../../../js/data_formats/html-convertor.js'; -import { GherkinConvertor } from '../../../js/data_formats/gherkin-convertor.js'; -import { GenericDataTable } from '@anywaydata/core/data_formats/generic-data-table.js'; -import { assertNoCommonErrorPatternsInValue } from '../utils/outputQualityAssertions.js'; - -describe('Export Format String Conversion Bug Fix', () => { - let dataTable; - - beforeEach(() => { - // Create a data table that mimics pairwise output with mixed data types - dataTable = new GenericDataTable(); - dataTable.setHeaders(['HTTP Method', 'Content Type', 'User ID', 'Response Time', 'Success']); - - // Add data with mixed types: strings, numbers, and booleans - dataTable.appendDataRow(['GET', 'application/json', 12345, 250, true]); - dataTable.appendDataRow(['POST', 'application/xml', 67890, 180, false]); - dataTable.appendDataRow(['PUT', 'text/plain', 11111, 320, true]); - }); - - test('MarkdownConvertor handles mixed data types without replaceAll error', () => { - const convertor = new MarkdownConvertor(); - - expect(() => { - const result = convertor.fromDataTable(dataTable); - expect(typeof result).toBe('string'); - expect(result.trim().length).toBeGreaterThan(0); - expect(result).toContain('HTTP Method'); - expect(result).toContain('12345'); // numeric value - expect(result).toContain('true'); // boolean value - assertNoCommonErrorPatternsInValue(result); - }).not.toThrow(); - }); - - test('HtmlConvertor handles mixed data types without replaceAll error', () => { - const convertor = new HtmlConvertor(); - - expect(() => { - const result = convertor.fromDataTable(dataTable); - expect(typeof result).toBe('string'); - expect(result.trim().length).toBeGreaterThan(0); - expect(result).toContain(''); - expect(result).toContain('12345'); // numeric value - expect(result).toContain('true'); // boolean value - assertNoCommonErrorPatternsInValue(result); - }).not.toThrow(); - }); - - test('GherkinConvertor handles mixed data types without replaceAll error', () => { - const convertor = new GherkinConvertor(); - - expect(() => { - const result = convertor.fromDataTable(dataTable); - expect(typeof result).toBe('string'); - expect(result.trim().length).toBeGreaterThan(0); - expect(result).toContain('|'); - expect(result).toContain('12345'); // numeric value - expect(result).toContain('true'); // boolean value - assertNoCommonErrorPatternsInValue(result); - }).not.toThrow(); - }); - - test('All convertors properly escape special characters in mixed data', () => { - // Add data with special characters that need escaping - const specialTable = new GenericDataTable(); - specialTable.setHeaders(['Text', 'Number', 'Boolean']); - specialTable.appendDataRow(['Data with | pipe', 42, true]); - specialTable.appendDataRow(['Data with < and >', 3.14, false]); - - // Markdown should escape pipes - const markdown = new MarkdownConvertor().fromDataTable(specialTable); - expect(markdown).toContain('|'); // escaped pipe - expect(markdown).toContain('42'); // number preserved - - // HTML should escape < > - const html = new HtmlConvertor().fromDataTable(specialTable); - expect(html).toContain('<'); // escaped < - expect(html).toContain('>'); // escaped > - expect(html).toContain('42'); // number preserved - - // Gherkin should escape pipes and backslashes - const gherkin = new GherkinConvertor().fromDataTable(specialTable); - expect(gherkin).toContain('\\|'); // escaped pipe - expect(gherkin).toContain('42'); // number preserved - }); -}); diff --git a/packages/core/src/tests/data_formats/gherkin-convertor.test.js b/packages/core/src/tests/data_formats/gherkin-convertor.test.js index 0c51169c..cd67a1cb 100644 --- a/packages/core/src/tests/data_formats/gherkin-convertor.test.js +++ b/packages/core/src/tests/data_formats/gherkin-convertor.test.js @@ -1,5 +1,6 @@ import { GenericDataTable } from '@anywaydata/core/data_formats/generic-data-table.js'; import { GherkinConvertor, GherkinOptions } from '@anywaydata/core/data_formats/gherkin-convertor.js'; +import { assertNoCommonErrorPatternsInValue } from '../utils/outputQualityAssertions.js'; describe('can get values from a markdown table row', () => { test('even if malformed with no start', () => { @@ -224,6 +225,20 @@ describe('Can convert markdown tables to data suitable for a data grid', () => { expect(output).toBe(expected); }); + + test('converts non-string values and escapes gherkin table separators', () => { + let table = new GenericDataTable(); + table.setHeaders(['Text', 'Number', 'Boolean']); + table.appendDataRow(['Data with | pipe', 42, true]); + table.appendDataRow(['plain data', 3.14, false]); + + let output = new GherkinConvertor().fromDataTable(table); + + expect(output).toContain('Data with \\| pipe'); + expect(output).toContain('42'); + expect(output).toContain('true'); + assertNoCommonErrorPatternsInValue(output); + }); }); }); diff --git a/packages/core/src/tests/data_formats/html-convertor.test.js b/packages/core/src/tests/data_formats/html-convertor.test.js index 0fe01c27..67256863 100644 --- a/packages/core/src/tests/data_formats/html-convertor.test.js +++ b/packages/core/src/tests/data_formats/html-convertor.test.js @@ -1,6 +1,7 @@ import { GenericDataTable } from '@anywaydata/core/data_formats/generic-data-table'; import { HtmlConvertor, HtmlConvertorOptions, Indent } from '@anywaydata/core/data_formats/html-convertor'; import { JSDOM } from 'jsdom'; +import { assertNoCommonErrorPatternsInValue } from '../utils/outputQualityAssertions.js'; describe('Can use indent class as expected', () => { test('by default no indent', () => { @@ -57,6 +58,20 @@ describe('Can convert generic data grids to html tables', () => { expect(output).toBe(expected); }); + test('converts non-string values and escapes html markup characters', () => { + let table = new GenericDataTable(); + table.setHeaders(['Text', 'Number', 'Boolean']); + table.appendDataRow(['Data with < and >', 42, true]); + table.appendDataRow(['plain data', 3.14, false]); + + let output = new HtmlConvertor().fromDataTable(table); + + expect(output).toContain('Data with < and >'); + expect(output).toContain('42'); + expect(output).toContain('true'); + assertNoCommonErrorPatternsInValue(output); + }); + test('compact output', () => { const expected = `
heading< 1heading 2h3h4
<startdata > barend bar><start and end bar>
`; diff --git a/packages/core/src/tests/data_formats/markdown-convertor.test.js b/packages/core/src/tests/data_formats/markdown-convertor.test.js index 0a6816ad..90b01545 100644 --- a/packages/core/src/tests/data_formats/markdown-convertor.test.js +++ b/packages/core/src/tests/data_formats/markdown-convertor.test.js @@ -1,6 +1,7 @@ import { jest } from '@jest/globals'; import { MarkdownConvertor, MarkdownOptions } from '@anywaydata/core/data_formats/markdown-convertor.js'; import { GenericDataTable } from '@anywaydata/core/data_formats/generic-data-table.js'; +import { assertNoCommonErrorPatternsInValue } from '../utils/outputQualityAssertions.js'; describe('can get values from a markdown table cell', () => { test('cell contents are trimmed', () => { @@ -342,6 +343,20 @@ describe('Can convert markdown tables to data suitable for a data grid', () => { expect(output).toBe(expected); }); + + test('converts non-string values and escapes markdown table separators', () => { + let table = new GenericDataTable(); + table.setHeaders(['Text', 'Number', 'Boolean']); + table.appendDataRow(['Data with | pipe', 42, true]); + table.appendDataRow(['plain data', 3.14, false]); + + let output = new MarkdownConvertor().fromDataTable(table); + + expect(output).toContain('Data with | pipe'); + expect(output).toContain('42'); + expect(output).toContain('true'); + assertNoCommonErrorPatternsInValue(output); + }); }); describe('Can use options to configure output of markdown', () => { From fb9e8e2049e1f34840cee8f4d9235906e749a39a Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 21:06:28 +0100 Subject: [PATCH 16/25] Fix enum defects from issue 228 testing --- .../docs/040-test-data/domain/100-datatype.md | 28 +++++++++++++++++++ .../method-picker-ui-spec.md | 6 +--- .../test-data/ui/params-editor-modal.js | 3 +- .../utils/faker-command-help-metadata.test.js | 1 + .../tests/utils/params-editor-modal.test.js | 20 +++++++++++++ .../data_generation/testDataRulesCompiler.js | 3 +- .../faker/faker-helper-keyword-definitions.js | 1 + .../range-to-number-keyword-definition.js | 1 + .../core-api/generateFromTextSpec.test.js | 19 +++++++++++++ .../enum-compiler-integration.test.js | 13 +++++++-- .../schema-rules-adapter.test.js | 7 +++-- 11 files changed, 89 insertions(+), 13 deletions(-) rename docs-src/docs/040-test-data/035-method-picker-ui-spec.md => docs/method-picker-ui-spec.md (96%) diff --git a/docs-src/docs/040-test-data/domain/100-datatype.md b/docs-src/docs/040-test-data/domain/100-datatype.md index a1d932a5..6c00d71d 100644 --- a/docs-src/docs/040-test-data/domain/100-datatype.md +++ b/docs-src/docs/040-test-data/domain/100-datatype.md @@ -42,3 +42,31 @@ datatype.boolean(probability=0.5) ``` Returns: `true` + +### `datatype.enum` + +Enum helper accepts a list of values and returns one value at random. Supports enum(value1,value2), enum value1,value2, or datatype.enum(value1,value2). + +- Canonical: `awd.domain.datatype.enum` + +| Arg | Type | Required | Description | +| --- | --- | --- | --- | +| `values` | `comma-separated list` | yes | List of allowed enum values chosen at random during generation. | + +Examples: + +Shows the canonical datatype enum helper using a named values argument. The same public enum can also be authored as enum("active","inactive","pending"), enum active,inactive,pending, active,inactive,pending, or "active","inactive","pending". + +```txt +datatype.enum(values="active,inactive,pending") +``` + +Returns: `inactive` + +Shows a second named-parameter example with a different enum set. The fully-qualified compatibility alias awd.datatype.enum(...) also normalizes to this same datatype.enum command internally. + +```txt +datatype.enum(values="GET,POST,PUT,PATCH") +``` + +Returns: `PUT` diff --git a/docs-src/docs/040-test-data/035-method-picker-ui-spec.md b/docs/method-picker-ui-spec.md similarity index 96% rename from docs-src/docs/040-test-data/035-method-picker-ui-spec.md rename to docs/method-picker-ui-spec.md index 81702018..5279b1c6 100644 --- a/docs-src/docs/040-test-data/035-method-picker-ui-spec.md +++ b/docs/method-picker-ui-spec.md @@ -1,7 +1,3 @@ ---- -title: Method Picker UI Spec ---- - # Method Picker UI Spec ## Purpose @@ -60,7 +56,7 @@ Applies to both schema-editing surfaces: ## Data + Metadata Sources - Command lists: - - domain: visible domain catalog (`getVisibleDomainCommands`) + - domain: visible domain catalog (`getVisibleDomainCommands`), including supported domain commands such as `datatype.enum` - faker: approved `helpers.*` commands - top-level schema types: `enum`, `literal`, `regex` - Help metadata: diff --git a/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js b/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js index 6f3a64e7..0dc4edac 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js +++ b/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js @@ -364,7 +364,8 @@ function buildParamsTextFromEditorEntries({ entries = [], validateParams = null } } const formattedValue = formatEditorValue(rawValue, entry.mode || 'auto', entry.type || ''); - formattedValues.push(entry.name && entry.variadic !== true ? `${entry.name}=${formattedValue}` : formattedValue); + const useNamedParam = entry.name && entry.variadic !== true && entry.positionalOnly !== true; + formattedValues.push(useNamedParam ? `${entry.name}=${formattedValue}` : formattedValue); } const paramsText = formattedValues.length > 0 ? `(${formattedValues.join(',')})` : ''; diff --git a/packages/core-ui/src/tests/utils/faker-command-help-metadata.test.js b/packages/core-ui/src/tests/utils/faker-command-help-metadata.test.js index 673688df..1eb73112 100644 --- a/packages/core-ui/src/tests/utils/faker-command-help-metadata.test.js +++ b/packages/core-ui/src/tests/utils/faker-command-help-metadata.test.js @@ -134,6 +134,7 @@ describe('faker command help metadata', () => { expect.arrayContaining([ expect.objectContaining({ name: 'numberOrRange', + positionalOnly: true, description: expect.stringContaining('range object'), }), ]) diff --git a/packages/core-ui/src/tests/utils/params-editor-modal.test.js b/packages/core-ui/src/tests/utils/params-editor-modal.test.js index 61ead62c..dca5c907 100644 --- a/packages/core-ui/src/tests/utils/params-editor-modal.test.js +++ b/packages/core-ui/src/tests/utils/params-editor-modal.test.js @@ -140,6 +140,26 @@ describe('params editor modal', () => { }); }); + test('builds positional-only params without named assignment for faker object arguments', () => { + const result = buildParamsTextFromEditorEntries({ + entries: [ + { + name: 'numberOrRange', + type: 'number | { min: number; max: number; }', + value: '{ min: 1, max: 9 }', + mode: 'raw', + optional: false, + positionalOnly: true, + }, + ], + }); + + expect(result).toEqual({ + paramsText: '({ min: 1, max: 9 })', + errors: [], + }); + }); + test('reports missing earlier params before later params are used', () => { const result = buildParamsTextFromEditorEntries({ entries: [ diff --git a/packages/core/js/data_generation/testDataRulesCompiler.js b/packages/core/js/data_generation/testDataRulesCompiler.js index f66f4090..7e6f3ecd 100644 --- a/packages/core/js/data_generation/testDataRulesCompiler.js +++ b/packages/core/js/data_generation/testDataRulesCompiler.js @@ -67,6 +67,7 @@ export class TestDataRulesCompiler { // Check for enum patterns first if (this.isEnumPattern(rule.ruleSpec)) { + const parsedEnumRule = EnumParser.parseEnumRuleSpec(rule.ruleSpec); enumValidator.validate(rule); if (enumValidator.isValid()) { this.compilationReportLines.push(`${rule.name} is a valid 'enum': ${rule.ruleSpec}`); @@ -76,7 +77,7 @@ export class TestDataRulesCompiler { this.compilationReportLines.push( `${rule.name} is not a valid 'enum': ${enumValidator.getValidationError()}` ); - rule.type = 'literal'; + rule.type = parsedEnumRule.explicit ? 'domain' : 'literal'; } } else { if (this.isDomainHelpersPattern(rule.ruleSpec)) { diff --git a/packages/core/js/faker/faker-helper-keyword-definitions.js b/packages/core/js/faker/faker-helper-keyword-definitions.js index 57e37d3f..aed8925b 100644 --- a/packages/core/js/faker/faker-helper-keyword-definitions.js +++ b/packages/core/js/faker/faker-helper-keyword-definitions.js @@ -54,6 +54,7 @@ function normalizeFakerHelperKeywordHelp(definition) { ? definition.params.map((param) => ({ name: String(param.name || '').trim(), optional: param.optional !== false, + positionalOnly: param.positionalOnly === true, type: String(param.type || '').trim(), description: String(param.description || '').trim(), examples: Array.isArray(param.examples) ? param.examples : [], diff --git a/packages/core/js/keywords/faker/helpers/range-to-number-keyword-definition.js b/packages/core/js/keywords/faker/helpers/range-to-number-keyword-definition.js index 14f430b5..1d5db6ea 100644 --- a/packages/core/js/keywords/faker/helpers/range-to-number-keyword-definition.js +++ b/packages/core/js/keywords/faker/helpers/range-to-number-keyword-definition.js @@ -9,6 +9,7 @@ const HELPERS_RANGE_TO_NUMBER_KEYWORD_DEFINITION = { { name: 'numberOrRange', optional: false, + positionalOnly: true, type: 'number | { min: number; max: number; }', description: 'Fixed number or range object to resolve into a single numeric value.', }, diff --git a/packages/core/src/tests/core-api/generateFromTextSpec.test.js b/packages/core/src/tests/core-api/generateFromTextSpec.test.js index d7d32d6e..d03fc7a4 100644 --- a/packages/core/src/tests/core-api/generateFromTextSpec.test.js +++ b/packages/core/src/tests/core-api/generateFromTextSpec.test.js @@ -303,6 +303,25 @@ test('generateFromTextSpec rejects malformed recognized faker helper invocations ); }); +test('generateFromTextSpec rejects malformed explicit enum syntax instead of treating it as literal data', () => { + const result = generateFromTextSpec({ + textSpec: 'Method\ndatatype.enum(unclosed', + rowCount: 3, + outputFormat: 'markdown', + }); + + expect(result.ok).toBe(false); + expect(result.rows).toBeUndefined(); + expect(result.rendered).toBeUndefined(); + expect(result.errors).toContainEqual( + expect.objectContaining({ + code: 'compiler_validation_error', + column: 'Method', + message: expect.stringContaining('Method failed domain validation'), + }) + ); +}); + test('validateSafeFakerRules accepts known faker commands with literal args', () => { const result = validateSafeFakerRules('Name\nperson.firstName("female")'); expect(result.ok).toBe(true); diff --git a/packages/core/src/tests/data_generation/enum-compiler-integration.test.js b/packages/core/src/tests/data_generation/enum-compiler-integration.test.js index 21a58c79..9e51d27c 100644 --- a/packages/core/src/tests/data_generation/enum-compiler-integration.test.js +++ b/packages/core/src/tests/data_generation/enum-compiler-integration.test.js @@ -89,14 +89,21 @@ describe('TestDataRulesCompiler with Enum Support', () => { expect(compiler.isValid()).toBe(true); }); - test('handles malformed awd enum gracefully', () => { + test('keeps malformed explicit enum syntax on a validation path', () => { const rules = [new TestDataRule('Bad', 'datatype.enum(unclosed')]; compiler.compile(rules); compiler.validate(); - expect(rules[0].type).toBe('literal'); // Falls back to literal - expect(compiler.isValid()).toBe(true); + expect(rules[0].type).toBe('domain'); + expect(compiler.isValid()).toBe(false); + expect(compiler.errors).toContainEqual( + expect.objectContaining({ + code: 'compiler_validation_error', + column: 'Bad', + message: expect.stringContaining('Bad failed domain validation'), + }) + ); }); }); }); diff --git a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js index cb16ef5f..86dd8f1c 100644 --- a/packages/core/src/tests/data_generation/schema-rules-adapter.test.js +++ b/packages/core/src/tests/data_generation/schema-rules-adapter.test.js @@ -369,7 +369,7 @@ IF [Ticket] = "ABC-1234" THEN [Ticket] <> "XYZ-9999" ENDIF`, ); }); - test('keeps malformed datatype enum commands with trailing text out of enum constraint parsing', () => { + test('rejects malformed datatype enum commands with trailing text before constraint validation', () => { const parsed = schemaTextToDataRules({ schemaText: `Status datatype.enum("open") trailing @@ -389,8 +389,9 @@ IF [Status] = "closed" THEN [Status] = "open" ENDIF`, ); expect(parsed.errors).toContainEqual( expect.objectContaining({ - code: 'invalid_constraint_literal_value', - parameterName: 'Status', + code: 'compiler_validation_error', + column: 'Status', + message: expect.stringContaining('Status failed domain validation'), }) ); }); From a3b39ddcfe0f138ef06f913bcf2e28878bd7f8f2 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 24 Jun 2026 23:55:43 +0100 Subject: [PATCH 17/25] Fix issue 228 accessibility and validation defects --- .../web/src/stories/generator-page.stories.js | 4 +- .../stories/generator-schema-panel.stories.js | 4 +- .../import-export-workspace-view.js | 29 +++++++- .../app/page/app-page-shell-view.js | 21 +++++- .../create-generator-page-schema-services.js | 4 +- .../shared/dom/details-disclosure-focus.js | 33 +++++++++ .../test-data/schema/schema-row-mapper.js | 10 ++- .../test-data/ui/params-editor-modal.js | 67 ++++++++++++++++++- .../tests/app/import-export-workspace.test.js | 33 +++++++++ ...e-generator-runtime-schema-runtime.test.js | 4 ++ .../generator/data-generator-page.test.js | 4 ++ .../shared/page-shell-components.test.js | 26 +++++++ .../tests/shared/schema-row-mapper.test.js | 41 ++++++++++++ .../shared/schema-row-validation.test.js | 25 +++++++ .../shared-schema-definition-view.test.js | 41 ++++++++++++ .../tests/utils/params-editor-modal.test.js | 44 ++++++++++++ .../faker/fakerCommandRunner.js | 42 ++++++++++++ .../core-api/generateFromTextSpec.test.js | 19 ++++++ .../faker/fakerTestDataRuleValidator.test.js | 26 +++++++ 19 files changed, 463 insertions(+), 14 deletions(-) create mode 100644 packages/core-ui/js/gui_components/shared/dom/details-disclosure-focus.js diff --git a/apps/web/src/stories/generator-page.stories.js b/apps/web/src/stories/generator-page.stories.js index 858c9065..d2565920 100644 --- a/apps/web/src/stories/generator-page.stories.js +++ b/apps/web/src/stories/generator-page.stories.js @@ -11,7 +11,7 @@ import { createGeneratorPageComponent } from '../../../../packages/core-ui/js/gu import { createGeneratorPageShellComponent } from '../../../../packages/core-ui/js/gui_components/generator/page/create-generator-page-shell-component.js'; import { GENERATOR_DEFAULT_EXAMPLE_SCHEMA_TEXT } from '../../../../packages/core-ui/js/gui_components/shared/test-data/schema/schema-examples.js'; import { validateSchemaRows as validateSharedSchemaRows } from '../../../../packages/core-ui/js/gui_components/shared/test-data/schema/schema-editor-core.js'; -import { getKnownFakerCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/faker-commands.js'; +import { getAllowedFakerCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/faker-commands.js'; import { getKnownDomainCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/domain-commands.js'; import { buildSchemaModeHelpHtml } from '../../../../packages/core-ui/js/gui_components/shared/test-data/help/schema-mode-help-builder.js'; import { createGeneratorSchemaDefinitionSupport } from '../../../../packages/core-ui/js/gui_components/generator/schema-support/create-generator-schema-definition-support.js'; @@ -50,7 +50,7 @@ function getSchemaHelpText(rootElement) { function createGeneratorSchemaStoryProps(ids = {}) { let rowCounter = 1; - const fakerCommands = getKnownFakerCommandsAlphabetical().filter( + const fakerCommands = getAllowedFakerCommandsAlphabetical().filter( (command) => command !== 'RegEx' && command.startsWith('helpers.') ); const domainCommands = getKnownDomainCommandsAlphabetical(); diff --git a/apps/web/src/stories/generator-schema-panel.stories.js b/apps/web/src/stories/generator-schema-panel.stories.js index f39e7eed..d1861574 100644 --- a/apps/web/src/stories/generator-schema-panel.stories.js +++ b/apps/web/src/stories/generator-schema-panel.stories.js @@ -8,7 +8,7 @@ import { } from '@anywaydata/core/data_generation/schema-rules-adapter.js'; import { createSchemaPanelComponent } from '../../../../packages/core-ui/js/gui_components/shared/schema-panel/index.js'; import { validateSchemaRows as validateSharedSchemaRows } from '../../../../packages/core-ui/js/gui_components/shared/test-data/schema/schema-editor-core.js'; -import { getKnownFakerCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/faker-commands.js'; +import { getAllowedFakerCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/faker-commands.js'; import { getKnownDomainCommandsAlphabetical } from '../../../../packages/core-ui/js/gui_components/shared/domain-commands.js'; import { buildSchemaModeHelpHtml } from '../../../../packages/core-ui/js/gui_components/shared/test-data/help/schema-mode-help-builder.js'; import { createGeneratorSchemaDefinitionSupport } from '../../../../packages/core-ui/js/gui_components/generator/schema-support/create-generator-schema-definition-support.js'; @@ -16,7 +16,7 @@ import { GENERATOR_DEFAULT_EXAMPLE_SCHEMA_TEXT } from '../../../../packages/core function createGeneratorSchemaStoryProps() { let rowCounter = 1; - const fakerCommands = getKnownFakerCommandsAlphabetical().filter( + const fakerCommands = getAllowedFakerCommandsAlphabetical().filter( (command) => command !== 'RegEx' && command.startsWith('helpers.') ); const domainCommands = getKnownDomainCommandsAlphabetical(); diff --git a/packages/core-ui/js/gui_components/app/import-export-workspace/import-export-workspace-view.js b/packages/core-ui/js/gui_components/app/import-export-workspace/import-export-workspace-view.js index ef0a57b7..85f0a189 100644 --- a/packages/core-ui/js/gui_components/app/import-export-workspace/import-export-workspace-view.js +++ b/packages/core-ui/js/gui_components/app/import-export-workspace/import-export-workspace-view.js @@ -1,8 +1,13 @@ import { resolveDocumentObj } from '../../shared/dom/default-objects.js'; +import { + bindDetailsContentVisibility, + setDetailsContentVisibility, +} from '../../shared/dom/details-disclosure-focus.js'; const TOOLBAR_ROOT_ROLE = 'import-export-toolbar-root'; const GRID_PREVIEW_SYNC_ROOT_ROLE = 'grid-preview-sync-root'; const TEXT_PREVIEW_EDITOR_ROOT_ROLE = 'text-preview-editor-root'; +const TOOLBAR_DETAILS_ROLE = 'import-export-toolbar-details'; class ImportExportWorkspaceView { constructor({ root, controller, documentObj, services = {} } = {}) { @@ -15,6 +20,7 @@ class ImportExportWorkspaceView { this.textPreviewEditor = null; this.formatSelector = null; this.formatOptionsPanel = null; + this.unbindToolbarDetailsVisibility = null; } mount() { @@ -23,6 +29,7 @@ class ImportExportWorkspaceView { } this.root.innerHTML = this.template(); + this.bindDisclosureVisibility(); this.createFeatures(); this.render(); this.services.updateHelpHints?.(); @@ -32,7 +39,7 @@ class ImportExportWorkspaceView { return `
-
+
Import / Export
@@ -105,6 +112,21 @@ class ImportExportWorkspaceView { return this.root?.querySelector?.(`[data-role="${role}"]`) || null; } + bindDisclosureVisibility() { + this.unbindToolbarDetailsVisibility?.(); + this.unbindToolbarDetailsVisibility = bindDetailsContentVisibility({ + detailsElement: this.getToolbarDetailsElement(), + contentElement: this.getElementByRole(TOOLBAR_ROOT_ROLE), + }); + } + + syncToolbarDetailsVisibility() { + setDetailsContentVisibility({ + detailsElement: this.getToolbarDetailsElement(), + contentElement: this.getElementByRole(TOOLBAR_ROOT_ROLE), + }); + } + render() { const state = this.controller.getState(); this.gridPreviewSyncControl?.update?.(state); @@ -121,6 +143,8 @@ class ImportExportWorkspaceView { } destroy() { + this.unbindToolbarDetailsVisibility?.(); + this.unbindToolbarDetailsVisibility = null; this.formatOptionsPanel?.destroy?.(); this.formatSelector?.destroy?.(); this.textPreviewEditor?.destroy?.(); @@ -142,13 +166,14 @@ class ImportExportWorkspaceView { } getToolbarDetailsElement() { - return this.getElementByRole('import-export-toolbar-details'); + return this.getElementByRole(TOOLBAR_DETAILS_ROLE); } openToolbarDetails() { const detailsElement = this.getToolbarDetailsElement(); if (detailsElement) { detailsElement.open = true; + this.syncToolbarDetailsVisibility(); } } diff --git a/packages/core-ui/js/gui_components/app/page/app-page-shell-view.js b/packages/core-ui/js/gui_components/app/page/app-page-shell-view.js index 716937cf..27beec35 100644 --- a/packages/core-ui/js/gui_components/app/page/app-page-shell-view.js +++ b/packages/core-ui/js/gui_components/app/page/app-page-shell-view.js @@ -1,7 +1,10 @@ +import { bindDetailsContentVisibility } from '../../shared/dom/details-disclosure-focus.js'; + class AppPageShellView { constructor({ root, controller } = {}) { this.root = root; this.controller = controller; + this.unbindTestDataDetailsVisibility = null; } mount() { @@ -9,7 +12,7 @@ class AppPageShellView { throw new Error('AppPageShellView requires a root element'); } - this.root.innerHTML = this.template(); + this.render(); } template() { @@ -23,9 +26,9 @@ class AppPageShellView {
- +
Test Data -
+
@@ -35,10 +38,22 @@ class AppPageShellView { } render() { + this.unbindTestDataDetailsVisibility?.(); + this.unbindTestDataDetailsVisibility = null; this.root.innerHTML = this.template(); + this.bindDisclosureVisibility(); + } + + bindDisclosureVisibility() { + this.unbindTestDataDetailsVisibility = bindDetailsContentVisibility({ + detailsElement: this.root.querySelector('[data-role="test-data-details"]'), + contentElement: this.root.querySelector('[data-role="test-data-details-content"]'), + }); } destroy() { + this.unbindTestDataDetailsVisibility?.(); + this.unbindTestDataDetailsVisibility = null; this.root.replaceChildren(); } } diff --git a/packages/core-ui/js/gui_components/generator/runtime/create-generator-page-schema-services.js b/packages/core-ui/js/gui_components/generator/runtime/create-generator-page-schema-services.js index 2d9dde54..3d21d72f 100644 --- a/packages/core-ui/js/gui_components/generator/runtime/create-generator-page-schema-services.js +++ b/packages/core-ui/js/gui_components/generator/runtime/create-generator-page-schema-services.js @@ -1,4 +1,4 @@ -import { getKnownFakerCommandsAlphabetical } from '../../shared/faker-commands.js'; +import { getAllowedFakerCommandsAlphabetical } from '../../shared/faker-commands.js'; import { getKnownDomainCommandsAlphabetical } from '../../shared/domain-commands.js'; import { buildSchemaModeHelpHtml } from '../../shared/test-data/help/schema-mode-help-builder.js'; import { createSchemaEditingSession } from '../../shared/test-data/schema/schema-controller.js'; @@ -22,7 +22,7 @@ function createGeneratorPageSchemaServices({ dataRulesToSchemaText, sampleSchemaText, } = {}) { - const fakerCommands = getKnownFakerCommandsAlphabetical().filter( + const fakerCommands = getAllowedFakerCommandsAlphabetical().filter( (command) => command !== 'RegEx' && command.startsWith('helpers.') ); const domainCommands = getKnownDomainCommandsAlphabetical(); diff --git a/packages/core-ui/js/gui_components/shared/dom/details-disclosure-focus.js b/packages/core-ui/js/gui_components/shared/dom/details-disclosure-focus.js new file mode 100644 index 00000000..03b5d3f3 --- /dev/null +++ b/packages/core-ui/js/gui_components/shared/dom/details-disclosure-focus.js @@ -0,0 +1,33 @@ +function setDetailsContentVisibility({ detailsElement, contentElement } = {}) { + if (!detailsElement || !contentElement) { + return; + } + + if (detailsElement.open) { + contentElement.removeAttribute('aria-hidden'); + contentElement.removeAttribute('inert'); + contentElement.inert = false; + return; + } + + contentElement.setAttribute('aria-hidden', 'true'); + contentElement.setAttribute('inert', ''); + contentElement.inert = true; +} + +function bindDetailsContentVisibility({ detailsElement, contentElement } = {}) { + setDetailsContentVisibility({ detailsElement, contentElement }); + + if (!detailsElement) { + return () => {}; + } + + const handleToggle = () => setDetailsContentVisibility({ detailsElement, contentElement }); + detailsElement.addEventListener('toggle', handleToggle); + + return () => { + detailsElement.removeEventListener('toggle', handleToggle); + }; +} + +export { bindDetailsContentVisibility, setDetailsContentVisibility }; diff --git a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js index d7434196..bc4c4d19 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js +++ b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-mapper.js @@ -39,6 +39,14 @@ function createDefaultSchemaRow() { }; } +function clearRowValidationState(row) { + return { + ...row, + semanticValidationIssues: [], + validation: createSchemaRowValidation(), + }; +} + function looksLikeMethodRuleSpec(ruleSpec) { const spec = String(ruleSpec ?? '').trim(); if (!spec) { @@ -104,7 +112,7 @@ function preservePreviousMethodLikeSourceType({ row, previousRow, rawRuleSpec }) } function applySchemaSourceTypeChange(currentRow, nextSourceType) { - const current = currentRow || {}; + const current = clearRowValidationState(currentRow || {}); const resolvedNextSourceType = String(nextSourceType || '') .trim() .toLowerCase(); diff --git a/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js b/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js index 0dc4edac..cf5b4405 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js +++ b/packages/core-ui/js/gui_components/shared/test-data/ui/params-editor-modal.js @@ -2,6 +2,14 @@ import { createHelpTooltipService } from '../../../../help/help-tooltips.js'; import { getDefaultDocumentObj, getDefaultWindowObj, resolveWindowObj } from '../../dom/default-objects.js'; const STYLE_ID = 'params-editor-modal-styles-link'; +const FOCUSABLE_SELECTOR = [ + 'a[href]', + 'button:not([disabled])', + 'input:not([disabled])', + 'select:not([disabled])', + 'textarea:not([disabled])', + '[tabindex]:not([tabindex="-1"])', +].join(','); function escapeHtml(text) { return String(text ?? '') @@ -593,6 +601,57 @@ function renderEntryRows(entries = []) { .join(''); } +function isFocusableElement(element) { + if (!element || typeof element.focus !== 'function') { + return false; + } + if (element.hidden || element.getAttribute?.('aria-hidden') === 'true') { + return false; + } + return true; +} + +function getFocusableElements(rootElement) { + return Array.from(rootElement?.querySelectorAll?.(FOCUSABLE_SELECTOR) || []).filter(isFocusableElement); +} + +function trapTabFocus(event, dialogElement, documentObj) { + if (event.key !== 'Tab') { + return false; + } + + const focusableElements = getFocusableElements(dialogElement); + if (focusableElements.length === 0) { + event.preventDefault(); + dialogElement?.focus?.(); + return true; + } + + const firstElement = focusableElements[0]; + const lastElement = focusableElements[focusableElements.length - 1]; + const activeElement = documentObj?.activeElement; + + if (!dialogElement.contains(activeElement)) { + event.preventDefault(); + (event.shiftKey ? lastElement : firstElement).focus(); + return true; + } + + if (event.shiftKey && activeElement === firstElement) { + event.preventDefault(); + lastElement.focus(); + return true; + } + + if (!event.shiftKey && activeElement === lastElement) { + event.preventDefault(); + firstElement.focus(); + return true; + } + + return false; +} + function openParamsEditorModal({ documentObj = getDefaultDocumentObj(), windowObj = getDefaultWindowObj(), @@ -616,7 +675,7 @@ function openParamsEditorModal({ overlay.setAttribute('data-role', 'params-editor-overlay'); const commandHelpHtml = buildCommandHelpHtml(helpModel, commandLabel); overlay.innerHTML = ` -