From 9c927dde110b861c102ce410351cbce801405ecc Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 17 Jun 2026 14:28:21 +0100 Subject: [PATCH 1/4] upgrade faker to 10.4.0 --- .../docs/040-test-data/domain/070-commerce.md | 24 + .../docs/040-test-data/domain/120-finance.md | 24 - .../docs/040-test-data/domain/160-image.md | 36 - .../docs/040-test-data/domain/170-internet.md | 36 - docs/faker-10.4.0-comparison-report.md | 185 +++ jest.config.cjs | 1 - package.json | 3 +- .../controller/test-data-grid-controller.js | 2 +- .../schema/test-data-command-catalog.js | 10 +- .../gui_components/shared/faker-commands.js | 4 + .../test-data/schema/schema-row-validation.js | 12 +- .../schema/test-data-command-catalog.test.js | 14 +- .../schema-interaction-matrix-summary.md | 722 ++++++---- .../fixtures/schema-interaction-matrix.json | 1212 +++++++++++------ .../schema-interaction-scenario-builder.js | 12 +- .../shared/schema-row-validation.test.js | 20 + .../utils/faker-command-help-metadata.test.js | 4 +- .../js/data_generation/faker/fakerCommand.js | 2 +- ...main-faker-commerce-keyword-definitions.js | 23 + ...omain-faker-finance-keyword-definitions.js | 21 - .../domain-faker-image-keyword-definitions.js | 29 - ...main-faker-internet-keyword-definitions.js | 28 - .../js/faker/faker-command-help-metadata.js | 637 ++++----- packages/core/js/faker/faker-commands.js | 44 +- .../faker/faker-helper-keyword-definitions.js | 48 + packages/core/package.json | 2 +- packages/core/src/index.js | 13 +- .../core-api/generateFromTextSpec.test.js | 6 + .../unit/domain/domain-finance-exec.test.js | 6 - .../unit/domain/domain-image-exec.test.js | 12 - .../unit/domain/domain-internet-exec.test.js | 12 - .../domain-keyword-params-usage.test.js | 1 + .../unit/faker/fakerCommand.test.js | 37 +- pnpm-lock.yaml | 16 +- .../generate-schema-interaction-matrix.mjs | 4 - 35 files changed, 2043 insertions(+), 1219 deletions(-) create mode 100644 docs/faker-10.4.0-comparison-report.md diff --git a/docs-src/docs/040-test-data/domain/070-commerce.md b/docs-src/docs/040-test-data/domain/070-commerce.md index 8cd20d32..a39708f8 100644 --- a/docs-src/docs/040-test-data/domain/070-commerce.md +++ b/docs-src/docs/040-test-data/domain/070-commerce.md @@ -169,3 +169,27 @@ commerce.productName() Example return values: - `Soft Bronze Towels` + +### `commerce.upc` + +Returns a valid UPC-A (12 digits). + +- Canonical: `awd.domain.commerce.upc` +- Faker docs: [https://fakerjs.dev/api/commerce](https://fakerjs.dev/api/commerce) + +| Arg | Type | Required | Description | +| --- | --- | --- | --- | +| `prefix` | `string` | no | Optional numeric prefix for the UPC body (0-11 digits). | + +Examples: + +```txt +commerce.upc() +``` + +```txt +commerce.upc(prefix="01234") +``` + +Example return values: +- `036000291452` diff --git a/docs-src/docs/040-test-data/domain/120-finance.md b/docs-src/docs/040-test-data/domain/120-finance.md index 85e0659d..e9ada0a8 100644 --- a/docs-src/docs/040-test-data/domain/120-finance.md +++ b/docs-src/docs/040-test-data/domain/120-finance.md @@ -339,30 +339,6 @@ finance.litecoinAddress() Example return values: - `M7nWopfUfSjA8cmGWvuENRLu6GU4C1iTK` -### `finance.maskedNumber` - -Generates a random masked number. - -- Canonical: `awd.domain.finance.maskedNumber` -- Faker docs: [https://fakerjs.dev/api/finance](https://fakerjs.dev/api/finance) - -| Arg | Type | Required | Description | -| --- | --- | --- | --- | -| `length` | `number` | no | Desired length of the generated value. | - -Examples: - -```txt -finance.maskedNumber() -``` - -```txt -finance.maskedNumber(length=1) -``` - -Example return values: -- `(...0934)` - ### `finance.pin` Generates a random PIN number. diff --git a/docs-src/docs/040-test-data/domain/160-image.md b/docs-src/docs/040-test-data/domain/160-image.md index 558c96e5..45b1d965 100644 --- a/docs-src/docs/040-test-data/domain/160-image.md +++ b/docs-src/docs/040-test-data/domain/160-image.md @@ -50,24 +50,6 @@ image.avatarGitHub() Example return values: - `https://avatars.githubusercontent.com/u/22969292` -### `image.avatarLegacy` - -Generates a random avatar from `https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar`. - -- Canonical: `awd.domain.image.avatarLegacy` -- Faker docs: [https://fakerjs.dev/api/image](https://fakerjs.dev/api/image) - -No parameters. - -Examples: - -```txt -image.avatarLegacy() -``` - -Example return values: -- `https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1198.jpg` - ### `image.dataUri` Generates a random data uri containing an URL-encoded SVG image or a Base64-encoded SVG image. @@ -164,21 +146,3 @@ image.urlPicsumPhotos() Example return values: - `https://picsum.photos/seed/UBLQun43/2068/162?blur=8` - -### `image.urlPlaceholder` - -Generates a random image url provided via https://via.placeholder.com/. - -- Canonical: `awd.domain.image.urlPlaceholder` -- Faker docs: [https://fakerjs.dev/api/image](https://fakerjs.dev/api/image) - -No parameters. - -Examples: - -```txt -image.urlPlaceholder() -``` - -Example return values: -- `https://via.placeholder.com/2302x1759/a80adf/2de69f.gif?text=utrimque%20summa%20dolores` diff --git a/docs-src/docs/040-test-data/domain/170-internet.md b/docs-src/docs/040-test-data/domain/170-internet.md index 9a8566fd..edd61117 100644 --- a/docs-src/docs/040-test-data/domain/170-internet.md +++ b/docs-src/docs/040-test-data/domain/170-internet.md @@ -14,24 +14,6 @@ The `internet` domain maps domain keywords to underlying faker implementations. ## Methods -### `internet.color` - -Generates a random css hex color code in aesthetically pleasing color palette. - -- Canonical: `awd.domain.internet.color` -- Faker docs: [https://fakerjs.dev/api/internet](https://fakerjs.dev/api/internet) - -No parameters. - -Examples: - -```txt -internet.color() -``` - -Example return values: -- `#290551` - ### `internet.displayName` Generates a display name using the given person's name as base. @@ -464,21 +446,3 @@ internet.username(firstName="Alex", lastName="Taylor") Example return values: - `Deanna51` - -### `internet.userName` - -Generates a username using the given person's name as base. - -- Canonical: `awd.domain.internet.userName` -- Faker docs: [https://fakerjs.dev/api/internet](https://fakerjs.dev/api/internet) - -No parameters. - -Examples: - -```txt -internet.userName() -``` - -Example return values: -- `Ana_Keebler` diff --git a/docs/faker-10.4.0-comparison-report.md b/docs/faker-10.4.0-comparison-report.md new file mode 100644 index 00000000..752a1f0f --- /dev/null +++ b/docs/faker-10.4.0-comparison-report.md @@ -0,0 +1,185 @@ +# Faker 10.4.0 Comparison Report + +Generated: 2026-06-17 + +## Purpose + +This is a one-off comparison between the repo's current curated faker command surface and `@faker-js/faker` `10.4.0`. + +It is scoped to the commands and metadata this repo actually uses: + +- `packages/core/js/faker/faker-commands.js` +- `packages/core/js/faker/faker-command-help-metadata.js` +- `packages/core/js/data_generation/faker/fakerCommand.js` + +## Method + +The comparison used four checks: + +1. Compare the current curated command list against a locally packed `@faker-js/faker@10.4.0`. +2. Resolve each current curated command against the `10.4.0` runtime to find removals. +3. Compare current help/parameter metadata against `10.4.0` type declarations. +4. Run the repo's current `FakerCommand` parser/compiler/validator against both faker `9.7.0` and `10.4.0` to identify upgrade-specific breakpoints versus pre-existing ones. + +## Summary + +- Current curated faker commands: `266` +- Current direct `module.method` commands: `257` +- Public direct `module.method` commands visible in faker `10.4.0`: `261` +- Current curated commands removed in faker `10.4.0`: `5` +- New direct faker `10.4.0` commands not currently curated: `9` +- Current curated property-accessor commands still resolvable in faker `10.4.0`: `9` +- Known breakpoints when exercising current commands through the repo's `FakerCommand` path under faker `10.4.0`: `16` + +## Removed Commands + +These commands are still present in the repo's curated list but do not resolve in faker `10.4.0`: + +| Current command | Suggested replacement | Notes | +| --- | --- | --- | +| `finance.maskedNumber` | Product decision needed | Faker's v10 guidance removes it with no exact one-call replacement. | +| `image.avatarLegacy` | `image.avatar` or `image.personPortrait` | `image.avatar` is the closest current repo fit. | +| `image.urlPlaceholder` | `image.dataUri` or `image.url` | `image.dataUri` is the closest documented replacement. | +| `internet.color` | `color.rgb` | Explicit faker replacement guidance. | +| `internet.userName` | `internet.username` | Explicit faker replacement guidance. | + +These removals line up with the current curated list in `packages/core/js/faker/faker-commands.js`, where the deprecated entries are still present today. + +## Deprecated Commands Still Present Before The Upgrade + +These are already on borrowed time in the current curation and should be addressed as part of the upgrade: + +- `finance.maskedNumber` +- `image.avatarLegacy` +- `image.urlPlaceholder` +- `internet.userName` +- `internet.color` +- `image.urlLoremFlickr` + +`image.urlLoremFlickr` still resolves in faker `10.4.0`, but the runtime emitted a deprecation warning saying it has been deprecated since `10.1.0` and is scheduled for removal in `11.0.0`. + +## New Public Commands In Faker 10.4.0 + +These direct faker commands exist in `10.4.0` but are not currently curated in this repo: + +| Command | Likely action | +| --- | --- | +| `commerce.upc` | Candidate addition if we want new user-facing coverage. | +| `helpers.enumValue` | Candidate addition. | +| `helpers.objectEntry` | Candidate addition. | +| `helpers.objectKey` | Candidate addition. | +| `helpers.objectValue` | Candidate addition. | +| `airline.airline` | Already indirectly represented by accessor commands such as `airline.airline.name`. | +| `airline.airplane` | Already indirectly represented by accessor commands such as `airline.airplane.name`. | +| `airline.airport` | Already indirectly represented by accessor commands such as `airline.airport.name`. | +| `science.chemicalElement` | Already indirectly represented by accessor commands such as `science.chemicalElement.symbol`. | + +The practical net-new curation candidates are: + +- `commerce.upc` +- `helpers.enumValue` +- `helpers.objectEntry` +- `helpers.objectKey` +- `helpers.objectValue` + +## Signature And Metadata Amendments + +The comparison found meaningful metadata changes we should expect to reflect if we regenerate and review help: + +| Command | Current metadata | Faker 10.4.0 observation | +| --- | --- | --- | +| `person.firstName` | `sex?: 'female' \| 'male'` | widens to `sex?: 'female' \| 'generic' \| 'male'` | +| `person.lastName` | `sex?: 'female' \| 'male'` | widens to `sex?: 'female' \| 'generic' \| 'male'` | +| `person.middleName` | `sex?: 'female' \| 'male'` | widens to `sex?: 'female' \| 'generic' \| 'male'` | +| `person.prefix` | `sex?: 'female' \| 'male'` | widens to `sex?: 'female' \| 'generic' \| 'male'` | +| `person.sexType` | no params | now exposes an optional `options` object | +| `string.uuid` | no params | now exposes an `options` object in typings | + +Additional helper methods such as `helpers.arrayElement`, `helpers.arrayElements`, `helpers.maybe`, `helpers.multiple`, `helpers.shuffle`, `helpers.uniqueArray`, and `helpers.weightedArrayElement` still resolve at runtime, but the one-off type-extraction pass did not recover clean parameter metadata for them from faker `10.4.0`'s declarations. Treat those as manual review items when regenerating help. + +## Current Property-Accessor Commands Still Supported + +These existing curated commands still resolve in faker `10.4.0` through function-plus-property access: + +- `airline.airport.name` +- `airline.airport.iataCode` +- `airline.airline.name` +- `airline.airline.iataCode` +- `airline.airplane.name` +- `airline.airplane.iataTypeCode` +- `science.chemicalElement.symbol` +- `science.chemicalElement.name` +- `science.chemicalElement.atomicNumber` + +This matters because faker `10.4.0` now exposes the parent object-returning functions directly: + +- `airline.airport` +- `airline.airline` +- `airline.airplane` +- `science.chemicalElement` + +## Known Breakpoints + +This section separates upgrade-specific breakpoints from issues that already reproduce against faker `9.7.0`. + +### Upgrade-Specific Breakpoints + +These failures are introduced by the `10.4.0` upgrade because the commands are removed there: + +| Command | Failure seen through current `FakerCommand` path | +| --- | --- | +| `finance.maskedNumber` | `Could not find Faker API Command finance.maskedNumber {finance.maskedNumber}` | +| `image.avatarLegacy` | `Could not find Faker API Command image.avatarLegacy {image.avatarLegacy}` | +| `image.urlPlaceholder` | `Could not find Faker API Command image.urlPlaceholder {image.urlPlaceholder}` | +| `internet.userName` | `Could not find Faker API Command internet.userName {internet.userName}` | +| `internet.color` | `Could not find Faker API Command internet.color {internet.color}` | + +### Pre-Existing Breakpoints Also Reproduced Under Faker 9.7.0 + +These failures also occurred when the same smoke test was run against faker `9.7.0`, so they are not new to the upgrade: + +| Command | Faker 10.4.0 failure | Interpretation | +| --- | --- | --- | +| `date.between` | `Cannot destructure property 'from'...` | Requires arguments; current zero-arg validation path is not a useful compatibility signal. | +| `date.betweens` | `Cannot destructure property 'from'...` | Requires arguments; same category as above. | +| `helpers.fake` | `Cannot read properties of undefined (reading 'length')` | Requires meaningful input; current no-arg validation path already fails today. | +| `helpers.maybe` | `e is not a function` | Callback-dependent helper; current no-arg validation path already fails today. | +| `helpers.arrayElement` | `Cannot read properties of undefined (reading 'length')` | Requires array input; current no-arg validation path already fails today. | +| `helpers.shuffle` | `e is not iterable` | Requires array input; current no-arg validation path already fails today. | +| `helpers.weightedArrayElement` | `Cannot read properties of undefined (reading 'length')` | Requires weighted array input; current no-arg validation path already fails today. | +| `helpers.arrayElements` | `Cannot read properties of undefined (reading 'length')` | Requires array input; current no-arg validation path already fails today. | +| `string.fromCharacters` | `Cannot read properties of undefined (reading 'length')` | Requires input characters/options; current no-arg validation path already fails today. | +### Parser Hotspot Behind `ipv4` And `ipv6` + +The original comparison surfaced `internet.ipv4` and `internet.ipv6` as parser-path failures, not faker removals: + +- `packages/core/js/data_generation/faker/fakerCommand.js` was only accepting path segments that matched `^([A-Za-z]*)$` +- that excluded numeric characters inside segment names such as `ipv4` and `ipv6` + +That parser issue has now been fixed in the current worktree by allowing digits after the first character in faker path segments. The upgrade work should still treat `ipv4` and `ipv6` as supported commands rather than migration removals. + +## Recommended Upgrade Follow-Up + +Recommended sequence for issue `#225`: + +1. Remove or replace the five commands that faker `10.4.0` no longer resolves. +2. Decide whether to add the five meaningful new commands: + `commerce.upc`, `helpers.enumValue`, `helpers.objectEntry`, `helpers.objectKey`, `helpers.objectValue`. +3. Regenerate faker help metadata and manually review helper-command parameter docs that the type-extraction pass does not recover cleanly. +4. Update any domain/help/method-picker surfaces that still expose removed commands. +5. Optionally fix the `ipv4` / `ipv6` parser constraint in `FakerCommand` so the curated list matches real runtime capability more closely. + +Decisions: + +1. Remove the five commands that faker `10.4.0` no longer resolves. +2. add the five meaningful new commands: + `commerce.upc`, `helpers.enumValue`, `helpers.objectEntry`, `helpers.objectKey`, `helpers.objectValue`. +3. Regenerate faker help metadata and manually review helper-command parameter docs that the type-extraction pass does not recover cleanly. +4. Update any domain/help/method-picker surfaces that still expose removed commands. +5. fix the `ipv4` / `ipv6` parser constraint in `FakerCommand` so the curated list matches real runtime capability more closely. + +## Caveats + +- This report intentionally focuses on the repo's curated faker surface, not every API symbol faker exports. +- Some helper-method parameter differences in faker `10.4.0` need manual review because the declaration-extraction pass does not perfectly recover every helper signature. +- The runtime breakpoint smoke test is useful for surfacing removals and parser mismatches, but commands that require arguments will naturally fail when executed with no arguments. diff --git a/jest.config.cjs b/jest.config.cjs index f514d19b..1e3ca63c 100644 --- a/jest.config.cjs +++ b/jest.config.cjs @@ -14,7 +14,6 @@ module.exports = { '^@anywaydata/core$': '/packages/core/src/index.js', '^@anywaydata/core/(.*)$': '/packages/core/js/$1', '^@anywaydata/core/data_formats/(.*)$': '/packages/core/js/data_formats/$1', - 'https://cdn.skypack.dev/@faker-js/faker@v9.7.0': '@faker-js/faker', 'https://unpkg.com/papaparse@5.5.2/papaparse.min.js': 'papaparse', '/libs/randexp.min.js': 'randexp', }, diff --git a/package.json b/package.json index 5ba7fcc4..d24b7e35 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,6 @@ "^@anywaydata/core/mcp/(.*)$": "/packages/core/js/mcp/$1", "^@anywaydata/core/(.*)$": "/packages/core/js/$1", "^@anywaydata/core/data_formats/(.*)$": "/packages/core/js/data_formats/$1", - "https://cdn.skypack.dev/@faker-js/faker@v9.7.0": "@faker-js/faker", "https://unpkg.com/papaparse@5.5.2/papaparse.min.js": "papaparse", "/libs/randexp.min.js": "randexp" } @@ -114,7 +113,7 @@ "@babel/preset-env": "7.29.5", "@changesets/cli": "2.31.0", "@eslint/js": "10.0.1", - "@faker-js/faker": "9.7.0", + "@faker-js/faker": "10.4.0", "@playwright/test": "1.60.0", "@storybook/addon-a11y": "10.4.1", "@storybook/addon-docs": "10.4.1", diff --git a/packages/core-ui/js/gui_components/app/test-data-grid/controller/test-data-grid-controller.js b/packages/core-ui/js/gui_components/app/test-data-grid/controller/test-data-grid-controller.js index c1c6dd63..8a801d20 100644 --- a/packages/core-ui/js/gui_components/app/test-data-grid/controller/test-data-grid-controller.js +++ b/packages/core-ui/js/gui_components/app/test-data-grid/controller/test-data-grid-controller.js @@ -51,7 +51,7 @@ import { createConfirmDialogService } from '../../../shared/dialog-services/conf import { createTextInputDialogService } from '../../../shared/dialog-services/text-input-dialog-service.js'; import { DEFAULT_ENUM_LIMIT, createEnumSchemaRowsFromGrid, normaliseEnumLimit } from '../schema/grid-to-enum-schema.js'; -import { faker } from 'https://cdn.skypack.dev/@faker-js/faker@v9.7.0'; +import { faker } from '@faker-js/faker'; function createTestDataGenerationPanelManager({ documentObj, diff --git a/packages/core-ui/js/gui_components/app/test-data-grid/schema/test-data-command-catalog.js b/packages/core-ui/js/gui_components/app/test-data-grid/schema/test-data-command-catalog.js index d0f7893b..a49a3a60 100644 --- a/packages/core-ui/js/gui_components/app/test-data-grid/schema/test-data-command-catalog.js +++ b/packages/core-ui/js/gui_components/app/test-data-grid/schema/test-data-command-catalog.js @@ -6,8 +6,8 @@ */ import { - getKnownFakerCommandsAlphabetical, - getKnownFakerCommandsLongestFirst, + getAllowedFakerCommandsAlphabetical, + getAllowedFakerCommandsLongestFirst, } from '../../../shared/faker-commands.js'; import { getKnownDomainCommandsAlphabetical, @@ -28,10 +28,10 @@ function identifyFakerCommands() { DOMAIN_COMMANDS_LONGEST_FIRST.length = 0; TOP_LEVEL_TYPE_OPTIONS.forEach((typeOption) => FAKER_COMMANDS.push(typeOption)); - getKnownFakerCommandsAlphabetical() + getAllowedFakerCommandsAlphabetical() .filter((command) => command !== 'RegEx' && command.startsWith('helpers.')) .forEach((command) => FAKER_COMMANDS.push(command)); - getKnownFakerCommandsLongestFirst() + getAllowedFakerCommandsLongestFirst() .filter((command) => command.startsWith('helpers.')) .forEach((command) => FAKER_COMMANDS_LONGEST_FIRST.push(command)); getKnownDomainCommandsAlphabetical().forEach((command) => DOMAIN_COMMANDS.push(command)); @@ -57,7 +57,7 @@ function getMethodPickerOptions(currentValue = '') { commands: getKnownDomainCommandsAlphabetical(), currentCommand: String(currentValue || '').trim(), }); - const fakerCommands = getKnownFakerCommandsAlphabetical().filter( + const fakerCommands = getAllowedFakerCommandsAlphabetical().filter( (command) => command !== 'RegEx' && command.startsWith('helpers.') ); const options = [...typeOptions]; diff --git a/packages/core-ui/js/gui_components/shared/faker-commands.js b/packages/core-ui/js/gui_components/shared/faker-commands.js index 34882344..b7d7336f 100644 --- a/packages/core-ui/js/gui_components/shared/faker-commands.js +++ b/packages/core-ui/js/gui_components/shared/faker-commands.js @@ -1,5 +1,9 @@ export { KNOWN_FAKER_COMMANDS, + FORBIDDEN_FAKER_COMMANDS, + getAllowedFakerCommandsAlphabetical, + getAllowedFakerCommandsLongestFirst, getKnownFakerCommandsAlphabetical, getKnownFakerCommandsLongestFirst, + isForbiddenFakerCommand, } from '@anywaydata/core/faker/faker-commands.js'; diff --git a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-validation.js b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-validation.js index b301ef6f..cff80e3c 100644 --- a/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-validation.js +++ b/packages/core-ui/js/gui_components/shared/test-data/schema/schema-row-validation.js @@ -8,7 +8,7 @@ import { buildRuleSpecFromSchemaRow, } from '../../schema-row-rule-mapper.js'; import { Faker } from '@faker-js/faker'; -import { getKnownFakerCommandsAlphabetical } from '../../faker-commands.js'; +import { getKnownFakerCommandsAlphabetical, isForbiddenFakerCommand } from '../../faker-commands.js'; import { getKnownDomainCommandsAlphabetical } from '../../domain-commands.js'; const KNOWN_FAKER_COMMANDS = new Set( @@ -130,6 +130,16 @@ function getStaticSchemaRowValidationIssues(row, rowIndex) { }) ); } + if (isForbiddenFakerCommand(command)) { + issues.push( + createRowValidationIssue({ + rowIndex, + code: 'forbidden_faker_command', + field: 'command', + message: `Row ${rowIndex + 1}: faker command "${command}" is known but not allowed for schema/API use.`, + }) + ); + } if (rawParams.length > 0 && normaliseCommandParams(rawParams) !== rawParams) { issues.push( createRowValidationIssue({ diff --git a/packages/core-ui/src/tests/grid/schema/test-data-command-catalog.test.js b/packages/core-ui/src/tests/grid/schema/test-data-command-catalog.test.js index 88e2b697..b6cdbe69 100644 --- a/packages/core-ui/src/tests/grid/schema/test-data-command-catalog.test.js +++ b/packages/core-ui/src/tests/grid/schema/test-data-command-catalog.test.js @@ -2,6 +2,7 @@ import { describe, it, expect, beforeEach } from '@jest/globals'; import { faker } from '@faker-js/faker'; import RandExp from 'randexp'; import { TestDataGenerator } from '@anywaydata/core/data_generation/testDataGenerator.js'; +import { FORBIDDEN_FAKER_COMMANDS } from '../../../../js/gui_components/shared/faker-commands.js'; import { identifyFakerCommands, getFakerCommands, @@ -47,13 +48,11 @@ describe('Test Data Command Catalog', () => { expect(commands).toContain('helpers.arrayElement'); }); - it('should exclude bad helpers commands', () => { + it('should not include forbidden helper commands in the catalog', () => { const commands = getFakerCommands(); - // These helpers are known to be unsuitable - expect(commands).not.toContain('helpers.objectKey'); - expect(commands).not.toContain('helpers.objectValue'); - expect(commands).not.toContain('helpers.objectEntry'); - expect(commands).not.toContain('helpers.enumValue'); + FORBIDDEN_FAKER_COMMANDS.forEach((command) => { + expect(commands).not.toContain(command); + }); }); it('should sort commands by descending length to avoid prefix collisions', () => { @@ -86,6 +85,9 @@ describe('Test Data Command Catalog', () => { expect(domainEntry?.sourceType).toBe('domain'); expect(fakerEntry?.sourceType).toBe('faker'); expect(Array.isArray(domainEntry?.helpModel?.params)).toBe(true); + FORBIDDEN_FAKER_COMMANDS.forEach((command) => { + expect(values.map((entry) => entry.command)).not.toContain(command); + }); }); it('should keep non-scalar domain commands out of default picker options', () => { 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 index 166d3c0c..c577f72c 100644 --- 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 @@ -1,6 +1,6 @@ # Schema Interaction Matrix Summary -Generated: `2026-06-13T09:26:58.331Z` +Generated: `2026-06-17T13:02:55.544Z` This file describes what the interaction matrix covers. @@ -10,8 +10,8 @@ This file describes what the interaction matrix covers. ## Coverage Scenarios -Scenario count: **632** -Generated preview data count: **621** +Scenario count: **642** +Generated preview data count: **631** Review-only scenario count: **0** Non-executable scenario count: **11** @@ -19,7 +19,7 @@ Non-executable scenario count: **11** | Key | Count | | --- | ---: | -| `domain` | 572 | +| `domain` | 582 | | `enum` | 2 | | `faker` | 54 | | `literal` | 2 | @@ -29,17 +29,17 @@ Non-executable scenario count: **11** | Key | Count | | --- | ---: | -| `arg` | 216 | -| `base` | 259 | +| `arg` | 222 | +| `base` | 256 | | `custom` | 6 | | `empty` | 2 | -| `example` | 30 | -| `pair` | 121 | +| `example` | 33 | +| `pair` | 125 | | `pairwise` | 1 | ### Commands By Source Type -#### `domain` (245) +#### `domain` (242) - `airline.aircraftType` - `airline.flightNumber` @@ -68,6 +68,7 @@ Non-executable scenario count: **11** - `animal.snake` - `animal.type` - `autoIncrement.sequence` +- `autoIncrement.timestamp` - `book.author` - `book.format` - `book.genre` @@ -90,6 +91,7 @@ Non-executable scenario count: **11** - `commerce.productDescription` - `commerce.productMaterial` - `commerce.productName` +- `commerce.upc` - `company.buzzAdjective` - `company.buzzNoun` - `company.buzzPhrase` @@ -131,7 +133,6 @@ Non-executable scenario count: **11** - `finance.ethereumAddress` - `finance.iban` - `finance.litecoinAddress` -- `finance.maskedNumber` - `finance.pin` - `finance.routingNumber` - `finance.transactionDescription` @@ -158,14 +159,11 @@ Non-executable scenario count: **11** - `hacker.verb` - `image.avatar` - `image.avatarGitHub` -- `image.avatarLegacy` - `image.dataUri` - `image.personPortrait` - `image.url` - `image.urlLoremFlickr` - `image.urlPicsumPhotos` -- `image.urlPlaceholder` -- `internet.color` - `internet.displayName` - `internet.domainName` - `internet.domainSuffix` @@ -187,7 +185,6 @@ Non-executable scenario count: **11** - `internet.url` - `internet.userAgent` - `internet.username` -- `internet.userName` - `literal.value` - `location.buildingNumber` - `location.cardinalDirection` @@ -479,7 +476,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"Melvin" +"Douglas" ``` #### `faker-helpers-fake-example-1` @@ -489,7 +486,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"Hi, my name is Ardith Weber!" +"Hi, my name is Rhonda Wyman!" ``` #### `faker-helpers-fake-arg-pattern` @@ -1239,6 +1236,123 @@ Non-executable scenario count: **11** "001.txt" ``` +#### `domain-autoIncrement-timestamp-base` + +- Command(s): `autoIncrement.timestamp()` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-example-1` + +- Command(s): `autoIncrement.timestamp()` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-example-2` + +- Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` +- Preview data: +```csv +"Value" +"1969-03-20T12:00:00Z" +``` + +#### `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 +"Value" +"2026-06-12 11:39:23" +``` + +#### `domain-autoIncrement-timestamp-arg-start` + +- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` +- Preview data: +```csv +"Value" +"2026-06-12T12:39:23Z" +``` + +#### `domain-autoIncrement-timestamp-arg-step` + +- Command(s): `autoIncrement.timestamp(step=1)` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-type` + +- Command(s): `autoIncrement.timestamp(type="seconds")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-outputFormat` + +- Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-inputFormat` + +- Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-start-step` + +- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` +- Preview data: +```csv +"Value" +"2026-06-12T12:39:23Z" +``` + +#### `domain-autoIncrement-timestamp-pair-step-type` + +- Command(s): `autoIncrement.timestamp(step=1, type="seconds")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-type-outputFormat` + +- Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` + +- Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + #### `domain-book-author-base` - Command(s): `book.author()` @@ -1600,6 +1714,24 @@ Non-executable scenario count: **11** "Practical Aluminum Shirt" ``` +#### `domain-commerce-upc-base` + +- Command(s): `commerce.upc()` +- Preview data: +```csv +"Value" +"930326813865" +``` + +#### `domain-commerce-upc-arg-prefix` + +- Command(s): `commerce.upc(prefix="01234")` +- Preview data: +```csv +"Value" +"012345065699" +``` + #### `domain-company-buzzAdjective-base` - Command(s): `company.buzzAdjective()` @@ -1678,7 +1810,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"Yundt, Boehm and Roob" +"Roob, Schmidt and Jacobi-Lind" ``` #### `domain-database-collation-base` @@ -1753,13 +1885,22 @@ Non-executable scenario count: **11** "active" ``` +#### `domain-datatype-enum-arg-values` + +- Command(s): `datatype.enum(values="datatype-enum-values")` +- Preview data: +```csv +"Value" +"values=datatype-enum-values" +``` + #### `domain-date-anytime-base` - Command(s): `date.anytime()` - Preview data: ```csv "Value" -"2026-06-22T18:25:06.486Z" +"2026-06-26T22:01:03.744Z" ``` #### `domain-date-anytime-arg-refDate` @@ -1813,7 +1954,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1957-08-17T18:20:18.489Z" +"1957-08-21T21:56:15.746Z" ``` #### `domain-date-birthdate-example-1` @@ -1841,7 +1982,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1979-07-05T22:27:06.933Z" +"1979-07-10T02:03:04.191Z" ``` #### `domain-date-birthdate-arg-min` @@ -1850,7 +1991,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1970-08-31T13:50:34.426Z" +"1970-09-04T17:26:31.684Z" ``` #### `domain-date-birthdate-arg-mode` @@ -1859,7 +2000,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1989-12-13T01:17:45.847Z" +"1989-12-17T04:53:43.105Z" ``` #### `domain-date-birthdate-pair-refDate-max` @@ -1877,7 +2018,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1979-10-24T16:49:36.678Z" +"1979-10-28T20:25:33.935Z" ``` #### `domain-date-birthdate-pair-min-mode` @@ -1886,7 +2027,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"1970-04-18T19:33:08.429Z" +"1970-04-22T23:09:05.686Z" ``` #### `domain-date-future-base` @@ -1895,7 +2036,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-09-28T04:49:15.231Z" +"2026-10-02T08:25:12.488Z" ``` #### `domain-date-future-arg-refDate` @@ -1913,7 +2054,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2027-12-10T23:32:25.536Z" +"2027-12-15T03:08:22.793Z" ``` #### `domain-date-future-pair-refDate-years` @@ -1967,7 +2108,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-01-11T02:28:13.403Z" +"2026-01-15T06:04:10.661Z" ``` #### `domain-date-past-arg-refDate` @@ -1985,7 +2126,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2025-06-15T15:28:06.798Z" +"2025-06-19T19:04:04.055Z" ``` #### `domain-date-past-pair-refDate-years` @@ -2003,7 +2144,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-06-13T09:17:28.292Z" +"2026-06-17T12:53:25.549Z" ``` #### `domain-date-recent-arg-days` @@ -2012,7 +2153,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-06-11T15:05:30.962Z" +"2026-06-15T18:41:28.219Z" ``` #### `domain-date-recent-arg-refDate` @@ -2039,7 +2180,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-06-13T11:18:11.053Z" +"2026-06-17T14:54:08.311Z" ``` #### `domain-date-soon-arg-days` @@ -2048,7 +2189,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"2026-06-15T03:45:59.281Z" +"2026-06-19T07:21:56.539Z" ``` #### `domain-date-soon-arg-refDate` @@ -2384,24 +2525,6 @@ Non-executable scenario count: **11** "387GmSW4s1E1t16xYaNCi9zgLtV5cDM" ``` -#### `domain-finance-maskedNumber-base` - -- Command(s): `finance.maskedNumber()` -- Preview data: -```csv -"Value" -"(...1483)" -``` - -#### `domain-finance-maskedNumber-arg-length` - -- Command(s): `finance.maskedNumber(length=4)` -- Preview data: -```csv -"Value" -"(...7138)" -``` - #### `domain-finance-pin-base` - Command(s): `finance.pin()` @@ -2435,7 +2558,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"payment processed at Ullrich LLC for PKR 490.00, using card ending ****1272. Account: ***8641." +"payment processed at Parker Inc for CRC 202.96, using card ending ****7286. Account: ***4194." ``` #### `domain-finance-transactionType-base` @@ -2471,7 +2594,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"Passionfruit Pie" +"Peach And Tangelo Tart" ``` #### `domain-food-ethnicCategory-base` @@ -2489,7 +2612,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"grape" +"grapefruit" ``` #### `domain-food-ingredient-base` @@ -2525,7 +2648,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"lettuce" +"leeks" ``` #### `domain-git-branch-base` @@ -2543,7 +2666,7 @@ Non-executable scenario count: **11** - Preview data: ```csv "Value" -"Fri Jun 12 10:15:16 2026 -0700" +"Tue Jun 16 13:51:13 2026 -0700" ``` #### `domain-git-commitEntry-base` @@ -2553,10 +2676,10 @@ Non-executable scenario count: **11** ```csv "Value" "commit 7738bbde748c2e27e1520b9bf8bb637a48e2feaa -Author: Josie Russel -Date: Fri Jun 12 11:00:32 2026 +0700 +Author: Norberto.Robel36 +Date: Wed Jun 17 09:26:44 2026 +0900 -    transmit solid state protocol +    transmit open-source application " ``` @@ -2620,7 +2743,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"compressing the array won't do anything, we need to bypass the cross-platform PCI alarm!" +"connecting the array won't do anything, we need to bypass the 1080p IP capacitor!" ``` #### `domain-hacker-verb-base` @@ -2650,15 +2773,6 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "https://avatars.githubusercontent.com/u/16590067" ``` -#### `domain-image-avatarLegacy-base` - -- Command(s): `image.avatarLegacy()` -- Preview data: -```csv -"Value" -"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/8.jpg" -``` - #### `domain-image-dataUri-base` - Command(s): `image.dataUri()` @@ -2683,7 +2797,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3937/617?lock=3931926876699204" +"https://picsum.photos/seed/rXzuqSX/3937/617" ``` #### `domain-image-url-arg-height` @@ -2692,7 +2806,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3193/2?lock=3191839961479511" +"https://picsum.photos/seed/lDB434I/3193/2" ``` #### `domain-image-url-arg-width` @@ -2701,7 +2815,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://picsum.photos/seed/3UIYDPaNWB/3/984" +"https://picsum.photos/seed/V3UIYDPa/3/984" ``` #### `domain-image-url-pair-height-width` @@ -2710,7 +2824,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3/2?lock=7146576591433292" +"https://picsum.photos/seed/N4LRBx/3/2" ``` #### `domain-image-urlLoremFlickr-base` @@ -2731,31 +2845,13 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "https://picsum.photos/seed/s9gojEHeQ/1634/3581?grayscale&blur=1" ``` -#### `domain-image-urlPlaceholder-base` - -- Command(s): `image.urlPlaceholder()` -- Preview data: -```csv -"Value" -"https://via.placeholder.com/3214x1881/defd36/91bc2c.jpg?text=comedo%20vespillo%20venio" -``` - -#### `domain-internet-color-base` - -- Command(s): `internet.color()` -- Preview data: -```csv -"Value" -"#2f0204" -``` - #### `domain-internet-displayName-base` - Command(s): `internet.displayName()` - Preview data: ```csv "Value" -"Demetrius.Kuhlman" +"Jaylin5" ``` #### `domain-internet-domainName-base` @@ -2791,7 +2887,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brian42@yahoo.com" +"Hulda22@hotmail.com" ``` #### `domain-internet-email-arg-allowSpecialCharacters` @@ -2800,7 +2896,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brant=Abernathy@hotmail.com" +"Adrienne_Mitchell56@yahoo.com" ``` #### `domain-internet-email-arg-firstName` @@ -2809,7 +2905,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada.Schumm@gmail.com" +"Ada.Bednar49@gmail.com" ``` #### `domain-internet-email-arg-lastName` @@ -2818,7 +2914,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Gavin.Lovelace62@yahoo.com" +"Mandy.Lovelace@hotmail.com" ``` #### `domain-internet-email-arg-provider` @@ -2827,7 +2923,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Viola.Torphy@example.com" +"Shany.Mertz@example.com" ``` #### `domain-internet-email-pair-allowSpecialCharacters-firstName` @@ -2836,7 +2932,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada93@hotmail.com" +"Ada_Rau@yahoo.com" ``` #### `domain-internet-email-pair-firstName-lastName` @@ -2845,7 +2941,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada.Lovelace55@yahoo.com" +"Ada.Lovelace55@hotmail.com" ``` #### `domain-internet-email-pair-lastName-provider` @@ -2854,7 +2950,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Euna.Lovelace@example.com" +"Nora_Lovelace@example.com" ``` #### `domain-internet-emoji-base` @@ -2863,7 +2959,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"🐆" +"🏵️" ``` #### `domain-internet-emoji-arg-types` @@ -2872,7 +2968,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"🫑" +"🍖" ``` #### `domain-internet-exampleEmail-base` @@ -2881,7 +2977,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Hulda5@example.org" +"Amalia_Bednar@example.com" ``` #### `domain-internet-httpMethod-base` @@ -2962,7 +3058,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJIUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODEyNTc5ODUsImV4cCI6MTc4MTMxNDA2NiwibmJmIjoxNzc4MDQ5MDY3LCJpc3MiOiJTYXR0ZXJmaWVsZCBHcm91cCIsInN1YiI6IjYxMzIwNjNhLTE5MjktNDkwZi1iNWNhLTM2MWU2NmM1MmRkNCIsImF1ZCI6IjQwNjEwNWNkLTE2MjgtNDA4Yi1iN2EyLWQ2NmM1M2Y3NGFiNSIsImp0aSI6IjU4YmNiMzdkLTRkOGEtNGYyZS04ZDNmLTQyMGM4MGExNGMwNCJ9.MLGSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDw" +"eyJhbGciOiJFUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2MTY1NDIsImV4cCI6MTc4MTY3MjYyMywibmJmIjoxNzc4NDA3NjI1LCJpc3MiOiJIb3dlIEdyb3VwIiwic3ViIjoiMzIwNjNhMTktMjk5MC00ZjVjLThhMzYtMWU2NmM1MmRkNGY0IiwiYXVkIjoiNjEwNWNkMTYtMjgwOC00YjdhLWEyZDYtNmM1M2Y3NGFiNWQ1IiwianRpIjoiYmNiMzdkNGQtOGFmMi00ZWQzLWJmNDItMGM4MGExNGMwNDFjIn0.GSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDwsi" ``` #### `domain-internet-jwt-arg-header` @@ -2971,7 +3067,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"e30.eyJpYXQiOjE3ODEyNjc2OTEsImV4cCI6MTc4MTI5MDE0MywibmJmIjoxNzg3NjEwNDYwLCJpc3MiOiJGYWhleSwgS2lobiBhbmQgUmVpY2hlcnQiLCJzdWIiOiIxYzQyMmU2ZS1lNzcxLTRmMDAtYmU3OS02NzAwNGViZjg1OGYiLCJhdWQiOiI5MmY3OTFiMy0wYTI5LTQ4ZjItOWUxZS00MGU1Yzk2NTkzYWQiLCJqdGkiOiJkNzk2YzA3Yy0zNjRmLTQzNjgtYWJhZS00N2M3NTExODk4MWEifQ.e8QhcTHj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWk" +"e30.eyJpYXQiOjE3ODE2MjYyNDksImV4cCI6MTc4MTY0ODcwMSwibmJmIjoxNzg3OTY5MDE3LCJpc3MiOiJSZWljaGVydCwgR3JhbnQgYW5kIFZvblJ1ZWRlbiIsInN1YiI6IjZlZTc3MWYwLTBlNzktNDY3MC04MDRlLWJmODU4ZmM5MmY3OSIsImF1ZCI6ImIzMGEyOThmLTJlMWUtNDQwZS04NWM5LTY1OTNhZDVkNzk2YyIsImp0aSI6IjdjMzY0ZjM2LThiYWUtNDQ3Yy1iNzUxLTE4OTgxYTkzMmQ0MyJ9.Hj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWkqAp5aj" ``` #### `domain-internet-jwt-arg-payload` @@ -2980,7 +3076,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" +"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" ``` #### `domain-internet-jwt-arg-refDate` @@ -2989,7 +3085,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiU2lwZXMsIEJhdHogYW5kIExvd2UiLCJzdWIiOiIxZWVhZGYwNC0zMDQ2LTRkYmItOWVhNC0yMGY1Zjg5N2Y2YWQiLCJhdWQiOiI2ZmJhMDFiYS0yMWY0LTRlZTQtYmVlZC1iZjA2MDlhMTNkMzAiLCJqdGkiOiI0NDFlMWI4ZC00MmFhLTQzM2UtODA0Ni05YmNiZmFjY2ZjZGIifQ.ShTkX7nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4" +"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiTG93ZSwgV2F0c2ljYSBhbmQgV2l6YSIsInN1YiI6IjA0MzA0NmRiLWJlYTQtNDIwZi04NWY4LTk3ZjZhZDc2ZmJhMCIsImF1ZCI6ImJhMjFmNGVlLTRlZWQtNGJmMC1hNjA5LWExM2QzMGY0NDFlMSIsImp0aSI6IjhkNDJhYTMzLWUwNDYtNDliYy04YmZhLWNjZmNkYjNlNGU1ZiJ9.nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4UrH0jN" ``` #### `domain-internet-jwt-pair-header-payload` @@ -3007,7 +3103,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" +"eyJhbGciOiJQUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" ``` #### `domain-internet-jwtAlgorithm-base` @@ -3016,7 +3112,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"ES256" +"PS256" ``` #### `domain-internet-mac-base` @@ -3152,7 +3248,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://pleasing-scrap.biz/" +"https://pleasing-scrap.com/" ``` #### `domain-internet-url-arg-protocol` @@ -3179,7 +3275,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/560.22 (KHTML, like Gecko) Chrome/100.9.0.1 Safari/555.7 Edg/113.8.7.15" +"Googlebot/2.1 (+http://www.google.com/bot.html)" ``` #### `domain-internet-username-base` @@ -3188,7 +3284,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Kailey2" +"Jeremiah.Shanahan" ``` #### `domain-internet-username-arg-firstName` @@ -3197,7 +3293,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada_Bode" +"Ada_Metz53" ``` #### `domain-internet-username-arg-lastName` @@ -3206,7 +3302,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Dallin.Lovelace" +"Carla_Lovelace" ``` #### `domain-internet-username-pair-firstName-lastName` @@ -3218,15 +3314,6 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "Ada.Lovelace" ``` -#### `domain-internet-userName-base` - -- Command(s): `internet.userName()` -- Preview data: -```csv -"Value" -"Marlee30" -``` - #### `domain-literal-value-base` - Command(s): `literal.value()` @@ -3496,7 +3583,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brown Trafficway" +"Gerhold Creek" ``` #### `domain-location-streetAddress-base` @@ -3505,7 +3592,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"428 Grant Walks" +"428 Kunze-Johnston Trafficway" ``` #### `domain-location-streetAddress-arg-useFullAddress` @@ -4656,7 +4743,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Osbaldo" +"Moses" ``` #### `domain-person-firstName-arg-sex` @@ -4665,7 +4752,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Jon" +"Stephen" ``` #### `domain-person-fullName-base` @@ -4674,7 +4761,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Dixie Beer" +"Candace Champlin" ``` #### `domain-person-gender-base` @@ -4728,7 +4815,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Koss" +"Pacocha" ``` #### `domain-person-lastName-arg-sex` @@ -4746,7 +4833,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Reagan" +"Luke" ``` #### `domain-person-middleName-arg-sex` @@ -4755,7 +4842,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Harrison" +"Ezra" ``` #### `domain-person-prefix-base` @@ -4764,7 +4851,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Dr." +"Miss" ``` #### `domain-person-prefix-arg-sex` @@ -5338,7 +5425,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"01KV04WM3F4MY648F8XPVTRQE9" +"01KVATTXNN4MY648F8XPVTRQE9" ``` #### `domain-string-ulid-arg-refDate` @@ -5365,7 +5452,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"m2v" +"mpg" ``` #### `domain-system-commonFileName-base` @@ -5374,7 +5461,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"because.htm" +"because.html" ``` #### `domain-system-commonFileName-arg-extension` @@ -5437,7 +5524,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"/etc" +"/bin" ``` #### `domain-system-fileExt-base` @@ -5446,7 +5533,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"ear" +"war" ``` #### `domain-system-fileExt-arg-mimeType` @@ -5473,7 +5560,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"/lost+found/bah.epub" +"/home/user/bah.epub" ``` #### `domain-system-fileType-base` @@ -6064,8 +6151,8 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. ## Runtime Scenarios -Scenario count: **621** -Generated preview data count: **621** +Scenario count: **631** +Generated preview data count: **631** Review-only scenario count: **0** Non-executable scenario count: **0** @@ -6073,7 +6160,7 @@ Non-executable scenario count: **0** | Key | Count | | --- | ---: | -| `domain` | 572 | +| `domain` | 582 | | `enum` | 2 | | `faker` | 43 | | `literal` | 2 | @@ -6083,17 +6170,17 @@ Non-executable scenario count: **0** | Key | Count | | --- | ---: | -| `arg` | 211 | -| `base` | 257 | +| `arg` | 217 | +| `base` | 254 | | `custom` | 6 | | `empty` | 2 | -| `example` | 28 | -| `pair` | 119 | +| `example` | 31 | +| `pair` | 123 | | `pairwise` | 1 | ### Commands By Source Type -#### `domain` (245) +#### `domain` (242) - `airline.aircraftType` - `airline.flightNumber` @@ -6122,6 +6209,7 @@ Non-executable scenario count: **0** - `animal.snake` - `animal.type` - `autoIncrement.sequence` +- `autoIncrement.timestamp` - `book.author` - `book.format` - `book.genre` @@ -6144,6 +6232,7 @@ Non-executable scenario count: **0** - `commerce.productDescription` - `commerce.productMaterial` - `commerce.productName` +- `commerce.upc` - `company.buzzAdjective` - `company.buzzNoun` - `company.buzzPhrase` @@ -6185,7 +6274,6 @@ Non-executable scenario count: **0** - `finance.ethereumAddress` - `finance.iban` - `finance.litecoinAddress` -- `finance.maskedNumber` - `finance.pin` - `finance.routingNumber` - `finance.transactionDescription` @@ -6212,14 +6300,11 @@ Non-executable scenario count: **0** - `hacker.verb` - `image.avatar` - `image.avatarGitHub` -- `image.avatarLegacy` - `image.dataUri` - `image.personPortrait` - `image.url` - `image.urlLoremFlickr` - `image.urlPicsumPhotos` -- `image.urlPlaceholder` -- `internet.color` - `internet.displayName` - `internet.domainName` - `internet.domainSuffix` @@ -6241,7 +6326,6 @@ Non-executable scenario count: **0** - `internet.url` - `internet.userAgent` - `internet.username` -- `internet.userName` - `literal.value` - `location.buildingNumber` - `location.cardinalDirection` @@ -6531,7 +6615,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"Melvin" +"Douglas" ``` #### `faker-helpers-fake-example-1` @@ -6541,7 +6625,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"Hi, my name is Ardith Weber!" +"Hi, my name is Rhonda Wyman!" ``` #### `faker-helpers-fake-arg-pattern` @@ -7236,6 +7320,123 @@ Non-executable scenario count: **0** "001.txt" ``` +#### `domain-autoIncrement-timestamp-base` + +- Command(s): `autoIncrement.timestamp()` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-example-1` + +- Command(s): `autoIncrement.timestamp()` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-example-2` + +- Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` +- Preview data: +```csv +"Value" +"1969-03-20T12:00:00Z" +``` + +#### `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 +"Value" +"2026-06-12 11:39:23" +``` + +#### `domain-autoIncrement-timestamp-arg-start` + +- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` +- Preview data: +```csv +"Value" +"2026-06-12T12:39:23Z" +``` + +#### `domain-autoIncrement-timestamp-arg-step` + +- Command(s): `autoIncrement.timestamp(step=1)` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-type` + +- Command(s): `autoIncrement.timestamp(type="seconds")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-outputFormat` + +- Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-arg-inputFormat` + +- Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-start-step` + +- Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` +- Preview data: +```csv +"Value" +"2026-06-12T12:39:23Z" +``` + +#### `domain-autoIncrement-timestamp-pair-step-type` + +- Command(s): `autoIncrement.timestamp(step=1, type="seconds")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-type-outputFormat` + +- Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + +#### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` + +- Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` +- Preview data: +```csv +"Value" +"2026-06-17T13:02:55Z" +``` + #### `domain-book-author-base` - Command(s): `book.author()` @@ -7597,6 +7798,24 @@ Non-executable scenario count: **0** "Practical Aluminum Shirt" ``` +#### `domain-commerce-upc-base` + +- Command(s): `commerce.upc()` +- Preview data: +```csv +"Value" +"930326813865" +``` + +#### `domain-commerce-upc-arg-prefix` + +- Command(s): `commerce.upc(prefix="01234")` +- Preview data: +```csv +"Value" +"012345065699" +``` + #### `domain-company-buzzAdjective-base` - Command(s): `company.buzzAdjective()` @@ -7675,7 +7894,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"Yundt, Boehm and Roob" +"Roob, Schmidt and Jacobi-Lind" ``` #### `domain-database-collation-base` @@ -7750,13 +7969,22 @@ Non-executable scenario count: **0** "active" ``` +#### `domain-datatype-enum-arg-values` + +- Command(s): `datatype.enum(values="datatype-enum-values")` +- Preview data: +```csv +"Value" +"values=datatype-enum-values" +``` + #### `domain-date-anytime-base` - Command(s): `date.anytime()` - Preview data: ```csv "Value" -"2026-06-22T18:25:06.486Z" +"2026-06-26T22:01:03.744Z" ``` #### `domain-date-anytime-arg-refDate` @@ -7810,7 +8038,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1957-08-17T18:20:18.489Z" +"1957-08-21T21:56:15.746Z" ``` #### `domain-date-birthdate-example-1` @@ -7838,7 +8066,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1979-07-05T22:27:06.933Z" +"1979-07-10T02:03:04.191Z" ``` #### `domain-date-birthdate-arg-min` @@ -7847,7 +8075,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1970-08-31T13:50:34.426Z" +"1970-09-04T17:26:31.684Z" ``` #### `domain-date-birthdate-arg-mode` @@ -7856,7 +8084,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1989-12-13T01:17:45.847Z" +"1989-12-17T04:53:43.105Z" ``` #### `domain-date-birthdate-pair-refDate-max` @@ -7874,7 +8102,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1979-10-24T16:49:36.678Z" +"1979-10-28T20:25:33.935Z" ``` #### `domain-date-birthdate-pair-min-mode` @@ -7883,7 +8111,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"1970-04-18T19:33:08.429Z" +"1970-04-22T23:09:05.686Z" ``` #### `domain-date-future-base` @@ -7892,7 +8120,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-09-28T04:49:15.231Z" +"2026-10-02T08:25:12.488Z" ``` #### `domain-date-future-arg-refDate` @@ -7910,7 +8138,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2027-12-10T23:32:25.536Z" +"2027-12-15T03:08:22.793Z" ``` #### `domain-date-future-pair-refDate-years` @@ -7964,7 +8192,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-01-11T02:28:13.403Z" +"2026-01-15T06:04:10.661Z" ``` #### `domain-date-past-arg-refDate` @@ -7982,7 +8210,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2025-06-15T15:28:06.798Z" +"2025-06-19T19:04:04.055Z" ``` #### `domain-date-past-pair-refDate-years` @@ -8000,7 +8228,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-06-13T09:17:28.292Z" +"2026-06-17T12:53:25.549Z" ``` #### `domain-date-recent-arg-days` @@ -8009,7 +8237,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-06-11T15:05:30.962Z" +"2026-06-15T18:41:28.219Z" ``` #### `domain-date-recent-arg-refDate` @@ -8036,7 +8264,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-06-13T11:18:11.053Z" +"2026-06-17T14:54:08.311Z" ``` #### `domain-date-soon-arg-days` @@ -8045,7 +8273,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"2026-06-15T03:45:59.281Z" +"2026-06-19T07:21:56.539Z" ``` #### `domain-date-soon-arg-refDate` @@ -8381,24 +8609,6 @@ Non-executable scenario count: **0** "387GmSW4s1E1t16xYaNCi9zgLtV5cDM" ``` -#### `domain-finance-maskedNumber-base` - -- Command(s): `finance.maskedNumber()` -- Preview data: -```csv -"Value" -"(...1483)" -``` - -#### `domain-finance-maskedNumber-arg-length` - -- Command(s): `finance.maskedNumber(length=4)` -- Preview data: -```csv -"Value" -"(...7138)" -``` - #### `domain-finance-pin-base` - Command(s): `finance.pin()` @@ -8432,7 +8642,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"payment processed at Ullrich LLC for PKR 490.00, using card ending ****1272. Account: ***8641." +"payment processed at Parker Inc for CRC 202.96, using card ending ****7286. Account: ***4194." ``` #### `domain-finance-transactionType-base` @@ -8468,7 +8678,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"Passionfruit Pie" +"Peach And Tangelo Tart" ``` #### `domain-food-ethnicCategory-base` @@ -8486,7 +8696,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"grape" +"grapefruit" ``` #### `domain-food-ingredient-base` @@ -8522,7 +8732,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"lettuce" +"leeks" ``` #### `domain-git-branch-base` @@ -8540,7 +8750,7 @@ Non-executable scenario count: **0** - Preview data: ```csv "Value" -"Fri Jun 12 10:15:16 2026 -0700" +"Tue Jun 16 13:51:13 2026 -0700" ``` #### `domain-git-commitEntry-base` @@ -8550,10 +8760,10 @@ Non-executable scenario count: **0** ```csv "Value" "commit 7738bbde748c2e27e1520b9bf8bb637a48e2feaa -Author: Josie Russel -Date: Fri Jun 12 11:00:32 2026 +0700 +Author: Norberto.Robel36 +Date: Wed Jun 17 09:26:44 2026 +0900 -    transmit solid state protocol +    transmit open-source application " ``` @@ -8617,7 +8827,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"compressing the array won't do anything, we need to bypass the cross-platform PCI alarm!" +"connecting the array won't do anything, we need to bypass the 1080p IP capacitor!" ``` #### `domain-hacker-verb-base` @@ -8647,15 +8857,6 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "https://avatars.githubusercontent.com/u/16590067" ``` -#### `domain-image-avatarLegacy-base` - -- Command(s): `image.avatarLegacy()` -- Preview data: -```csv -"Value" -"https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/8.jpg" -``` - #### `domain-image-dataUri-base` - Command(s): `image.dataUri()` @@ -8680,7 +8881,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3937/617?lock=3931926876699204" +"https://picsum.photos/seed/rXzuqSX/3937/617" ``` #### `domain-image-url-arg-height` @@ -8689,7 +8890,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3193/2?lock=3191839961479511" +"https://picsum.photos/seed/lDB434I/3193/2" ``` #### `domain-image-url-arg-width` @@ -8698,7 +8899,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://picsum.photos/seed/3UIYDPaNWB/3/984" +"https://picsum.photos/seed/V3UIYDPa/3/984" ``` #### `domain-image-url-pair-height-width` @@ -8707,7 +8908,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://loremflickr.com/3/2?lock=7146576591433292" +"https://picsum.photos/seed/N4LRBx/3/2" ``` #### `domain-image-urlLoremFlickr-base` @@ -8728,31 +8929,13 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "https://picsum.photos/seed/s9gojEHeQ/1634/3581?grayscale&blur=1" ``` -#### `domain-image-urlPlaceholder-base` - -- Command(s): `image.urlPlaceholder()` -- Preview data: -```csv -"Value" -"https://via.placeholder.com/3214x1881/defd36/91bc2c.jpg?text=comedo%20vespillo%20venio" -``` - -#### `domain-internet-color-base` - -- Command(s): `internet.color()` -- Preview data: -```csv -"Value" -"#2f0204" -``` - #### `domain-internet-displayName-base` - Command(s): `internet.displayName()` - Preview data: ```csv "Value" -"Demetrius.Kuhlman" +"Jaylin5" ``` #### `domain-internet-domainName-base` @@ -8788,7 +8971,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brian42@yahoo.com" +"Hulda22@hotmail.com" ``` #### `domain-internet-email-arg-allowSpecialCharacters` @@ -8797,7 +8980,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brant=Abernathy@hotmail.com" +"Adrienne_Mitchell56@yahoo.com" ``` #### `domain-internet-email-arg-firstName` @@ -8806,7 +8989,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada.Schumm@gmail.com" +"Ada.Bednar49@gmail.com" ``` #### `domain-internet-email-arg-lastName` @@ -8815,7 +8998,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Gavin.Lovelace62@yahoo.com" +"Mandy.Lovelace@hotmail.com" ``` #### `domain-internet-email-arg-provider` @@ -8824,7 +9007,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Viola.Torphy@example.com" +"Shany.Mertz@example.com" ``` #### `domain-internet-email-pair-allowSpecialCharacters-firstName` @@ -8833,7 +9016,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada93@hotmail.com" +"Ada_Rau@yahoo.com" ``` #### `domain-internet-email-pair-firstName-lastName` @@ -8842,7 +9025,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada.Lovelace55@yahoo.com" +"Ada.Lovelace55@hotmail.com" ``` #### `domain-internet-email-pair-lastName-provider` @@ -8851,7 +9034,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Euna.Lovelace@example.com" +"Nora_Lovelace@example.com" ``` #### `domain-internet-emoji-base` @@ -8860,7 +9043,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"🐆" +"🏵️" ``` #### `domain-internet-emoji-arg-types` @@ -8869,7 +9052,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"🫑" +"🍖" ``` #### `domain-internet-exampleEmail-base` @@ -8878,7 +9061,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Hulda5@example.org" +"Amalia_Bednar@example.com" ``` #### `domain-internet-httpMethod-base` @@ -8959,7 +9142,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJIUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODEyNTc5ODUsImV4cCI6MTc4MTMxNDA2NiwibmJmIjoxNzc4MDQ5MDY3LCJpc3MiOiJTYXR0ZXJmaWVsZCBHcm91cCIsInN1YiI6IjYxMzIwNjNhLTE5MjktNDkwZi1iNWNhLTM2MWU2NmM1MmRkNCIsImF1ZCI6IjQwNjEwNWNkLTE2MjgtNDA4Yi1iN2EyLWQ2NmM1M2Y3NGFiNSIsImp0aSI6IjU4YmNiMzdkLTRkOGEtNGYyZS04ZDNmLTQyMGM4MGExNGMwNCJ9.MLGSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDw" +"eyJhbGciOiJFUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2MTY1NDIsImV4cCI6MTc4MTY3MjYyMywibmJmIjoxNzc4NDA3NjI1LCJpc3MiOiJIb3dlIEdyb3VwIiwic3ViIjoiMzIwNjNhMTktMjk5MC00ZjVjLThhMzYtMWU2NmM1MmRkNGY0IiwiYXVkIjoiNjEwNWNkMTYtMjgwOC00YjdhLWEyZDYtNmM1M2Y3NGFiNWQ1IiwianRpIjoiYmNiMzdkNGQtOGFmMi00ZWQzLWJmNDItMGM4MGExNGMwNDFjIn0.GSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDwsi" ``` #### `domain-internet-jwt-arg-header` @@ -8968,7 +9151,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"e30.eyJpYXQiOjE3ODEyNjc2OTEsImV4cCI6MTc4MTI5MDE0MywibmJmIjoxNzg3NjEwNDYwLCJpc3MiOiJGYWhleSwgS2lobiBhbmQgUmVpY2hlcnQiLCJzdWIiOiIxYzQyMmU2ZS1lNzcxLTRmMDAtYmU3OS02NzAwNGViZjg1OGYiLCJhdWQiOiI5MmY3OTFiMy0wYTI5LTQ4ZjItOWUxZS00MGU1Yzk2NTkzYWQiLCJqdGkiOiJkNzk2YzA3Yy0zNjRmLTQzNjgtYWJhZS00N2M3NTExODk4MWEifQ.e8QhcTHj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWk" +"e30.eyJpYXQiOjE3ODE2MjYyNDksImV4cCI6MTc4MTY0ODcwMSwibmJmIjoxNzg3OTY5MDE3LCJpc3MiOiJSZWljaGVydCwgR3JhbnQgYW5kIFZvblJ1ZWRlbiIsInN1YiI6IjZlZTc3MWYwLTBlNzktNDY3MC04MDRlLWJmODU4ZmM5MmY3OSIsImF1ZCI6ImIzMGEyOThmLTJlMWUtNDQwZS04NWM5LTY1OTNhZDVkNzk2YyIsImp0aSI6IjdjMzY0ZjM2LThiYWUtNDQ3Yy1iNzUxLTE4OTgxYTkzMmQ0MyJ9.Hj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWkqAp5aj" ``` #### `domain-internet-jwt-arg-payload` @@ -8977,7 +9160,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" +"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" ``` #### `domain-internet-jwt-arg-refDate` @@ -8986,7 +9169,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiU2lwZXMsIEJhdHogYW5kIExvd2UiLCJzdWIiOiIxZWVhZGYwNC0zMDQ2LTRkYmItOWVhNC0yMGY1Zjg5N2Y2YWQiLCJhdWQiOiI2ZmJhMDFiYS0yMWY0LTRlZTQtYmVlZC1iZjA2MDlhMTNkMzAiLCJqdGkiOiI0NDFlMWI4ZC00MmFhLTQzM2UtODA0Ni05YmNiZmFjY2ZjZGIifQ.ShTkX7nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4" +"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiTG93ZSwgV2F0c2ljYSBhbmQgV2l6YSIsInN1YiI6IjA0MzA0NmRiLWJlYTQtNDIwZi04NWY4LTk3ZjZhZDc2ZmJhMCIsImF1ZCI6ImJhMjFmNGVlLTRlZWQtNGJmMC1hNjA5LWExM2QzMGY0NDFlMSIsImp0aSI6IjhkNDJhYTMzLWUwNDYtNDliYy04YmZhLWNjZmNkYjNlNGU1ZiJ9.nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4UrH0jN" ``` #### `domain-internet-jwt-pair-header-payload` @@ -9004,7 +9187,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" +"eyJhbGciOiJQUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" ``` #### `domain-internet-jwtAlgorithm-base` @@ -9013,7 +9196,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"ES256" +"PS256" ``` #### `domain-internet-mac-base` @@ -9149,7 +9332,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"https://pleasing-scrap.biz/" +"https://pleasing-scrap.com/" ``` #### `domain-internet-url-arg-protocol` @@ -9176,7 +9359,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/560.22 (KHTML, like Gecko) Chrome/100.9.0.1 Safari/555.7 Edg/113.8.7.15" +"Googlebot/2.1 (+http://www.google.com/bot.html)" ``` #### `domain-internet-username-base` @@ -9185,7 +9368,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Kailey2" +"Jeremiah.Shanahan" ``` #### `domain-internet-username-arg-firstName` @@ -9194,7 +9377,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Ada_Bode" +"Ada_Metz53" ``` #### `domain-internet-username-arg-lastName` @@ -9203,7 +9386,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Dallin.Lovelace" +"Carla_Lovelace" ``` #### `domain-internet-username-pair-firstName-lastName` @@ -9215,15 +9398,6 @@ Date: Fri Jun 12 11:00:32 2026 +0700 "Ada.Lovelace" ``` -#### `domain-internet-userName-base` - -- Command(s): `internet.userName()` -- Preview data: -```csv -"Value" -"Marlee30" -``` - #### `domain-literal-value-base` - Command(s): `literal.value()` @@ -9493,7 +9667,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"Brown Trafficway" +"Gerhold Creek" ``` #### `domain-location-streetAddress-base` @@ -9502,7 +9676,7 @@ Date: Fri Jun 12 11:00:32 2026 +0700 - Preview data: ```csv "Value" -"428 Grant Walks" +"428 Kunze-Johnston Trafficway" ``` #### `domain-location-streetAddress-arg-useFullAddress` @@ -10653,7 +10827,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Osbaldo" +"Moses" ``` #### `domain-person-firstName-arg-sex` @@ -10662,7 +10836,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Jon" +"Stephen" ``` #### `domain-person-fullName-base` @@ -10671,7 +10845,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Dixie Beer" +"Candace Champlin" ``` #### `domain-person-gender-base` @@ -10725,7 +10899,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Koss" +"Pacocha" ``` #### `domain-person-lastName-arg-sex` @@ -10743,7 +10917,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Reagan" +"Luke" ``` #### `domain-person-middleName-arg-sex` @@ -10752,7 +10926,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Harrison" +"Ezra" ``` #### `domain-person-prefix-base` @@ -10761,7 +10935,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"Dr." +"Miss" ``` #### `domain-person-prefix-arg-sex` @@ -11335,7 +11509,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"01KV04WM3F4MY648F8XPVTRQE9" +"01KVATTXNN4MY648F8XPVTRQE9" ``` #### `domain-string-ulid-arg-refDate` @@ -11362,7 +11536,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"m2v" +"mpg" ``` #### `domain-system-commonFileName-base` @@ -11371,7 +11545,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"because.htm" +"because.html" ``` #### `domain-system-commonFileName-arg-extension` @@ -11434,7 +11608,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"/etc" +"/bin" ``` #### `domain-system-fileExt-base` @@ -11443,7 +11617,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"ear" +"war" ``` #### `domain-system-fileExt-arg-mimeType` @@ -11470,7 +11644,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Preview data: ```csv "Value" -"/lost+found/bah.epub" +"/home/user/bah.epub" ``` #### `domain-system-fileType-base` @@ -12234,7 +12408,7 @@ Structural-only preview parity scenario count: **5** - Preview data: ```csv "Value" -"Melvin" +"Douglas" ``` #### `faker-helpers-fromRegExp-example-1` 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 index ba8a6650..77f9e52b 100644 --- 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 @@ -1,5 +1,5 @@ { - "generatedAt": "2026-06-13T09:26:58.331Z", + "generatedAt": "2026-06-17T13:02:55.544Z", "coverageScenarios": [ { "id": "custom-enum-base", @@ -2252,6 +2252,292 @@ "coveredArgs": ["suffix", "zeropadding"], "origins": ["pair"] }, + { + "id": "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"] + }, + { + "id": "domain-autoIncrement-timestamp-example-1", + "sourceType": "domain", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp example 1", + "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"] + }, + { + "id": "domain-autoIncrement-timestamp-example-2", + "sourceType": "domain", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp example 2", + "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"] + }, + { + "id": "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=\"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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, { "id": "domain-book-author-base", "sourceType": "domain", @@ -3132,6 +3418,50 @@ "coveredArgs": [], "origins": ["base"] }, + { + "id": "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"] + }, + { + "id": "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"] + }, { "id": "domain-company-buzzAdjective-base", "sourceType": "domain", @@ -3506,6 +3836,28 @@ "coveredArgs": [], "origins": ["base"] }, + { + "id": "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=\"datatype-enum-values\")", + "value": "" + } + ], + "expectedSchemaText": "Value\ndatatype.enum(values=\"datatype-enum-values\")", + "expectedUiSchemaText": "Value\nenum(values=\"datatype-enum-values\")", + "expectedFileExtension": ".csv", + "pairwiseEligible": false, + "expectStructuredSerialization": false, + "coveredArgs": ["values"], + "origins": ["arg"] + }, { "id": "domain-date-anytime-base", "sourceType": "domain", @@ -5047,21 +5399,21 @@ "origins": ["base"] }, { - "id": "domain-finance-maskedNumber-base", + "id": "domain-finance-pin-base", "sourceType": "domain", - "command": "finance.maskedNumber", - "label": "finance.maskedNumber", + "command": "finance.pin", + "label": "finance.pin", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "finance.maskedNumber", + "command": "finance.pin", "params": "()", "value": "" } ], - "expectedSchemaText": "Value\nfinance.maskedNumber()", - "expectedUiSchemaText": "Value\nfinance.maskedNumber()", + "expectedSchemaText": "Value\nfinance.pin()", + "expectedUiSchemaText": "Value\nfinance.pin()", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, @@ -5069,21 +5421,21 @@ "origins": ["base"] }, { - "id": "domain-finance-maskedNumber-arg-length", + "id": "domain-finance-pin-arg-length", "sourceType": "domain", - "command": "finance.maskedNumber", - "label": "finance.maskedNumber arg length", + "command": "finance.pin", + "label": "finance.pin arg length", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "finance.maskedNumber", + "command": "finance.pin", "params": "(length=4)", "value": "" } ], - "expectedSchemaText": "Value\nfinance.maskedNumber(length=4)", - "expectedUiSchemaText": "Value\nfinance.maskedNumber(length=4)", + "expectedSchemaText": "Value\nfinance.pin(length=4)", + "expectedUiSchemaText": "Value\nfinance.pin(length=4)", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, @@ -5091,59 +5443,15 @@ "origins": ["arg"] }, { - "id": "domain-finance-pin-base", + "id": "domain-finance-routingNumber-base", "sourceType": "domain", - "command": "finance.pin", - "label": "finance.pin", + "command": "finance.routingNumber", + "label": "finance.routingNumber", "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"] - }, - { - "id": "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"] - }, - { - "id": "domain-finance-routingNumber-base", - "sourceType": "domain", - "command": "finance.routingNumber", - "label": "finance.routingNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.routingNumber", + "command": "finance.routingNumber", "params": "()", "value": "" } @@ -5684,28 +5992,6 @@ "coveredArgs": [], "origins": ["base"] }, - { - "id": "domain-image-avatarLegacy-base", - "sourceType": "domain", - "command": "image.avatarLegacy", - "label": "image.avatarLegacy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarLegacy", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarLegacy()", - "expectedUiSchemaText": "Value\nimage.avatarLegacy()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, { "id": "domain-image-dataUri-base", "sourceType": "domain", @@ -5882,50 +6168,6 @@ "coveredArgs": [], "origins": ["base"] }, - { - "id": "domain-image-urlPlaceholder-base", - "sourceType": "domain", - "command": "image.urlPlaceholder", - "label": "image.urlPlaceholder", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPlaceholder", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPlaceholder()", - "expectedUiSchemaText": "Value\nimage.urlPlaceholder()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, - { - "id": "domain-internet-color-base", - "sourceType": "domain", - "command": "internet.color", - "label": "internet.color", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.color()", - "expectedUiSchemaText": "Value\ninternet.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, { "id": "domain-internet-displayName-base", "sourceType": "domain", @@ -7070,28 +7312,6 @@ "coveredArgs": ["firstName", "lastName"], "origins": ["pair"] }, - { - "id": "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"] - }, { "id": "domain-literal-value-base", "sourceType": "domain", @@ -15624,35 +15844,321 @@ { "name": "Value", "sourceType": "domain", - "command": "animal.type", - "params": "()", + "command": "animal.type", + "params": "()", + "value": "" + } + ], + "expectedSchemaText": "Value\nanimal.type()", + "expectedUiSchemaText": "Value\nanimal.type()", + "expectedFileExtension": ".csv", + "pairwiseEligible": false, + "expectStructuredSerialization": false, + "coveredArgs": [], + "origins": ["base"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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"] + }, + { + "id": "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\nanimal.type()", - "expectedUiSchemaText": "Value\nanimal.type()", + "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", + "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] + "coveredArgs": ["suffix", "zeropadding"], + "origins": ["pair"] }, { - "id": "domain-autoIncrement-sequence-base", + "id": "domain-autoIncrement-timestamp-base", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(1, 5, \"filename\", \".txt\", 3)", + "command": "autoIncrement.timestamp", + "params": "()", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(1, 5, \"filename\", \".txt\", 3)", + "expectedSchemaText": "Value\nautoIncrement.timestamp()", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, @@ -15660,87 +16166,87 @@ "origins": ["base"] }, { - "id": "domain-autoIncrement-sequence-example-1", + "id": "domain-autoIncrement-timestamp-example-1", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 1", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp example 1", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", + "command": "autoIncrement.timestamp", "params": "()", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence()", - "expectedUiSchemaText": "Value\nautoIncrement.sequence()", + "expectedSchemaText": "Value\nautoIncrement.timestamp()", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp()", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], + "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], "origins": ["example"] }, { - "id": "domain-autoIncrement-sequence-example-2", + "id": "domain-autoIncrement-timestamp-example-2", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 2", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp example 2", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", + "command": "autoIncrement.timestamp", + "params": "(start=\"20/03/1969\", step=1, type=\"days\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", + "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", "prefix", "suffix", "zeropadding"], + "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], "origins": ["example"] }, { - "id": "domain-autoIncrement-sequence-example-3", + "id": "domain-autoIncrement-timestamp-example-3", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence example 3", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp example 3", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=1, step=5, prefix=\"filename\", suffix=\".txt\", zeropadding=3)", + "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.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)", + "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", "prefix", "suffix", "zeropadding"], + "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], "origins": ["example"] }, { - "id": "domain-autoIncrement-sequence-arg-start", + "id": "domain-autoIncrement-timestamp-arg-start", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg start", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp arg start", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10)", + "command": "autoIncrement.timestamp", + "params": "(start=\"2026-06-12T12:39:23Z\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10)", + "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, @@ -15748,21 +16254,21 @@ "origins": ["arg"] }, { - "id": "domain-autoIncrement-sequence-arg-step", + "id": "domain-autoIncrement-timestamp-arg-step", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg step", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp arg step", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5)", + "command": "autoIncrement.timestamp", + "params": "(step=1)", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5)", + "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1)", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1)", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, @@ -15770,87 +16276,87 @@ "origins": ["arg"] }, { - "id": "domain-autoIncrement-sequence-arg-prefix", + "id": "domain-autoIncrement-timestamp-arg-type", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg prefix", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp arg type", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\")", + "command": "autoIncrement.timestamp", + "params": "(type=\"seconds\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\")", + "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\")", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["prefix"], + "coveredArgs": ["type"], "origins": ["arg"] }, { - "id": "domain-autoIncrement-sequence-arg-suffix", + "id": "domain-autoIncrement-timestamp-arg-outputFormat", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg suffix", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp arg outputFormat", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\")", + "command": "autoIncrement.timestamp", + "params": "(outputFormat=\"iso8601\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\")", + "expectedSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(outputFormat=\"iso8601\")", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["suffix"], + "coveredArgs": ["outputFormat"], "origins": ["arg"] }, { - "id": "domain-autoIncrement-sequence-arg-zeropadding", + "id": "domain-autoIncrement-timestamp-arg-inputFormat", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence arg zeropadding", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp arg inputFormat", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(zeropadding=3)", + "command": "autoIncrement.timestamp", + "params": "(inputFormat=\"dd/MM/yyyy\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(zeropadding=3)", + "expectedSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(inputFormat=\"dd/MM/yyyy\")", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["zeropadding"], + "coveredArgs": ["inputFormat"], "origins": ["arg"] }, { - "id": "domain-autoIncrement-sequence-pair-start-step", + "id": "domain-autoIncrement-timestamp-pair-start-step", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair start/step", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp pair start/step", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(start=10, step=5)", + "command": "autoIncrement.timestamp", + "params": "(start=\"2026-06-12T12:39:23Z\", step=1)", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(start=10, step=5)", + "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, @@ -15858,69 +16364,69 @@ "origins": ["pair"] }, { - "id": "domain-autoIncrement-sequence-pair-step-prefix", + "id": "domain-autoIncrement-timestamp-pair-step-type", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair step/prefix", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp pair step/type", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(step=5, prefix=\"filename\")", + "command": "autoIncrement.timestamp", + "params": "(step=1, type=\"seconds\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(step=5, prefix=\"filename\")", + "expectedSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(step=1, type=\"seconds\")", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["step", "prefix"], + "coveredArgs": ["step", "type"], "origins": ["pair"] }, { - "id": "domain-autoIncrement-sequence-pair-prefix-suffix", + "id": "domain-autoIncrement-timestamp-pair-type-outputFormat", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair prefix/suffix", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp pair type/outputFormat", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(prefix=\"filename\", suffix=\".txt\")", + "command": "autoIncrement.timestamp", + "params": "(type=\"seconds\", outputFormat=\"iso8601\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(prefix=\"filename\", suffix=\".txt\")", + "expectedSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", + "expectedUiSchemaText": "Value\nautoIncrement.timestamp(type=\"seconds\", outputFormat=\"iso8601\")", "expectedFileExtension": ".csv", "pairwiseEligible": false, "expectStructuredSerialization": false, - "coveredArgs": ["prefix", "suffix"], + "coveredArgs": ["type", "outputFormat"], "origins": ["pair"] }, { - "id": "domain-autoIncrement-sequence-pair-suffix-zeropadding", + "id": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", "sourceType": "domain", - "command": "autoIncrement.sequence", - "label": "autoIncrement.sequence pair suffix/zeropadding", + "command": "autoIncrement.timestamp", + "label": "autoIncrement.timestamp pair outputFormat/inputFormat", "rows": [ { "name": "Value", "sourceType": "domain", - "command": "autoIncrement.sequence", - "params": "(suffix=\".txt\", zeropadding=3)", + "command": "autoIncrement.timestamp", + "params": "(outputFormat=\"iso8601\", inputFormat=\"dd/MM/yyyy\")", "value": "" } ], - "expectedSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", - "expectedUiSchemaText": "Value\nautoIncrement.sequence(suffix=\".txt\", zeropadding=3)", + "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": ["suffix", "zeropadding"], + "coveredArgs": ["outputFormat", "inputFormat"], "origins": ["pair"] }, { @@ -16803,6 +17309,50 @@ "coveredArgs": [], "origins": ["base"] }, + { + "id": "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"] + }, + { + "id": "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"] + }, { "id": "domain-company-buzzAdjective-base", "sourceType": "domain", @@ -17177,6 +17727,28 @@ "coveredArgs": [], "origins": ["base"] }, + { + "id": "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=\"datatype-enum-values\")", + "value": "" + } + ], + "expectedSchemaText": "Value\ndatatype.enum(values=\"datatype-enum-values\")", + "expectedUiSchemaText": "Value\nenum(values=\"datatype-enum-values\")", + "expectedFileExtension": ".csv", + "pairwiseEligible": false, + "expectStructuredSerialization": false, + "coveredArgs": ["values"], + "origins": ["arg"] + }, { "id": "domain-date-anytime-base", "sourceType": "domain", @@ -18717,50 +19289,6 @@ "coveredArgs": [], "origins": ["base"] }, - { - "id": "domain-finance-maskedNumber-base", - "sourceType": "domain", - "command": "finance.maskedNumber", - "label": "finance.maskedNumber", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.maskedNumber", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.maskedNumber()", - "expectedUiSchemaText": "Value\nfinance.maskedNumber()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, - { - "id": "domain-finance-maskedNumber-arg-length", - "sourceType": "domain", - "command": "finance.maskedNumber", - "label": "finance.maskedNumber arg length", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "finance.maskedNumber", - "params": "(length=4)", - "value": "" - } - ], - "expectedSchemaText": "Value\nfinance.maskedNumber(length=4)", - "expectedUiSchemaText": "Value\nfinance.maskedNumber(length=4)", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": ["length"], - "origins": ["arg"] - }, { "id": "domain-finance-pin-base", "sourceType": "domain", @@ -19355,28 +19883,6 @@ "coveredArgs": [], "origins": ["base"] }, - { - "id": "domain-image-avatarLegacy-base", - "sourceType": "domain", - "command": "image.avatarLegacy", - "label": "image.avatarLegacy", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.avatarLegacy", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.avatarLegacy()", - "expectedUiSchemaText": "Value\nimage.avatarLegacy()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, { "id": "domain-image-dataUri-base", "sourceType": "domain", @@ -19553,50 +20059,6 @@ "coveredArgs": [], "origins": ["base"] }, - { - "id": "domain-image-urlPlaceholder-base", - "sourceType": "domain", - "command": "image.urlPlaceholder", - "label": "image.urlPlaceholder", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "image.urlPlaceholder", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\nimage.urlPlaceholder()", - "expectedUiSchemaText": "Value\nimage.urlPlaceholder()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, - { - "id": "domain-internet-color-base", - "sourceType": "domain", - "command": "internet.color", - "label": "internet.color", - "rows": [ - { - "name": "Value", - "sourceType": "domain", - "command": "internet.color", - "params": "()", - "value": "" - } - ], - "expectedSchemaText": "Value\ninternet.color()", - "expectedUiSchemaText": "Value\ninternet.color()", - "expectedFileExtension": ".csv", - "pairwiseEligible": false, - "expectStructuredSerialization": false, - "coveredArgs": [], - "origins": ["base"] - }, { "id": "domain-internet-displayName-base", "sourceType": "domain", @@ -20741,28 +21203,6 @@ "coveredArgs": ["firstName", "lastName"], "origins": ["pair"] }, - { - "id": "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"] - }, { "id": "domain-literal-value-base", "sourceType": "domain", 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 78c62d5a..53d64f74 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 @@ -1,4 +1,4 @@ -import { getKnownFakerCommandsAlphabetical } from '../../../../../js/gui_components/shared/faker-commands.js'; +import { getAllowedFakerCommandsAlphabetical } from '../../../../../js/gui_components/shared/faker-commands.js'; import { getFakerCommandHelp } from '../../../../../js/gui_components/shared/faker-command-help-metadata.js'; import { faker } from '@faker-js/faker'; import RandExp from 'randexp'; @@ -38,7 +38,7 @@ const CUSTOM_SOURCE_TYPES = [ SOURCE_TYPE_DOMAIN, ]; const DEFAULT_ROW_NAME = 'Value'; -const FAKER_INTERACTION_COMMANDS = getKnownFakerCommandsAlphabetical().filter( +const FAKER_INTERACTION_COMMANDS = getAllowedFakerCommandsAlphabetical().filter( (command) => command !== 'RegEx' && command.startsWith('helpers.') ); @@ -100,6 +100,10 @@ const CUSTOM_SCENARIOS = [ const FAKER_PARAM_OVERRIDES = { 'helpers.arrayElement': ['["A", "B"]'], 'helpers.arrayElements': ['["A", "B", "C"]', '2'], + 'helpers.objectKey': ['{"red":"#f00","blue":"#00f"}'], + 'helpers.objectValue': ['{"red":"#f00","blue":"#00f"}'], + 'helpers.objectEntry': ['{"red":"#f00","blue":"#00f"}'], + 'helpers.enumValue': ['{"Pending":"pending","Active":"active"}'], 'date.between': ['{ from: "2020-01-01T00:00:00.000Z", to: "2020-12-31T00:00:00.000Z" }'], 'date.betweens': ['{ from: "2020-01-01T00:00:00.000Z", to: "2020-12-31T00:00:00.000Z", count: 2 }'], 'helpers.fake': ['"{{person.firstName}}"'], @@ -137,7 +141,6 @@ const DOMAIN_PARAM_OVERRIDES = { }, }; -const NON_EXECUTABLE_RUNTIME_COMMANDS = new Set(['internet.ipv4', 'internet.ipv6']); const DOMAIN_SCENARIO_EXECUTION_CACHE = new Map(); const FAKER_SCENARIO_EXECUTION_CACHE = new Map(); const UI_REPRESENTATIVE_SCENARIO_IDS = new Set([ @@ -866,9 +869,6 @@ function getScenarioExecutionStatus(scenario) { return canGenerateDomainScenarioPreview(scenario) ? 'generated' : 'non-executable'; } if (scenario.sourceType === SOURCE_TYPE_FAKER) { - if (NON_EXECUTABLE_RUNTIME_COMMANDS.has(scenario.command)) { - return 'non-executable'; - } return canGenerateFakerScenarioPreview(scenario) ? 'generated' : 'non-executable'; } if (scenario.origins.includes('custom') || scenario.origins.includes('example')) { diff --git a/packages/core-ui/src/tests/shared/schema-row-validation.test.js b/packages/core-ui/src/tests/shared/schema-row-validation.test.js index 5d44aa97..a70335bf 100644 --- a/packages/core-ui/src/tests/shared/schema-row-validation.test.js +++ b/packages/core-ui/src/tests/shared/schema-row-validation.test.js @@ -59,4 +59,24 @@ describe('schema-row-validation', () => { }), ]); }); + + test('reports forbidden faker commands as known but not allowed', () => { + const issues = getSchemaRowValidationIssues( + { + name: 'Value', + sourceType: 'faker', + command: 'helpers.objectKey', + params: '({"red":"#f00"})', + }, + 0 + ); + + expect(issues).toEqual([ + expect.objectContaining({ + code: 'forbidden_faker_command', + field: 'command', + message: expect.stringContaining('helpers.objectKey'), + }), + ]); + }); }); 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 431aaca9..234b7de9 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 @@ -40,7 +40,9 @@ describe('faker command help metadata', () => { const imageDataUri = getFakerCommandHelp('image.dataUri'); expect(firstName.params).toEqual( - expect.arrayContaining([expect.objectContaining({ name: 'sex', optional: true, type: "'female' | 'male'" })]) + expect.arrayContaining([ + expect.objectContaining({ name: 'sex', optional: true, type: "'female' | 'generic' | 'male'" }), + ]) ); expect(firstName.example.length).toBeGreaterThan(0); diff --git a/packages/core/js/data_generation/faker/fakerCommand.js b/packages/core/js/data_generation/faker/fakerCommand.js index 2c11e587..344f4764 100644 --- a/packages/core/js/data_generation/faker/fakerCommand.js +++ b/packages/core/js/data_generation/faker/fakerCommand.js @@ -101,7 +101,7 @@ export class FakerCommand { for (var i = 0; i < parts.length; i++) { var part = parts[i]; - const possibleFakerCommandRegex = new RegExp('^([A-Za-z]*)$'); + const possibleFakerCommandRegex = new RegExp('^([A-Za-z][A-Za-z0-9]*)$'); if (possibleFakerCommandRegex.test(part)) { if (foundFunctionIndex !== -1) { break; diff --git a/packages/core/js/domain/domain-faker-commerce-keyword-definitions.js b/packages/core/js/domain/domain-faker-commerce-keyword-definitions.js index d2dc6e06..911a13be 100644 --- a/packages/core/js/domain/domain-faker-commerce-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-commerce-keyword-definitions.js @@ -156,6 +156,29 @@ const DOMAIN_FAKER_COMMERCE_KEYWORD_DEFINITIONS = [ args: [], }, }, + { + keyword: 'commerce.upc', + delegate: { + type: 'faker', + target: 'commerce.upc', + argTransform: 'optionsFromHelpArgs', + }, + help: { + summary: 'Returns a valid UPC-A (12 digits).', + docsUrl: 'https://fakerjs.dev/api/commerce', + example: '036000291452', + returnType: 'string', + args: [ + { + name: 'prefix', + type: 'string', + required: false, + description: 'Optional numeric prefix for the UPC body (0-11 digits).', + examples: ['01234'], + }, + ], + }, + }, ]; export { DOMAIN_FAKER_COMMERCE_KEYWORD_DEFINITIONS }; diff --git a/packages/core/js/domain/domain-faker-finance-keyword-definitions.js b/packages/core/js/domain/domain-faker-finance-keyword-definitions.js index 1f751d7a..96973f51 100644 --- a/packages/core/js/domain/domain-faker-finance-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-finance-keyword-definitions.js @@ -299,27 +299,6 @@ const DOMAIN_FAKER_FINANCE_KEYWORD_DEFINITIONS = [ args: [], }, }, - { - keyword: 'finance.maskedNumber', - delegate: { - type: 'faker', - target: 'finance.maskedNumber', - }, - help: { - summary: 'Generates a random masked number.', - docsUrl: 'https://fakerjs.dev/api/finance', - example: '(...0934)', - returnType: 'string', - args: [ - { - name: 'length', - type: 'number', - required: false, - description: 'Desired length of the generated value.', - }, - ], - }, - }, { keyword: 'finance.pin', delegate: { diff --git a/packages/core/js/domain/domain-faker-image-keyword-definitions.js b/packages/core/js/domain/domain-faker-image-keyword-definitions.js index 12db9a62..025ab4fe 100644 --- a/packages/core/js/domain/domain-faker-image-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-image-keyword-definitions.js @@ -27,21 +27,6 @@ const DOMAIN_FAKER_IMAGE_KEYWORD_DEFINITIONS = [ args: [], }, }, - { - keyword: 'image.avatarLegacy', - delegate: { - type: 'faker', - target: 'image.avatarLegacy', - }, - help: { - summary: - 'Generates a random avatar from `https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar`.', - docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1198.jpg', - returnType: 'string', - args: [], - }, - }, { keyword: 'image.dataUri', delegate: { @@ -126,20 +111,6 @@ const DOMAIN_FAKER_IMAGE_KEYWORD_DEFINITIONS = [ args: [], }, }, - { - keyword: 'image.urlPlaceholder', - delegate: { - type: 'faker', - target: 'image.urlPlaceholder', - }, - help: { - summary: 'Generates a random image url provided via https://via.placeholder.com/.', - docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://via.placeholder.com/2302x1759/a80adf/2de69f.gif?text=utrimque%20summa%20dolores', - returnType: 'string', - args: [], - }, - }, ]; export { DOMAIN_FAKER_IMAGE_KEYWORD_DEFINITIONS }; diff --git a/packages/core/js/domain/domain-faker-internet-keyword-definitions.js b/packages/core/js/domain/domain-faker-internet-keyword-definitions.js index 8fd41988..8d4fadb8 100644 --- a/packages/core/js/domain/domain-faker-internet-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-internet-keyword-definitions.js @@ -1,18 +1,4 @@ const DOMAIN_FAKER_INTERNET_KEYWORD_DEFINITIONS = [ - { - keyword: 'internet.color', - delegate: { - type: 'faker', - target: 'internet.color', - }, - help: { - summary: 'Generates a random css hex color code in aesthetically pleasing color palette.', - docsUrl: 'https://fakerjs.dev/api/internet', - example: '#290551', - returnType: 'string', - args: [], - }, - }, { keyword: 'internet.displayName', delegate: { @@ -447,20 +433,6 @@ const DOMAIN_FAKER_INTERNET_KEYWORD_DEFINITIONS = [ ], }, }, - { - keyword: 'internet.userName', - delegate: { - type: 'faker', - target: 'internet.userName', - }, - help: { - summary: "Generates a username using the given person's name as base.", - docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Ana_Keebler', - returnType: 'string', - args: [], - }, - }, ]; export { DOMAIN_FAKER_INTERNET_KEYWORD_DEFINITIONS }; diff --git a/packages/core/js/faker/faker-command-help-metadata.js b/packages/core/js/faker/faker-command-help-metadata.js index 24cda9f2..d27b89f5 100644 --- a/packages/core/js/faker/faker-command-help-metadata.js +++ b/packages/core/js/faker/faker-command-help-metadata.js @@ -1,5 +1,5 @@ // AUTO-GENERATED FILE. DO NOT EDIT BY HAND. -// Generated by scripts/generate-faker-help.js on 2026-05-21T14:14:48.030Z +// Generated by scripts/generate-faker-help.js on 2026-06-17T11:49:31.907Z const FAKER_COMMAND_HELP_METADATA = { 'datatype.boolean': { @@ -13,7 +13,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/datatype', - example: 'true', + example: 'false', }, 'date.month': { summary: 'Returns a random name of a month.', @@ -26,7 +26,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: 'August', + example: 'October', }, 'date.weekday': { summary: 'Returns a random day of the week.', @@ -39,13 +39,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: 'Saturday', + example: 'Sunday', }, 'date.timeZone': { summary: 'Returns a random IANA time zone relevant to this locale.', params: [], docsUrl: 'https://fakerjs.dev/api/date', - example: 'Asia/Yangon', + example: 'America/North_Dakota/Beulah', }, 'date.anytime': { summary: 'Generates a random date that can be either in the past or in the future.', @@ -58,7 +58,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-04-28T05:08:09.915Z"', + example: '"2026-09-14T20:59:15.284Z"', }, 'date.past': { summary: 'Generates a random date in the past.', @@ -71,7 +71,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2025-06-04T21:46:16.955Z"', + example: '"2025-09-17T07:19:38.085Z"', }, 'date.future': { summary: 'Generates a random date in the future.', @@ -84,7 +84,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-10-26T18:17:54.390Z"', + example: '"2027-03-18T23:18:54.147Z"', }, 'date.between': { summary: 'Generates a random date between the given boundaries.', @@ -124,7 +124,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-05-20T18:34:46.914Z"', + example: '"2026-06-16T17:41:37.966Z"', }, 'date.soon': { summary: 'Generates a random date in the near future.', @@ -137,7 +137,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-05-21T16:20:20.076Z"', + example: '"2026-06-18T00:55:28.430Z"', }, 'date.birthdate': { summary: @@ -151,7 +151,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"1978-11-19T20:11:49.254Z"', + example: '"1964-06-02T20:33:04.726Z"', }, 'helpers.fake': { summary: 'Interpolates faker template placeholders inside a string and returns the rendered result.', @@ -235,6 +235,62 @@ const FAKER_COMMAND_HELP_METADATA = { example: '', examples: ['helpers.arrayElement(["A", "B", "C"])'], }, + 'helpers.objectKey': { + summary: 'Returns one random key from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable keys are used as candidate values.', + }, + ], + docsUrl: 'https://fakerjs.dev/api/helpers', + example: '', + examples: ['helpers.objectKey({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.objectValue': { + summary: 'Returns one random value from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable values are used as candidate values.', + }, + ], + docsUrl: 'https://fakerjs.dev/api/helpers', + example: '', + examples: ['helpers.objectValue({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.objectEntry': { + summary: 'Returns one random [key, value] entry from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable entries are used as candidate values.', + }, + ], + docsUrl: 'https://fakerjs.dev/api/helpers', + example: '', + examples: ['helpers.objectEntry({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.enumValue': { + summary: 'Returns one random value from the supplied enum-like object.', + params: [ + { + name: 'enumObject', + optional: false, + type: 'object', + description: 'Enum-like object to sample from while ignoring numeric reverse-mapping keys.', + }, + ], + docsUrl: 'https://fakerjs.dev/api/helpers', + example: '', + examples: ['helpers.enumValue({ Pending: "pending", Active: "active" })'], + }, 'helpers.slugify': { summary: 'Converts a string into a URL-friendly slug.', params: [ @@ -280,7 +336,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/helpers', - example: '6453-7966-3615-1229-3277', + example: '6453-8782-0572-6865-8156', examples: ['helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")'], }, 'helpers.shuffle': { @@ -362,7 +418,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/helpers', - example: '7904848210355988', + example: '1583794333621745', examples: ['helpers.rangeToNumber({ min: 1, max: 2 })'], }, 'helpers.multiple': { @@ -396,7 +452,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '7797639603644137', + example: '997459534487157', }, 'number.float': { summary: @@ -410,7 +466,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '0.688121175779556', + example: '0.6780317323962697', }, 'number.binary': { summary: 'Returns a binary string.', @@ -436,7 +492,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '0', + example: '3', }, 'number.hex': { summary: 'Returns a lowercase hexadecimal number.', @@ -449,7 +505,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '9', + example: '3', }, 'number.bigInt': { summary: 'Returns a BigInt number.', @@ -462,7 +518,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '965717183813458', + example: '414538009825675', }, 'number.romanNumeral': { summary: 'Returns a roman numeral in String format.', @@ -475,7 +531,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: 'CCCXXVIII', + example: 'MMMXC', }, 'string.fromCharacters': { summary: 'Generates a string from the given characters.', @@ -507,7 +563,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: 'K', + example: 'i', }, 'string.alphanumeric': { summary: 'Generating a string consisting of alpha characters and digits.', @@ -520,7 +576,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '3', + example: 'r', }, 'string.binary': { summary: 'Returns a binary string.', @@ -533,7 +589,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '0b1', + example: '0b0', }, 'string.octal': { summary: 'Returns an octal string.', @@ -546,7 +602,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '0o0', + example: '0o5', }, 'string.hexadecimal': { summary: 'Returns a hexadecimal string.', @@ -559,7 +615,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '0x1', + example: '0xE', }, 'string.numeric': { summary: 'Generates a given length string of digits.', @@ -572,7 +628,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '2', + example: '8', }, 'string.sample': { summary: 'Returns a string containing UTF-16 chars between 33 and 125 (`!` to `}`).', @@ -585,13 +641,20 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '8!MJY,W+6p', + example: '(.poO_F}4f', }, 'string.uuid': { summary: 'Returns a UUID v4 (Universally Unique Identifier).', - params: [], + params: [ + { + name: 'options', + optional: false, + type: 'object', + description: '', + }, + ], docsUrl: 'https://fakerjs.dev/api/string', - example: 'e5f59d18-cbdc-401f-a89b-5ce0908d3863', + example: '2452d673-79a6-4ae0-9dbe-f1fccc373fae', }, 'string.ulid': { summary: 'Returns a ULID (Universally Unique Lexicographically Sortable Identifier).', @@ -604,7 +667,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '01KS5E73XD14P8MPA7XGKB3NYG', + example: '01KVAPMH2C226T1PZ4NT7YETFA', }, 'string.nanoid': { summary: 'Generates a Nano ID.', @@ -617,7 +680,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: 'E7sBy0pLM1JsGuDT-G4hv', + example: 'hx7xu9mHi49nwy-69dr0N', }, 'string.symbol': { summary: 'Returns a string containing only special characters from the following list:', @@ -630,43 +693,43 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '&', + example: '%', }, 'airline.airport.name': { summary: 'Generates a random airport.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'Hurgada International Airport', + example: 'Alfonso Bonilla Aragon International Airport', }, 'airline.airport.iataCode': { summary: 'Generates a random airport.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'BEL', + example: 'ZRH', }, 'airline.airline.name': { summary: 'Generates a random airline.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'Lion Air', + example: 'Air Europa', }, 'airline.airline.iataCode': { summary: 'Generates a random airline.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'AD', + example: 'OB', }, 'airline.airplane.name': { summary: 'Generates a random airplane.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'Douglas DC-9-20', + example: 'Embraer RJ145 Amazon', }, 'airline.airplane.iataTypeCode': { summary: 'Generates a random airplane.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: '74R', + example: 'A81', }, 'airline.recordLocator': { summary: 'Generates a random record locator. Record locators', @@ -679,7 +742,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'PXJUAP', + example: 'GXKVEE', }, 'airline.seat': { summary: 'Generates a random seat.', @@ -692,13 +755,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/airline', - example: '19D', + example: '20F', }, 'airline.aircraftType': { summary: 'Returns a random aircraft type.', params: [], docsUrl: 'https://fakerjs.dev/api/airline', - example: 'narrowbody', + example: 'regional', }, 'airline.flightNumber': { summary: 'Returns a random flight number. Flight numbers are always 1 to 4 digits long. Sometimes they are', @@ -711,163 +774,163 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/airline', - example: '1', + example: '42', }, 'animal.dog': { summary: 'Returns a random dog breed.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Mountain Feist', + example: 'Welsh Sheepdog', }, 'animal.cat': { summary: 'Returns a random cat breed.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Scottish Fold', + example: 'Turkish Van', }, 'animal.snake': { summary: 'Returns a random snake species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Red-tailed pipe snake', + example: 'Northwestern carpet python', }, 'animal.bear': { summary: 'Returns a random bear species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Polar bear', + example: 'Sun bear', }, 'animal.lion': { summary: 'Returns a random lion species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Barbary Lion', + example: 'Northeast Congo Lion', }, 'animal.cetacean': { summary: 'Returns a random cetacean species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Southern Rightwhale Dolphin', + example: 'Long-Beaked Common Dolphin', }, 'animal.horse': { summary: 'Returns a random horse breed.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Spiti Horse', + example: 'Albanian Horse', }, 'animal.bird': { summary: 'Returns a random bird species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: "Clark's Nutcracker", + example: 'Short-tailed Albatross', }, 'animal.cow': { summary: 'Returns a random cow species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Krishna Valley cattle', + example: 'Finnish Ayrshire', }, 'animal.fish': { summary: 'Returns a random fish species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Indian mackerel', + example: 'Silver cyprinid', }, 'animal.crocodilia': { summary: 'Returns a random crocodilian species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Tomistoma', + example: 'Nile Crocodile', }, 'animal.insect': { summary: 'Returns a random insect species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'False honey ant', + example: 'Honey bee', }, 'animal.rabbit': { summary: 'Returns a random rabbit species.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'American Sable', + example: 'Thrianta', }, 'animal.rodent': { summary: 'Returns a random rodent breed.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Southern tuco-tuco', + example: 'Goya tuco-tuco', }, 'animal.type': { summary: 'Returns a random animal type.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'bird', + example: 'whale', }, 'animal.petName': { summary: 'Returns a random pet name.', params: [], docsUrl: 'https://fakerjs.dev/api/animal', - example: 'Gracie', + example: 'Lola', }, 'book.author': { summary: 'Returns a random author name.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'Friedrich Wilhelm Nietzsche', + example: 'V.S. Naipaul', }, 'book.format': { summary: 'Returns a random book format.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'Audiobook', + example: 'Ebook', }, 'book.genre': { summary: 'Returns a random genre.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'Psychology', + example: 'Science Fiction', }, 'book.publisher': { summary: 'Returns a random publisher.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'Central European University Press', + example: "G. P. Putnam's Sons", }, 'book.series': { summary: 'Returns a random series.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'His Dark Materials', + example: 'The Bartimaeus Trilogy', }, 'book.title': { summary: 'Returns a random title.', params: [], docsUrl: 'https://fakerjs.dev/api/book', - example: 'The War of the Worlds', + example: 'Ruth Fielding in Alaska', }, 'color.human': { summary: 'Returns a random human-readable color name.', params: [], docsUrl: 'https://fakerjs.dev/api/color', - example: 'grey', + example: 'violet', }, 'color.space': { summary: 'Returns a random color space name from the worldwide accepted color spaces.', params: [], docsUrl: 'https://fakerjs.dev/api/color', - example: 'CMY', + example: 'RAL', }, 'color.cssSupportedFunction': { summary: 'Returns a random css supported color function name.', params: [], docsUrl: 'https://fakerjs.dev/api/color', - example: 'lch', + example: 'lab', }, 'color.cssSupportedSpace': { summary: 'Returns a random css supported color space name.', params: [], docsUrl: 'https://fakerjs.dev/api/color', - example: 'a98-rgb', + example: 'rec2020', }, 'color.rgb': { summary: 'Returns an RGB color.', @@ -880,7 +943,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '#73af15', + example: '#f92a9c', }, 'color.cmyk': { summary: 'Returns a CMYK color.', @@ -893,7 +956,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[0.92,0.28,0.36,0.67]', + example: '[0.57,0.67,0.8,0.43]', }, 'color.hsl': { summary: 'Returns an HSL color.', @@ -906,7 +969,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[152,0.4,0.05]', + example: '[150,0.81,0.03]', }, 'color.hwb': { summary: 'Returns an HWB color.', @@ -919,7 +982,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[268,0.21,0.1]', + example: '[168,0.45,0.5]', }, 'color.lab': { summary: 'Returns a LAB (CIELAB) color.', @@ -932,7 +995,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[0.506964,-11.2048,-69.3096]', + example: '[0.790935,99.3034,-77.6949]', }, 'color.lch': { summary: 'Returns an LCH color. Even though upper bound of', @@ -945,7 +1008,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[0.906366,121.7,108.7]', + example: '[0.616192,220.3,195]', }, 'color.colorByCSSColorSpace': { summary: 'Returns a random color based on CSS color space specified.', @@ -958,19 +1021,19 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/color', - example: '[0.8831,0.0188,0.3648]', + example: '[0.3814,0.1876,0.2448]', }, 'commerce.department': { summary: 'Returns a department inside a shop.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Grocery', + example: 'Baby', }, 'commerce.productName': { summary: 'Generates a random descriptive product name.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Practical Granite Towels', + example: 'Electronic Rubber Keyboard', }, 'commerce.price': { summary: 'Generates a price between min and max (inclusive).', @@ -983,31 +1046,31 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/commerce', - example: '929.59', + example: '266.79', }, 'commerce.productAdjective': { summary: 'Returns an adjective describing a product.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Unbranded', + example: 'Fantastic', }, 'commerce.productMaterial': { summary: 'Returns a material of a product.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Silk', + example: 'Bronze', }, 'commerce.product': { summary: 'Returns a short product name.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Car', + example: 'Table', }, 'commerce.productDescription': { summary: 'Returns a product description.', params: [], docsUrl: 'https://fakerjs.dev/api/commerce', - example: 'Featuring Plutonium-enhanced technology, our Pizza offers unparalleled creative performance', + example: 'Featuring Cerium-enhanced technology, our Table offers unparalleled extra-large performance', }, 'commerce.isbn': { summary: 'Returns a random ISBN identifier.', @@ -1020,91 +1083,104 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/commerce', - example: '978-1-285-15793-1', + example: '978-0-7801-8562-3', + }, + 'commerce.upc': { + summary: 'Returns a valid UPC‑A (12 digits).', + params: [ + { + name: 'options', + optional: true, + type: 'object', + description: '', + }, + ], + docsUrl: 'https://fakerjs.dev/api/commerce', + example: '987149525369', }, 'company.name': { summary: 'Generates a random company name.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'Mueller - Lebsack', + example: 'Rutherford - Fisher', }, 'company.catchPhrase': { summary: 'Generates a random catch phrase that can be displayed to an end user.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'Fundamental zero administration budgetary management', + example: 'Team-oriented context-sensitive model', }, 'company.buzzPhrase': { summary: 'Generates a random buzz phrase that can be used to demonstrate data being viewed by a manager.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'unleash impactful deliverables', + example: 'leverage synergistic solutions', }, 'company.catchPhraseAdjective': { summary: 'Returns a random catch phrase adjective that can be displayed to an end user..', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'Upgradable', + example: 'Ergonomic', }, 'company.catchPhraseDescriptor': { summary: 'Returns a random catch phrase descriptor that can be displayed to an end user..', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'contextually-based', + example: 'tertiary', }, 'company.catchPhraseNoun': { summary: 'Returns a random catch phrase noun that can be displayed to an end user..', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'algorithm', + example: 'customer loyalty', }, 'company.buzzAdjective': { summary: 'Returns a random buzz adjective that can be used to demonstrate data being viewed by a manager.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'end-to-end', + example: 'smart', }, 'company.buzzVerb': { summary: 'Returns a random buzz verb that can be used to demonstrate data being viewed by a manager.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'maximize', + example: 'evolve', }, 'company.buzzNoun': { summary: 'Returns a random buzz noun that can be used to demonstrate data being viewed by a manager.', params: [], docsUrl: 'https://fakerjs.dev/api/company', - example: 'markets', + example: 'methodologies', }, 'database.column': { summary: 'Returns a random database column name.', params: [], docsUrl: 'https://fakerjs.dev/api/database', - example: 'password', + example: 'avatar', }, 'database.type': { summary: 'Returns a random database column type.', params: [], docsUrl: 'https://fakerjs.dev/api/database', - example: 'boolean', + example: 'blob', }, 'database.collation': { summary: 'Returns a random database collation.', params: [], docsUrl: 'https://fakerjs.dev/api/database', - example: 'utf8_unicode_ci', + example: 'ascii_bin', }, 'database.engine': { summary: 'Returns a random database engine.', params: [], docsUrl: 'https://fakerjs.dev/api/database', - example: 'MEMORY', + example: 'ARCHIVE', }, 'database.mongodbObjectId': { summary: 'Returns a MongoDB ObjectId string.', params: [], docsUrl: 'https://fakerjs.dev/api/database', - example: '4a24d67ed4b2ec2f6c3c69cc', + example: '1ce3abf5103c3ffe4befd6cd', }, 'finance.accountNumber': { summary: 'Generates a random account number.', @@ -1117,32 +1193,19 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: '31286886', + example: '24946834', }, 'finance.accountName': { summary: 'Generates a random account name.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'Investment Account', + example: 'Money Market Account', }, 'finance.routingNumber': { summary: 'Generates a random routing number.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '704162118', - }, - 'finance.maskedNumber': { - summary: 'Generates a random masked number.', - params: [ - { - name: 'length', - optional: true, - type: 'number', - description: '', - }, - ], - docsUrl: 'https://fakerjs.dev/api/finance', - example: '(...4826)', + example: '526603897', }, 'finance.amount': { summary: 'Generates a random amount between the given bounds (inclusive).', @@ -1155,43 +1218,43 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: '529.53', + example: '541.73', }, 'finance.transactionType': { summary: 'Returns a random transaction type.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'payment', + example: 'invoice', }, 'finance.currency': { summary: 'Returns a random currency object, containing `code`, `name`, `symbol`, and `numericCode` properties.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '{"name":"Balboa","code":"PAB","symbol":"B/.","numericCode":"590"}', + example: '{"name":"Nakfa","code":"ERN","symbol":"","numericCode":"232"}', }, 'finance.currencyCode': { summary: 'Returns a random currency code.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'ILS', + example: 'SHP', }, 'finance.currencyName': { summary: 'Returns a random currency name.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'Kip', + example: 'Naira', }, 'finance.currencySymbol': { summary: 'Returns a random currency symbol.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '£', + example: '$', }, 'finance.currencyNumericCode': { summary: 'Returns a random currency numeric code.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '840', + example: '598', }, 'finance.bitcoinAddress': { summary: 'Generates a random Bitcoin address.', @@ -1204,13 +1267,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'bc1pd62e0u82wsz2juwyvufec33z0teell7akqxmausgave73f75n0hp5v982q', + example: '3t1EGAyPZvF6ccaxs5gqimYJSWEEz4Jm', }, 'finance.litecoinAddress': { summary: 'Generates a random Litecoin address.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'MRh94Cr984YjdWnLC7nApx2CMH', + example: 'LoLqC6WhzRSyZHKLVsTbthKbEvdb7b1Qj', }, 'finance.creditCardNumber': { summary: 'Generates a random credit card number.', @@ -1223,19 +1286,19 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: '3580-2555-6264-3843', + example: '6011-8373-5193-9847', }, 'finance.creditCardCVV': { summary: 'Generates a random credit card CVV.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '901', + example: '159', }, 'finance.creditCardIssuer': { summary: 'Returns a random credit card issuer.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'visa', + example: 'discover', }, 'finance.pin': { summary: 'Generates a random PIN number.', @@ -1248,13 +1311,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: '6849', + example: '8558', }, 'finance.ethereumAddress': { summary: 'Creates a random, non-checksum Ethereum address.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', - example: '0x21bed518f13d1bb0ad58bafc4a15ba5c39763a2b', + example: '0x41bf9ee281feeaed2360ccad3f0fed7b7f4baf56', }, 'finance.iban': { summary: 'Generates a random IBAN.', @@ -1267,7 +1330,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'MU57PPVU0753822006083030040ZIN', + example: 'FO0381241494710087', }, 'finance.bic': { summary: 'Generates a random SWIFT/BIC code based on the ISO-9362 format.', @@ -1280,75 +1343,75 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/finance', - example: 'UHXZBVRY', + example: 'VUHWROCYA6A', }, 'finance.transactionDescription': { summary: 'Generates a random transaction description.', params: [], docsUrl: 'https://fakerjs.dev/api/finance', example: - 'deposit processed at Mills, Bailey and Rolfson for IRR 560.30, using card ending ****1699. Account: ***4848.', + 'Your payment of MKD 774.17 at Schulist - Wiegand was successful. Charged via card ****6807 to account ***6361.', }, 'food.adjective': { summary: 'Generates a random dish adjective.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'tender', + example: 'fresh', }, 'food.description': { summary: 'Generates a random dish description.', params: [], docsUrl: 'https://fakerjs.dev/api/food', example: - 'Three sugar with rhubarb, radicchio, celery, cos lettuce and kohlrabi. With a side of baked honeydew melon, and your choice of coriander ...', + 'A succulent quail steak, encased in a rich lavender crust, served with a side of chamomile mashed butternut lettuce.', }, 'food.dish': { summary: 'Generates a random dish name.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'Vegetable Soup', + example: 'Mushroom Bourguignon', }, 'food.ethnicCategory': { summary: "Generates a random food's ethnic category.", params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'Balochi', + example: 'Indonesian', }, 'food.fruit': { summary: 'Generates a random fruit name.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'sprout', + example: 'kiwiberry', }, 'food.ingredient': { summary: 'Generates a random ingredient name.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'kiwi fruit', + example: 'malt vinegar', }, 'food.meat': { summary: 'Generates a random meat', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'crocodile', + example: 'kangaroo', }, 'food.spice': { summary: 'Generates a random spice name.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'garam masala', + example: 'turmeric', }, 'food.vegetable': { summary: 'Generates a random vegetable name.', params: [], docsUrl: 'https://fakerjs.dev/api/food', - example: 'swiss chard', + example: 'chilli pepper', }, 'git.branch': { summary: 'Generates a random branch name.', params: [], docsUrl: 'https://fakerjs.dev/api/git', - example: 'application-transmit', + example: 'bandwidth-index', }, 'git.commitEntry': { summary: 'Generates a random commit entry as printed by `git log`.', @@ -1362,13 +1425,13 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/git', example: - 'commit 3220100fdc8f190fcebf6e345ccaf988ee76b32a Author: Adolf.Skiles52 Date: Thu May 21 03:58:53 2026 +0700 i...', + 'commit bd4992e2fcad7bbd177ceaea840c1f00dc425b2a Author: Bryan_Feest-Witting12 Date: Tue Jun 16 20:09:21...', }, 'git.commitMessage': { summary: 'Generates a random commit message.', params: [], docsUrl: 'https://fakerjs.dev/api/git', - example: 'quantify bluetooth circuit', + example: 'compress bluetooth bandwidth', }, 'git.commitDate': { summary: 'Generates a date string for a git commit using the same format as `git log`.', @@ -1381,7 +1444,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/git', - example: 'Thu May 21 05:58:08 2026 -0100', + example: 'Tue Jun 16 17:05:40 2026 -0700', }, 'git.commitSha': { summary: 'Generates a random commit sha.', @@ -1394,55 +1457,55 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/git', - example: 'acc47c2f0ab14936e2a7f1105b003e97c8a28eb3', + example: '49b639eac70a5bdba4ea953b99ed7eb4cd6439cc', }, 'hacker.abbreviation': { summary: 'Returns a random hacker/IT abbreviation.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'USB', + example: 'TCP', }, 'hacker.adjective': { summary: 'Returns a random hacker/IT adjective.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'online', + example: 'solid state', }, 'hacker.noun': { summary: 'Returns a random hacker/IT noun.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'program', + example: 'pixel', }, 'hacker.verb': { summary: 'Returns a random hacker/IT verb.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'connect', + example: 'quantify', }, 'hacker.ingverb': { summary: 'Returns a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'navigating', + example: 'generating', }, 'hacker.phrase': { summary: 'Generates a random hacker/IT phrase.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'Try to program the SAS monitor, maybe it will input the wireless system!', + example: 'The UDP feed is down, quantify the cross-platform panel so we can synthesize the ADP feed!', }, 'image.avatar': { summary: 'Generates a random avatar image url.', params: [], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://avatars.githubusercontent.com/u/62826576', + example: 'https://avatars.githubusercontent.com/u/93003301', }, 'image.avatarGitHub': { summary: 'Generates a random avatar from GitHub.', params: [], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://avatars.githubusercontent.com/u/56094563', + example: 'https://avatars.githubusercontent.com/u/15980572', }, 'image.personPortrait': { summary: 'Generates a random square portrait (avatar) of a person.', @@ -1455,14 +1518,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/male/512/41.jpg', - }, - 'image.avatarLegacy': { - summary: - 'Generates a random avatar from `https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar`.', - params: [], - docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/1216.jpg', + example: 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/56.jpg', }, 'image.url': { summary: 'Generates a random image url.', @@ -1475,7 +1531,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://loremflickr.com/3684/861?lock=3855182664861934', + example: 'https://picsum.photos/seed/GVKwWnHf/343/1942', }, 'image.urlLoremFlickr': { summary: 'Generates a random image url provided via https://loremflickr.com.', @@ -1488,7 +1544,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://loremflickr.com/26/2685?lock=1291126694506318', + example: 'https://loremflickr.com/2761/789?lock=6357438492435572', }, 'image.urlPicsumPhotos': { summary: 'Generates a random image url provided via https://picsum.photos.', @@ -1501,20 +1557,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://picsum.photos/seed/TZdER/2955/2074?grayscale&blur=2', - }, - 'image.urlPlaceholder': { - summary: 'Generates a random image url provided via https://via.placeholder.com/.', - params: [ - { - name: 'options', - optional: true, - type: 'object', - description: '', - }, - ], - docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://via.placeholder.com/3438x147/ece56d/4afaad.jpeg?text=ipsum%20cornu%20sortitus', + example: 'https://picsum.photos/seed/R3e3QhYbWF/293/1440?grayscale&blur=5', }, 'image.dataUri': { summary: 'Generates a random data uri containing an URL-encoded SVG image or a Base64-encoded SVG image.', @@ -1528,32 +1571,19 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/image', example: - 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22ful...', + 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzMTA...', }, 'internet.email': { summary: 'Generates data using faker internet email.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Kevin.Kreiger65@hotmail.com', + example: 'Vilma_Romaguera@hotmail.com', }, 'internet.exampleEmail': { summary: 'Generates data using faker internet example email.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Maya_Price@example.net', - }, - 'internet.userName': { - summary: "Generates a username using the given person's name as base.", - params: [ - { - name: 'options', - optional: true, - type: 'object', - description: '', - }, - ], - docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Karli64', + example: 'Conrad46@example.org', }, 'internet.username': { summary: "Generates a username using the given person's name as base.", @@ -1566,7 +1596,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Heaven.Cruickshank', + example: 'Cary.Boehm76', }, 'internet.displayName': { summary: "Generates a display name using the given person's name as base.", @@ -1579,13 +1609,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Antonina_Schneider', + example: 'Omar_Ferry', }, 'internet.protocol': { summary: 'Returns a random web protocol. Either `http` or `https`.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'http', + example: 'https', }, 'internet.httpMethod': { summary: 'Returns a random http method.', @@ -1604,7 +1634,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '201', + example: '425', }, 'internet.url': { summary: 'Generates a random http(s) url.', @@ -1617,13 +1647,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'https://awesome-government.name/', + example: 'https://livid-valley.org/', }, 'internet.domainName': { summary: 'Generates a random domain name.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'qualified-assist.org', + example: 'quarterly-lashes.net', }, 'internet.domainSuffix': { summary: 'Returns a random domain suffix.', @@ -1635,13 +1665,13 @@ const FAKER_COMMAND_HELP_METADATA = { summary: 'Generates a random domain word.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'shameful-nectarine', + example: 'fruitful-circumference', }, 'internet.ip': { summary: 'Generates a random IPv4 or IPv6 address.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: '225.164.24.34', + example: '186.200.80.77', }, 'internet.ipv4': { summary: 'Generates a random IPv4 address.', @@ -1654,38 +1684,26 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '', + example: '84.115.56.19', }, 'internet.ipv6': { summary: 'Generates a random IPv6 address.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: '', + example: 'c347:ecda:506f:824f:cdef:6372:c029:acfa', }, 'internet.port': { summary: 'Generates a random port number.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: '9265', + example: '14657', }, 'internet.userAgent': { summary: 'Generates a random user agent string.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Mozilla/5.0 (X11; Linux x86_64; rv:124.0) Gecko/20100101 Firefox/112.0', - }, - 'internet.color': { - summary: 'Generates a random css hex color code in aesthetically pleasing color palette.', - params: [ - { - name: 'options', - optional: true, - type: 'object', - description: '', - }, - ], - docsUrl: 'https://fakerjs.dev/api/internet', - example: '#011a1d', + example: + 'Mozilla/5.0 (Linux; Android 11; SM-T800) AppleWebKit/538.25 (KHTML, like Gecko) Chrome/83.9.17.12 Mobile Safari/580.6', }, 'internet.mac': { summary: 'Generates a random mac address.', @@ -1698,7 +1716,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'd2:6d:2a:79:05:cf', + example: '3e:0e:2b:02:dd:a3', }, 'internet.password': { summary: @@ -1712,7 +1730,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'iOI8UveaHPs2_tX', + example: 'zIuJbDmTtiArT9Z', }, 'internet.emoji': { summary: 'Generates a random emoji.', @@ -1725,7 +1743,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '💫', + example: '🎋', }, 'internet.jwtAlgorithm': { summary: 'Generates a random JWT (JSON Web Token) Algorithm.', @@ -1745,31 +1763,31 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/internet', example: - 'eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0.eyJpYXQiOjE3NzkzMDg3ODAsImV4cCI6MTc3OTM3ODE0NiwibmJmIjoxNzUwMTA2MzEwLCJpc3MiOiJEJ0Ftb3JlIExMQyIsInN1Y...', + 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2OTQ2NjMsImV4cCI6MTc4MTc0NDQ2MCwibmJmIjoxODAxMTgzMzcyLCJpc3MiOiJUaG9tcHNvbiAtIEVtYXJk...', }, 'location.zipCode': { summary: 'Generates data using faker location zip code.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '02373-3739', + example: '09774', }, 'location.city': { summary: 'Generates a random localized city name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Waelchiborough', + example: 'Gorczanybury', }, 'location.buildingNumber': { summary: 'Generates a random building number.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '6753', + example: '2449', }, 'location.street': { summary: 'Generates a random localized street name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Auer Camp', + example: 'Izabella Drive', }, 'location.streetAddress': { summary: 'Generates a random localized street address.', @@ -1782,32 +1800,32 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '4728 Kuvalis Rue', + example: '345 Greenwood Road', }, 'location.secondaryAddress': { summary: 'Generates a random localized secondary address. This refers to a specific location at a given address', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Suite 859', + example: 'Apt. 766', }, 'location.county': { summary: "Returns a random localized county, or other equivalent second-level administrative entity for the locale's country such as a district or department.", params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'West Yorkshire', + example: 'Adams County', }, 'location.country': { summary: 'Returns a random country name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Sierra Leone', + example: 'Ireland', }, 'location.continent': { summary: 'Returns a random continent name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'South America', + example: 'Asia', }, 'location.countryCode': { summary: 'Returns a random ISO_3166-1 country code.', @@ -1820,7 +1838,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'ZW', + example: 'YT', }, 'location.state': { summary: @@ -1834,7 +1852,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Delaware', + example: 'Kentucky', }, 'location.latitude': { summary: 'Generates a random latitude.', @@ -1847,7 +1865,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '-3.8309', + example: '-86.519', }, 'location.longitude': { summary: 'Generates a random longitude.', @@ -1860,7 +1878,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '-78.249', + example: '83.6923', }, 'location.direction': { summary: 'Returns a random direction (cardinal and ordinal; northwest, east, etc).', @@ -1873,7 +1891,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'East', + example: 'Northeast', }, 'location.cardinalDirection': { summary: 'Returns a random cardinal direction (north, east, south, west).', @@ -1886,7 +1904,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'West', + example: 'East', }, 'location.ordinalDirection': { summary: 'Returns a random ordinal direction (northwest, southeast, etc).', @@ -1899,7 +1917,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Northeast', + example: 'Northwest', }, 'location.nearbyGPSCoordinate': { summary: 'Generates a random GPS coordinate within the specified radius from the given coordinate.', @@ -1912,19 +1930,19 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '[47.0596,-48.845]', + example: '[-45.3198,171.691]', }, 'location.timeZone': { summary: 'Returns a random IANA time zone name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Asia/Tomsk', + example: 'America/Rankin_Inlet', }, 'location.language': { summary: 'Returns a random spoken language.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '{"name":"French","alpha2":"fr","alpha3":"fra"}', + example: '{"name":"Tatar","alpha2":"tt","alpha3":"tat"}', }, 'lorem.word': { summary: 'Generates a word of a specified length.', @@ -1937,7 +1955,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'trepide', + example: 'itaque', }, 'lorem.words': { summary: 'Generates a space separated list of words.', @@ -1950,7 +1968,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'sonitus cuius ventito', + example: 'brevis sol explicabo', }, 'lorem.sentence': { summary: 'Generates a space separated list of words beginning with a capital letter and ending with a period.', @@ -1963,7 +1981,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'Sapiente praesentium sopor thymbra tergum voco tum sufficio vir desidero.', + example: 'Veritatis virgo conitor trepide comes desino.', }, 'lorem.slug': { summary: 'Generates a slugified text consisting of the given number of hyphen separated words.', @@ -1976,7 +1994,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'nesciunt-cunctatio-decerno', + example: 'alioqui-uterque-cervus', }, 'lorem.sentences': { summary: 'Generates the given number of sentences.', @@ -1996,7 +2014,7 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Sequi totam spectaculum sui amita amita cubitum volo thalassinus utrimque. Hic creta accommodo carus defetiscor alioqui. Sapiente tertius...', + 'Avaritia comptus templum creber conqueror subnecto cogito esse cribro tristis. Cedo adiuvo absum verus consequuntur terror.', }, 'lorem.paragraph': { summary: 'Generates a paragraph with the given number of sentences.', @@ -2010,7 +2028,7 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Truculenter quibusdam ago crinis stultus subseco. Adaugeo avaritia sto delego denuncio cohibeo. Acerbitas conventus trado combibo celo ap...', + 'Verto caste conscendo tepesco. Cicuta sapiente ademptio suscipit tandem tenetur audeo pauci ab usus. Suffoco quo cilicium arcesso acer ab...', }, 'lorem.paragraphs': { summary: 'Generates the given number of paragraphs.', @@ -2030,14 +2048,13 @@ const FAKER_COMMAND_HELP_METADATA = { ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Vilicus facere conscendo facilis corroboro rem. Temptatio thema impedit. Dolor attonbitus aperio calculus convoco adhaero vigor excepturi...', + 'Vapulus cogo votum barba celebrer hic crepusculum. Culpa ea amitto sophismata autus stabilis tyrannus. Colligo adicio universe. Testimoni...', }, 'lorem.text': { summary: 'Generates a random text based on a random lorem method.', params: [], docsUrl: 'https://fakerjs.dev/api/lorem', - example: - 'Inventore ocer vulgivagus. Comburo causa deserunt sophismata. Textus vobis sumo tamdiu terra timidus tum.', + example: 'Tabernus ater harum tondeo tantum sum.', }, 'lorem.lines': { summary: "Generates the given number lines of lorem separated by `'\\n'`.", @@ -2050,31 +2067,32 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'Conforto vae cupressus acies alioqui vociferor cupiditas quaerat.', + example: + 'Callide sufficio aggero aufero. Validus subseco deprecator amissio strues omnis. Baiulus coerceo abundans nemo toties supra adfectus cibo...', }, 'music.album': { summary: 'Returns a random album name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Feel Something', + example: 'Stay Dangerous', }, 'music.artist': { summary: 'Returns a random artist name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Dave', + example: 'Lil Skies', }, 'music.genre': { summary: 'Returns a random music genre.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Surf', + example: 'Worldbeat', }, 'music.songName': { summary: 'Returns a random song name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Rosanna', + example: 'Sugar Shack', }, 'person.firstName': { summary: 'Returns a random first name.', @@ -2082,12 +2100,12 @@ const FAKER_COMMAND_HELP_METADATA = { { name: 'sex', optional: true, - type: "'female' | 'male'", + type: "'female' | 'generic' | 'male'", description: '', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Ferne', + example: 'Ila', }, 'person.lastName': { summary: 'Returns a random last name.', @@ -2095,12 +2113,12 @@ const FAKER_COMMAND_HELP_METADATA = { { name: 'sex', optional: true, - type: "'female' | 'male'", + type: "'female' | 'generic' | 'male'", description: '', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Koch', + example: 'Koelpin-Witting', }, 'person.middleName': { summary: 'Returns a random middle name.', @@ -2108,12 +2126,12 @@ const FAKER_COMMAND_HELP_METADATA = { { name: 'sex', optional: true, - type: "'female' | 'male'", + type: "'female' | 'generic' | 'male'", description: '', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Rory', + example: 'Amber', }, 'person.fullName': { summary: 'Generates a random full name.', @@ -2126,13 +2144,13 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Dexter Ryan', + example: 'Sadye Kulas IV', }, 'person.gender': { summary: 'Returns a random gender.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Polygender', + example: 'Genderflux', }, 'person.sex': { summary: 'Returns a random sex.', @@ -2142,7 +2160,14 @@ const FAKER_COMMAND_HELP_METADATA = { }, 'person.sexType': { summary: 'Returns a random sex type. The `SexType` is intended to be used in parameters and conditions.', - params: [], + params: [ + { + name: 'options', + optional: true, + type: 'object', + description: '', + }, + ], docsUrl: 'https://fakerjs.dev/api/person', example: 'female', }, @@ -2150,7 +2175,7 @@ const FAKER_COMMAND_HELP_METADATA = { summary: 'Returns a random short biography', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'creator, philosopher, film lover', + example: 'artist, designer', }, 'person.prefix': { summary: 'Returns a random person prefix.', @@ -2158,12 +2183,12 @@ const FAKER_COMMAND_HELP_METADATA = { { name: 'sex', optional: true, - type: "'female' | 'male'", + type: "'female' | 'generic' | 'male'", description: '', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Mrs.', + example: 'Ms.', }, 'person.suffix': { summary: 'Returns a random person suffix.', @@ -2175,31 +2200,31 @@ const FAKER_COMMAND_HELP_METADATA = { summary: 'Generates a random job title.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'National Security Developer', + example: 'Regional Directives Consultant', }, 'person.jobDescriptor': { summary: 'Generates a random job descriptor.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'District', + example: 'Chief', }, 'person.jobArea': { summary: 'Generates a random job area.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Optimization', + example: 'Metrics', }, 'person.jobType': { summary: 'Generates a random job type.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Administrator', + example: 'Producer', }, 'person.zodiacSign': { summary: 'Returns a random zodiac sign.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Aries', + example: 'Leo', }, 'phone.number': { summary: 'Generates a random phone number.', @@ -2212,37 +2237,37 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/phone', - example: '322-541-9375 x48266', + example: '1-807-497-5708 x90610', }, 'phone.imei': { summary: 'Generates IMEI number.', params: [], docsUrl: 'https://fakerjs.dev/api/phone', - example: '56-672296-583312-7', + example: '32-366818-922037-3', }, 'science.chemicalElement.symbol': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: 'Mc', + example: 'Ne', }, 'science.chemicalElement.name': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: 'Scandium', + example: 'Chlorine', }, 'science.chemicalElement.atomicNumber': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: '27', + example: '75', }, 'science.unit': { summary: 'Returns a random scientific unit.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: '{"name":"henry","symbol":"H"}', + example: '{"name":"weber","symbol":"Wb"}', }, 'system.fileName': { summary: 'Returns a random file name with extension.', @@ -2255,7 +2280,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'anenst_splash_bathrobe.rar', + example: 'so_whereas_seal.jpe', }, 'system.commonFileName': { summary: 'Returns a random file name with a given extension or a commonly used extension.', @@ -2268,31 +2293,31 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'unfurl_jiggle.gif', + example: 'instead_instead_towards.m2a', }, 'system.mimeType': { summary: 'Returns a mime-type.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'image/tiff', + example: 'image/bmp', }, 'system.commonFileType': { summary: 'Returns a commonly used file type.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'image', + example: 'text', }, 'system.commonFileExt': { summary: 'Returns a commonly used file extension.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'mpe', + example: 'wav', }, 'system.fileType': { summary: 'Returns a file type.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'audio', + example: 'text', }, 'system.fileExt': { summary: 'Returns a file extension.', @@ -2305,25 +2330,25 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'csv', + example: 'xlw', }, 'system.directoryPath': { summary: 'Returns a directory path.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '/usr', + example: '/dev', }, 'system.filePath': { summary: 'Returns a file path.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '/Network/even.bpk', + example: '/etc/periodic/option_hastily_gosh.pkg', }, 'system.semver': { summary: 'Returns a semantic version.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '0.9.0', + example: '0.15.10', }, 'system.networkInterface': { summary: 'Returns a random network interface.', @@ -2336,7 +2361,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'wlp5s6d2', + example: 'wwp6s2f3', }, 'system.cron': { summary: 'Returns a random cron expression.', @@ -2349,61 +2374,61 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: '13 21 6 * THU', + example: '* 7 * 8 THU', }, 'vehicle.vehicle': { summary: 'Returns a random vehicle.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Mazda Grand Caravan', + example: 'Maserati Mustang', }, 'vehicle.manufacturer': { summary: 'Returns a manufacturer name.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Audi', + example: 'Honda', }, 'vehicle.model': { summary: 'Returns a vehicle model.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Taurus', + example: '1', }, 'vehicle.type': { summary: 'Returns a vehicle type.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Convertible', + example: 'Coupe', }, 'vehicle.fuel': { summary: 'Returns a fuel type.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Diesel', + example: 'Electric', }, 'vehicle.vin': { summary: 'Returns a vehicle identification number (VIN).', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'RBZ9K7MXKKC746240', + example: 'R462W1NTECCK88223', }, 'vehicle.color': { summary: 'Returns a vehicle color.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'violet', + example: 'pink', }, 'vehicle.vrm': { summary: 'Returns a vehicle registration number (Vehicle Registration Mark - VRM)', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'VW12EGF', + example: 'CO16SOB', }, 'vehicle.bicycle': { summary: 'Returns a type of bicycle.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Touring Bicycle', + example: 'BMX Bicycle', }, 'word.adjective': { summary: 'Returns a random adjective.', @@ -2416,7 +2441,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'frail', + example: 'affectionate', }, 'word.adverb': { summary: 'Returns a random adverb.', @@ -2429,7 +2454,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'calmly', + example: 'mysteriously', }, 'word.conjunction': { summary: 'Returns a random conjunction.', @@ -2442,7 +2467,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'or', + example: 'provided', }, 'word.interjection': { summary: 'Returns a random interjection.', @@ -2455,7 +2480,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'huzzah', + example: 'oof', }, 'word.noun': { summary: 'Returns a random noun.', @@ -2468,7 +2493,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'patroller', + example: 'wedding', }, 'word.preposition': { summary: 'Returns a random preposition.', @@ -2481,7 +2506,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'since', + example: 'modulo', }, 'word.verb': { summary: 'Returns a random verb.', @@ -2494,7 +2519,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'apologise', + example: 'bore', }, 'word.sample': { summary: @@ -2508,7 +2533,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'reflecting', + example: 'flight', }, 'word.words': { summary: 'Returns a random string containing some words separated by spaces.', @@ -2521,7 +2546,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'hidden ha', + example: 'back yuck pfft', }, }; diff --git a/packages/core/js/faker/faker-commands.js b/packages/core/js/faker/faker-commands.js index 84725507..479099e1 100644 --- a/packages/core/js/faker/faker-commands.js +++ b/packages/core/js/faker/faker-commands.js @@ -1,7 +1,7 @@ const KNOWN_FAKER_COMMANDS = [ 'RegEx', - // v9.7.0 + // v10.4.0 //"_randomizer.next","_randomizer.seed", 'datatype.boolean', 'date.month', @@ -21,6 +21,10 @@ const KNOWN_FAKER_COMMANDS = [ 'helpers.fromRegExp', 'helpers.maybe', 'helpers.arrayElement', + 'helpers.objectKey', + 'helpers.objectValue', + 'helpers.objectEntry', + 'helpers.enumValue', 'helpers.slugify', 'helpers.replaceSymbols', 'helpers.replaceCreditCardSymbols', @@ -30,7 +34,6 @@ const KNOWN_FAKER_COMMANDS = [ 'helpers.arrayElements', 'helpers.rangeToNumber', 'helpers.multiple', - // "helpers.objectKey","helpers.objectValue","helpers.objectEntry","helpers.enumValue", 'number.int', 'number.float', 'number.binary', @@ -101,6 +104,7 @@ const KNOWN_FAKER_COMMANDS = [ 'commerce.product', 'commerce.productDescription', 'commerce.isbn', + 'commerce.upc', 'company.name', 'company.catchPhrase', 'company.buzzPhrase', @@ -118,7 +122,6 @@ const KNOWN_FAKER_COMMANDS = [ 'finance.accountNumber', 'finance.accountName', 'finance.routingNumber', - 'finance.maskedNumber', 'finance.amount', 'finance.transactionType', 'finance.currency', @@ -159,15 +162,12 @@ const KNOWN_FAKER_COMMANDS = [ 'image.avatar', 'image.avatarGitHub', 'image.personPortrait', - 'image.avatarLegacy', 'image.url', 'image.urlLoremFlickr', 'image.urlPicsumPhotos', - 'image.urlPlaceholder', 'image.dataUri', 'internet.email', 'internet.exampleEmail', - 'internet.userName', 'internet.username', 'internet.displayName', 'internet.protocol', @@ -182,7 +182,6 @@ const KNOWN_FAKER_COMMANDS = [ 'internet.ipv6', 'internet.port', 'internet.userAgent', - 'internet.color', 'internet.mac', 'internet.password', 'internet.emoji', @@ -273,6 +272,13 @@ const KNOWN_FAKER_COMMANDS = [ 'word.words', ]; +const FORBIDDEN_FAKER_COMMANDS = [ + 'helpers.objectKey', + 'helpers.objectValue', + 'helpers.objectEntry', + 'helpers.enumValue', +]; + function compareAlphabetically(left, right) { return left.localeCompare(right); } @@ -287,4 +293,26 @@ function getKnownFakerCommandsLongestFirst() { ); } -export { KNOWN_FAKER_COMMANDS, getKnownFakerCommandsAlphabetical, getKnownFakerCommandsLongestFirst }; +function getAllowedFakerCommandsAlphabetical() { + const forbidden = new Set(FORBIDDEN_FAKER_COMMANDS); + return getKnownFakerCommandsAlphabetical().filter((command) => !forbidden.has(command)); +} + +function getAllowedFakerCommandsLongestFirst() { + const forbidden = new Set(FORBIDDEN_FAKER_COMMANDS); + return getKnownFakerCommandsLongestFirst().filter((command) => !forbidden.has(command)); +} + +function isForbiddenFakerCommand(command) { + return FORBIDDEN_FAKER_COMMANDS.includes(String(command || '').trim()); +} + +export { + KNOWN_FAKER_COMMANDS, + FORBIDDEN_FAKER_COMMANDS, + getKnownFakerCommandsAlphabetical, + getKnownFakerCommandsLongestFirst, + getAllowedFakerCommandsAlphabetical, + getAllowedFakerCommandsLongestFirst, + isForbiddenFakerCommand, +}; diff --git a/packages/core/js/faker/faker-helper-keyword-definitions.js b/packages/core/js/faker/faker-helper-keyword-definitions.js index d483efa9..104d8b97 100644 --- a/packages/core/js/faker/faker-helper-keyword-definitions.js +++ b/packages/core/js/faker/faker-helper-keyword-definitions.js @@ -71,6 +71,54 @@ const FAKER_HELPER_KEYWORD_DEFINITIONS = { ], examples: ['helpers.arrayElement(["A", "B", "C"])'], }, + 'helpers.objectKey': { + summary: 'Returns one random key from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable keys are used as candidate values.', + }, + ], + examples: ['helpers.objectKey({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.objectValue': { + summary: 'Returns one random value from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable values are used as candidate values.', + }, + ], + examples: ['helpers.objectValue({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.objectEntry': { + summary: 'Returns one random [key, value] entry from the supplied object.', + params: [ + { + name: 'object', + optional: false, + type: 'object', + description: 'Object whose enumerable entries are used as candidate values.', + }, + ], + examples: ['helpers.objectEntry({ red: "#f00", blue: "#00f" })'], + }, + 'helpers.enumValue': { + summary: 'Returns one random value from the supplied enum-like object.', + params: [ + { + name: 'enumObject', + optional: false, + type: 'object', + description: 'Enum-like object to sample from while ignoring numeric reverse-mapping keys.', + }, + ], + examples: ['helpers.enumValue({ Pending: "pending", Active: "active" })'], + }, 'helpers.slugify': { summary: 'Converts a string into a URL-friendly slug.', params: [ diff --git a/packages/core/package.json b/packages/core/package.json index 75949d95..360a66ea 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -27,7 +27,7 @@ "test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --config ../../jest.config.cjs --testPathPatterns packages/core/src/tests" }, "dependencies": { - "@faker-js/faker": "9.7.0", + "@faker-js/faker": "10.4.0", "chrono-node": "^2.9.1", "date-fns": "^4.4.0", "date-fns-tz": "^3.2.0", diff --git a/packages/core/src/index.js b/packages/core/src/index.js index aebe3657..69174af3 100644 --- a/packages/core/src/index.js +++ b/packages/core/src/index.js @@ -5,7 +5,7 @@ import { GenericDataTable } from '../js/data_formats/generic-data-table.js'; import { Exporter } from '../js/grid/exporter.js'; import { Importer } from '../js/grid/importer.js'; import { applyImportTrimSettingsToDataTable, normalizeImportTrimSettings } from '../js/grid/import-trim-settings.js'; -import { KNOWN_FAKER_COMMANDS } from '../js/faker/faker-commands.js'; +import { getAllowedFakerCommandsAlphabetical, isForbiddenFakerCommand } from '../js/faker/faker-commands.js'; import { PairwiseTestDataGenerator } from '../js/data_generation/n-wise/pairwiseTestDataGenerator.js'; import { CombinationAlgorithm, @@ -146,7 +146,7 @@ function hasSafeFakerArguments(ruleLine) { export function validateSafeFakerRules(textSpec) { const ruleLines = extractRuleLines(textSpec); - const knownCommandSet = new Set(KNOWN_FAKER_COMMANDS.filter((command) => command !== 'RegEx')); + const allowedCommandSet = new Set(getAllowedFakerCommandsAlphabetical().filter((command) => command !== 'RegEx')); for (const ruleLine of ruleLines) { if (!looksLikeFakerRule(ruleLine)) { @@ -158,7 +158,14 @@ export function validateSafeFakerRules(textSpec) { continue; } - if (!knownCommandSet.has(fakerCommand)) { + if (isForbiddenFakerCommand(fakerCommand)) { + return { + ok: false, + error: `Forbidden faker command in safe mode: ${fakerCommand}. This command is known but not allowed through the API.`, + }; + } + + if (!allowedCommandSet.has(fakerCommand)) { return { ok: false, error: `Unknown faker command in safe mode: ${fakerCommand}. Use --unsafe-faker-expressions to opt in.`, diff --git a/packages/core/src/tests/core-api/generateFromTextSpec.test.js b/packages/core/src/tests/core-api/generateFromTextSpec.test.js index d5733fd4..3b06a7e2 100644 --- a/packages/core/src/tests/core-api/generateFromTextSpec.test.js +++ b/packages/core/src/tests/core-api/generateFromTextSpec.test.js @@ -268,6 +268,12 @@ test('validateSafeFakerRules rejects unknown faker commands in safe mode', () => expect(result.error).toMatch(/Unknown faker command in safe mode/); }); +test('validateSafeFakerRules rejects forbidden faker commands in safe mode', () => { + const result = validateSafeFakerRules('Value\nhelpers.objectKey({"red":"#f00"})'); + expect(result.ok).toBe(false); + expect(result.error).toMatch(/Forbidden faker command in safe mode/); +}); + 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/unit/domain/domain-finance-exec.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-finance-exec.test.js index e9e071a1..628be6ac 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-finance-exec.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-finance-exec.test.js @@ -121,12 +121,6 @@ describe('finance domain keyword execution', () => { expectMeaningfulString(result); }); - test('executes finance.maskedNumber', () => { - const result = executeDomainKeyword('finance.maskedNumber', { faker, args: [] }); - console.log('finance.maskedNumber', result); - expectMeaningfulString(result); - }); - test('executes finance.pin', () => { const result = executeDomainKeyword('finance.pin', { faker, args: [] }); console.log('finance.pin', result); diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-image-exec.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-image-exec.test.js index a1b474e5..5e438c54 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-image-exec.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-image-exec.test.js @@ -15,12 +15,6 @@ describe('image domain keyword execution', () => { expectMeaningfulString(result); }); - test('executes image.avatarLegacy', () => { - const result = executeDomainKeyword('image.avatarLegacy', { faker, args: [] }); - console.log('image.avatarLegacy', result); - expectMeaningfulString(result); - }); - test('executes image.dataUri', () => { const result = executeDomainKeyword('image.dataUri', { faker, args: [] }); console.log('image.dataUri', result); @@ -50,10 +44,4 @@ describe('image domain keyword execution', () => { console.log('image.urlPicsumPhotos', result); expectMeaningfulString(result); }); - - test('executes image.urlPlaceholder', () => { - const result = executeDomainKeyword('image.urlPlaceholder', { faker, args: [] }); - console.log('image.urlPlaceholder', result); - expectMeaningfulString(result); - }); }); diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-internet-exec.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-internet-exec.test.js index d3c164c3..d26b0de2 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-internet-exec.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-internet-exec.test.js @@ -10,12 +10,6 @@ function decodeJwtPart(part) { } describe('internet domain keyword execution', () => { - test('executes internet.color', () => { - const result = executeDomainKeyword('internet.color', { faker, args: [] }); - console.log('internet.color', result); - expectMeaningfulString(result); - }); - test('executes internet.displayName', () => { const result = executeDomainKeyword('internet.displayName', { faker, args: [] }); console.log('internet.displayName', result); @@ -179,10 +173,4 @@ describe('internet domain keyword execution', () => { console.log('internet.username', result); expectMeaningfulString(result); }); - - test('executes internet.userName', () => { - const result = executeDomainKeyword('internet.userName', { faker, args: [] }); - console.log('internet.userName', result); - expectMeaningfulString(result); - }); }); diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js index 0acaad97..e153e764 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js @@ -123,6 +123,7 @@ function sampleValueForKeywordArg(keywordName, argName, typeName) { if (argName === 'precision') return 2; if (argName === 'dec') return 2; if (argName === 'multipleOf') return 1; + if (key === 'commerce.upc.prefix') return '01234'; if (argName === 'prefix') return 'pre'; if (argName === 'symbol') return '$'; if (argName === 'refDate') return Date.now(); diff --git a/packages/core/src/tests/data_generation/unit/faker/fakerCommand.test.js b/packages/core/src/tests/data_generation/unit/faker/fakerCommand.test.js index 709e0a33..5660747c 100644 --- a/packages/core/src/tests/data_generation/unit/faker/fakerCommand.test.js +++ b/packages/core/src/tests/data_generation/unit/faker/fakerCommand.test.js @@ -90,9 +90,18 @@ describe('Can parse, compile, validate and execute Faker commands', () => { const validation = command.compile(faker); expect(validation.isError).toBe(true); - expect(validation.errorMessage).toBe('Could not find Faker API Command person..fullName {person.}'); + expect(validation.errorMessage).toBe('Could not find Faker API Command person..fullName {person}'); expect(command.fakerFunctionName).toBe('person..fullName'); }); + + test('can compile commands with digits in the method name', () => { + const command = new FakerCommand('internet.ipv4'); + command.parse(); + const validation = command.compile(faker); + + expect(validation.isError).toBe(false); + expect(command.fakerFunctionName).toBe('internet.ipv4'); + }); }); describe('Can validate to identify execution errors', () => { @@ -134,5 +143,31 @@ describe('Can parse, compile, validate and execute Faker commands', () => { expect(execution.isError).toBe(false); expect(execution.data.length).toBe(4); }); + + test('can generate ipv4 data using faker', () => { + const command = new FakerCommand('internet.ipv4'); + command.parse(); + command.compile(faker); + const validation = command.validate(faker); + const execution = command.execute(faker); + + expect(validation.isError).toBe(false); + expect(execution.isError).toBe(false); + expect(execution.data).toMatch(/^(25[0-5]|2[0-4]\d|1?\d?\d)(\.(25[0-5]|2[0-4]\d|1?\d?\d)){3}$/); + }); + + test('can generate ipv6 data using faker', () => { + const command = new FakerCommand('internet.ipv6'); + command.parse(); + command.compile(faker); + const validation = command.validate(faker); + const execution = command.execute(faker); + + expect(validation.isError).toBe(false); + expect(execution.isError).toBe(false); + expect(typeof execution.data).toBe('string'); + expect(execution.data.length).toBeGreaterThan(0); + expect(execution.data).toContain(':'); + }); }); }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4a2ff2b5..0dee93fe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -46,8 +46,8 @@ importers: specifier: 10.0.1 version: 10.0.1(eslint@10.4.1(jiti@1.21.7)) '@faker-js/faker': - specifier: 9.7.0 - version: 9.7.0 + specifier: 10.4.0 + version: 10.4.0 '@playwright/test': specifier: 1.60.0 version: 1.60.0 @@ -192,8 +192,8 @@ importers: packages/core: dependencies: '@faker-js/faker': - specifier: 9.7.0 - version: 9.7.0 + specifier: 10.4.0 + version: 10.4.0 chrono-node: specifier: ^2.9.1 version: 2.9.1 @@ -1894,9 +1894,9 @@ packages: '@noble/hashes': optional: true - '@faker-js/faker@9.7.0': - resolution: {integrity: sha512-aozo5vqjCmDoXLNUJarFZx2IN/GgGaogY4TMJ6so/WLZOWpSV7fvj2dmrV6sEAnUm1O7aCrhTibjpzeDFgNqbg==} - engines: {node: '>=18.0.0', npm: '>=9.0.0'} + '@faker-js/faker@10.4.0': + resolution: {integrity: sha512-sDBWI3yLy8EcDzgobvJTWq1MJYzAkQdpjXuPukga9wXonhpMRvd1Izuo2Qgwey2OiEoRIBr35RMU9HJRoOHzpw==} + engines: {node: ^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0, npm: '>=10'} '@hapi/hoek@9.3.0': resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} @@ -11232,7 +11232,7 @@ snapshots: '@exodus/bytes@1.15.1': {} - '@faker-js/faker@9.7.0': {} + '@faker-js/faker@10.4.0': {} '@hapi/hoek@9.3.0': {} diff --git a/scripts/generate-schema-interaction-matrix.mjs b/scripts/generate-schema-interaction-matrix.mjs index dfe21660..bcc0c717 100644 --- a/scripts/generate-schema-interaction-matrix.mjs +++ b/scripts/generate-schema-interaction-matrix.mjs @@ -204,10 +204,6 @@ function determineExecutionStatus(scenario) { } if (scenario.sourceType === 'faker') { - const nonExecutableFakerCommands = new Set(['internet.ipv4', 'internet.ipv6']); - if (nonExecutableFakerCommands.has(scenario.command)) { - return 'non-executable'; - } return canGenerateCleanPreview(scenario) ? 'generated' : 'non-executable'; } From 6e2ff05b89e50ead29b6060fca9253b2743eb47f Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 17 Jun 2026 14:46:51 +0100 Subject: [PATCH 2/4] remove dead forbidden faker overrides --- .../matrix/support/schema-interaction-scenario-builder.js | 4 ---- 1 file changed, 4 deletions(-) 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 53d64f74..451dd9bf 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 @@ -100,10 +100,6 @@ const CUSTOM_SCENARIOS = [ const FAKER_PARAM_OVERRIDES = { 'helpers.arrayElement': ['["A", "B"]'], 'helpers.arrayElements': ['["A", "B", "C"]', '2'], - 'helpers.objectKey': ['{"red":"#f00","blue":"#00f"}'], - 'helpers.objectValue': ['{"red":"#f00","blue":"#00f"}'], - 'helpers.objectEntry': ['{"red":"#f00","blue":"#00f"}'], - 'helpers.enumValue': ['{"Pending":"pending","Active":"active"}'], 'date.between': ['{ from: "2020-01-01T00:00:00.000Z", to: "2020-12-31T00:00:00.000Z" }'], 'date.betweens': ['{ from: "2020-01-01T00:00:00.000Z", to: "2020-12-31T00:00:00.000Z", count: 2 }'], 'helpers.fake': ['"{{person.firstName}}"'], From 8e5e88b2b67eba838fabc5ce3c024a4f9d38c455 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 17 Jun 2026 15:50:04 +0100 Subject: [PATCH 3/4] Upgrade faker 10.4.0 command surfaces --- .../domain/000-domain-test-data.md | 9 +- .../040-test-data/domain/040-autoIncrement.md | 21 +- .../docs/040-test-data/domain/070-commerce.md | 4 - .../docs/040-test-data/domain/260-string.md | 7 +- docs/faker-10.4.0-comparison-report.md | 2 +- docs/faker-options-param-report.md | 121 + .../app-schema-interaction-matrix.test.js | 7 +- .../schema-interaction-matrix-summary.md | 4053 ++++------ .../fixtures/schema-interaction-matrix.json | 6613 ++++++++++------- .../matrix/fixtures/ui-scenario-parity.json | 148 +- ...enerator-schema-interaction-matrix.test.js | 7 +- .../schema-interaction-matrix-report.test.js | 8 + .../support/scenario-fixture-identity.js | 10 + .../schema-interaction-matrix-report.js | 36 +- .../schema-interaction-scenario-builder.js | 2 + .../matrix/ui-scenario-parity-support.test.js | 30 +- .../utils/faker-command-help-metadata.test.js | 9 + .../faker/fakerCommandRunner.js | 7 + ...ustom-autoincrement-keyword-definitions.js | 1 + ...domain-faker-string-keyword-definitions.js | 18 +- packages/core/js/domain/domain-keywords.js | 2 + .../js/faker/faker-command-help-metadata.js | 715 +- packages/core/src/index.js | 38 + .../core-api/generateFromTextSpec.test.js | 11 + .../domain-keyword-params-usage.test.js | 6 + ...n-param-invocation-coverage.test-helper.js | 1 + .../unit/domain/domain-string-exec.test.js | 13 +- .../unit/domain/domainKeywords.test.js | 5 + .../faker/hybridFakerCommandRunner.test.js | 7 + scripts/generate-faker-help.js | 40 +- 30 files changed, 5927 insertions(+), 6024 deletions(-) create mode 100644 docs/faker-options-param-report.md create mode 100644 packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js diff --git a/docs-src/docs/040-test-data/domain/000-domain-test-data.md b/docs-src/docs/040-test-data/domain/000-domain-test-data.md index 3d4b7c59..03d4b53c 100644 --- a/docs-src/docs/040-test-data/domain/000-domain-test-data.md +++ b/docs-src/docs/040-test-data/domain/000-domain-test-data.md @@ -39,11 +39,6 @@ Date date.between(from=1577836800000, to=1659312000000) ``` -```txt -CreatedAt -autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1, type="seconds") -``` - ```txt IBAN finance.iban(formatted=true, countryCode="GB") @@ -67,9 +62,9 @@ For faker helper templates and utility functions, use faker helpers: ## Domains -- [autoIncrement](/docs/test-data/domain/autoIncrement) - [airline](/docs/test-data/domain/airline) - [animal](/docs/test-data/domain/animal) +- [autoIncrement](/docs/test-data/domain/autoIncrement) - [book](/docs/test-data/domain/book) - [color](/docs/test-data/domain/color) - [commerce](/docs/test-data/domain/commerce) @@ -94,4 +89,4 @@ For faker helper templates and utility functions, use faker helpers: - [string](/docs/test-data/domain/string) - [system](/docs/test-data/domain/system) - [vehicle](/docs/test-data/domain/vehicle) -- [word](/docs/test-data/domain/word) +- [word](/docs/test-data/domain/word) \ No newline at end of file diff --git a/docs-src/docs/040-test-data/domain/040-autoIncrement.md b/docs-src/docs/040-test-data/domain/040-autoIncrement.md index e36a3c0e..f460377a 100644 --- a/docs-src/docs/040-test-data/domain/040-autoIncrement.md +++ b/docs-src/docs/040-test-data/domain/040-autoIncrement.md @@ -6,7 +6,7 @@ description: "Domain keyword reference for autoIncrement." # autoIncrement Domain -The `autoIncrement` domain provides deterministic values that move forward for each generated row. +The `autoIncrement` domain provides stateful sequence helpers for accepted generated rows. ## Methods @@ -20,7 +20,7 @@ Generates an incrementing sequence. Values only advance when a generated row is | Arg | Type | Required | Description | | --- | --- | --- | --- | | `start` | `integer` | no | Starting integer in the sequence. Defaults to 1. | -| `step` | `integer` | no | Amount added after each accepted row. Defaults to 1. | +| `step` | `integer` | no | Non-zero amount added after each accepted row. Defaults to 1. | | `prefix` | `string` | no | Optional text added before the numeric portion. | | `suffix` | `string` | no | Optional text added after the numeric portion. | | `zeropadding` | `integer` | no | Total digit width for the numeric portion. A value of 3 renders 1 as 001, while 100 stays 100. Defaults to 0. | @@ -49,14 +49,15 @@ Example return values: Generates a timestamp that starts from a fixed point and increments by the configured amount for each generated row. - Canonical: `awd.domain.autoIncrement.timestamp` +- Docs: [https://anywaydata.com/docs/test-data/domain/autoIncrement](https://anywaydata.com/docs/test-data/domain/autoIncrement) | Arg | Type | Required | Description | | --- | --- | --- | --- | -| `start` | `string\|number` | no | Starting timestamp. Defaults to the generation run start time. Valid examples include `2026-06-12T12:39:23Z`, `20/03/1969`, `12-06-2026 12:39:23`, or a Unix timestamp such as `1718195963000`. | -| `step` | `number` | no | Amount added for each generated row. Defaults to `1`. | -| `type` | `string` | no | Unit applied to `step` for each row. Supports `milliseconds`, `seconds`, `minutes`, `hours`, `days`, `weeks`, `months`, or `years`. Defaults to `seconds`. | -| `outputFormat` | `string` | no | Output format. Defaults to ISO-8601 without milliseconds. Use `iso8601` for the default behaviour or a custom pattern such as `yyyy-MM-dd HH:mm:ss`. | -| `inputFormat` | `string` | no | Optional parse pattern used only for `start` when you want to match a specific text shape such as `dd/MM/yyyy` or `dd-MM-yyyy HH:mm:ss`. | +| `start` | `string\|number` | no | Starting timestamp. Defaults to the generation run start time. Valid examples include "2026-06-12T12:39:23Z", "20/03/1969", "12-06-2026 12:39:23", or a Unix timestamp like 1718195963000. | +| `step` | `number` | no | Amount added for each generated row. Defaults to 1. | +| `type` | `string` | no | Unit applied to step for each row. Supports milliseconds, seconds, minutes, hours, days, weeks, months, or years. Defaults to seconds. | +| `outputFormat` | `string` | no | Output format. Defaults to ISO-8601 without milliseconds. Use "iso8601" for the default behaviour or a custom pattern such as "yyyy-MM-dd HH:mm:ss". | +| `inputFormat` | `string` | no | Optional parse pattern used only for the start argument when you want to match a specific text shape such as "dd/MM/yyyy" or "dd-MM-yyyy HH:mm:ss". | Examples: @@ -65,15 +66,15 @@ autoIncrement.timestamp() ``` ```txt -autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1, type="seconds") +autoIncrement.timestamp(start="20/03/1969", step=1, type="days") ``` ```txt -autoIncrement.timestamp(start="20/03/1969", step=1, type="days", outputFormat="yyyy-MM-dd") +autoIncrement.timestamp(start="2026-06-12 12:39:23", step=15, type="minutes", outputFormat="yyyy-MM-dd HH:mm:ss") ``` ```txt -autoIncrement.timestamp(start="12-06-2026 12:39:23", step=15, type="minutes", outputFormat="yyyy-MM-dd HH:mm:ss", inputFormat="dd-MM-yyyy HH:mm:ss") +autoIncrement.timestamp(start="20/03/1969", inputFormat="dd/MM/yyyy", step=1, type="days") ``` Example return values: diff --git a/docs-src/docs/040-test-data/domain/070-commerce.md b/docs-src/docs/040-test-data/domain/070-commerce.md index a39708f8..c03f03b3 100644 --- a/docs-src/docs/040-test-data/domain/070-commerce.md +++ b/docs-src/docs/040-test-data/domain/070-commerce.md @@ -187,9 +187,5 @@ Examples: commerce.upc() ``` -```txt -commerce.upc(prefix="01234") -``` - Example return values: - `036000291452` diff --git a/docs-src/docs/040-test-data/domain/260-string.md b/docs-src/docs/040-test-data/domain/260-string.md index 15dd08cd..98ec3212 100644 --- a/docs-src/docs/040-test-data/domain/260-string.md +++ b/docs-src/docs/040-test-data/domain/260-string.md @@ -327,12 +327,15 @@ Example return values: ### `string.uuid` -Returns a UUID v4 (Universally Unique Identifier). +Returns a UUID (Universally Unique Identifier). - Canonical: `awd.domain.string.uuid` - Faker docs: [https://fakerjs.dev/api/string](https://fakerjs.dev/api/string) -No parameters. +| Arg | Type | Required | Description | +| --- | --- | --- | --- | +| `version` | `4\|7` | no | The specific UUID version to use. | +| `refDate` | `string\|number\|date` | no | The timestamp to encode into the UUID. This parameter is only relevant for UUID v7. | Examples: diff --git a/docs/faker-10.4.0-comparison-report.md b/docs/faker-10.4.0-comparison-report.md index 752a1f0f..56435604 100644 --- a/docs/faker-10.4.0-comparison-report.md +++ b/docs/faker-10.4.0-comparison-report.md @@ -167,7 +167,7 @@ Recommended sequence for issue `#225`: `commerce.upc`, `helpers.enumValue`, `helpers.objectEntry`, `helpers.objectKey`, `helpers.objectValue`. 3. Regenerate faker help metadata and manually review helper-command parameter docs that the type-extraction pass does not recover cleanly. 4. Update any domain/help/method-picker surfaces that still expose removed commands. -5. Optionally fix the `ipv4` / `ipv6` parser constraint in `FakerCommand` so the curated list matches real runtime capability more closely. +5. Confirm the already-landed `ipv4` / `ipv6` parser fix remains covered so the curated list stays aligned with real runtime capability. Decisions: diff --git a/docs/faker-options-param-report.md b/docs/faker-options-param-report.md new file mode 100644 index 00000000..77468326 --- /dev/null +++ b/docs/faker-options-param-report.md @@ -0,0 +1,121 @@ +# Faker `options` Param Inventory + +Generated from `packages/core/js/faker/faker-command-help-metadata.js` in the current worktree. + +## Summary + +- `string.uuid` has already been fixed and is not included below. +- `86` other Faker commands still surface an `options` param in help metadata. +- Breakdown: + - `63` are `object`-only `options` params. + - `22` are scalar-or-object unions such as `number | { ... }`. + - `1` is `helpers.multiple`, currently surfaced as `number | object`. + +## Planning Notes + +- Best flattening candidates: + - Commands whose metadata currently says only `object`. + - Commands already flattened in domain metadata or docs, where the field names are known. +- Mixed scalar-or-object signatures need a product decision: + - keep scalar shorthand plus named params + - or document only the named-param object shape in surfaced help +- Manual helper metadata already has custom definitions for: + - `helpers.maybe` + - `helpers.multiple` + +## Object-only `options` Params + +- `airline.flightNumber` +- `airline.recordLocator` +- `airline.seat` +- `color.cmyk` +- `color.colorByCSSColorSpace` +- `color.hsl` +- `color.hwb` +- `color.lab` +- `color.lch` +- `color.rgb` +- `commerce.price` +- `commerce.upc` +- `date.anytime` +- `date.between` +- `date.betweens` +- `date.birthdate` +- `date.future` +- `date.month` +- `date.past` +- `date.recent` +- `date.soon` +- `date.weekday` +- `finance.amount` +- `finance.bic` +- `finance.bitcoinAddress` +- `finance.iban` +- `git.commitDate` +- `git.commitEntry` +- `git.commitSha` +- `helpers.maybe` +- `image.dataUri` +- `image.personPortrait` +- `image.url` +- `image.urlLoremFlickr` +- `image.urlPicsumPhotos` +- `internet.displayName` +- `internet.emoji` +- `internet.httpStatusCode` +- `internet.ipv4` +- `internet.jwt` +- `internet.mac` +- `internet.password` +- `internet.url` +- `internet.username` +- `location.cardinalDirection` +- `location.direction` +- `location.latitude` +- `location.longitude` +- `location.nearbyGPSCoordinate` +- `location.ordinalDirection` +- `location.state` +- `number.binary` +- `number.octal` +- `person.fullName` +- `person.sexType` +- `phone.number` +- `string.binary` +- `string.hexadecimal` +- `string.octal` +- `string.ulid` +- `system.cron` +- `system.fileName` +- `system.networkInterface` + +## Scalar-or-object `options` Params + +- `commerce.isbn` -> `10 | 13 | { variant?: 10 | 13; separator?: string; }` +- `datatype.boolean` -> `number | { probability?: number; }` +- `location.countryCode` -> `'alpha-2' | 'alpha-3' | 'numeric' | { variant?: ... }` +- `location.streetAddress` -> `boolean | { useFullAddress?: boolean; }` +- `lorem.word` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `number.bigInt` -> `bigint | number | string | boolean | { min?: ...; max?: ...; }` +- `number.float` -> `number | { min?: number; max?: number; fractionDigits?: number; multipleOf?: ... }` +- `number.hex` -> `number | { min?: number; max?: number; }` +- `number.int` -> `number | { min?: number; max?: number; multipleOf?: number; }` +- `number.romanNumeral` -> `number | { min?: number; max?: number; }` +- `string.alpha` -> `number | { length?: number | { min: number; max: number; }; casing?: ... }` +- `string.alphanumeric` -> `number | { length?: number | { min: number; max: number; }; casing?: ... }` +- `string.numeric` -> `number | { length?: number | { min: number; max: number; }; allowLeadingZeros?: ... }` +- `word.adjective` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.adverb` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.conjunction` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.interjection` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.noun` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.preposition` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.sample` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.verb` -> `number | { length?: number | { min: number; max: number; }; strategy?: ... }` +- `word.words` -> `number | { count?: number | { min: number; max: number; }; }` + +## Special Case + +- `helpers.multiple` -> `number | object` + +This one likely needs a bespoke surfaced shape similar to the existing custom helper metadata approach. 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 e55d9fc5..0e654aa5 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 @@ -20,6 +20,7 @@ import { readFileSync } from 'node:fs'; import { join } from 'node:path'; import { createAppTestDataInteractionHarness } from './support/app-test-data-interaction-harness.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; +import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; const fixturePath = join( process.cwd(), @@ -33,9 +34,9 @@ const SMOKE_SCENARIO_IDS = [ 'custom-enum-pairwise', ]; const allScenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; -const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => - allScenarios.find((scenario) => scenario.id === scenarioId) -).filter(Boolean); +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'); } 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 index c577f72c..eaae13d5 100644 --- 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 @@ -31,7 +31,7 @@ Non-executable scenario count: **11** | --- | ---: | | `arg` | 222 | | `base` | 256 | -| `custom` | 6 | +| `custom` | 3 | | `empty` | 2 | | `example` | 33 | | `pair` | 125 | @@ -321,96 +321,66 @@ Non-executable scenario count: **11** #### `custom-enum-base` - Command(s): `enum(active,inactive,pending)` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"pending" + ``` #### `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 -"Status","Priority" -"inactive","medium" -"inactive","low" -``` -- Pairwise preview data: -```csv -"Status","Priority" -"active","high" -"active","medium" -"active","low" -"inactive","high" -"inactive","medium" -"inactive","low" -"pending","high" -"pending","medium" -"pending","low" + ``` #### `custom-literal-base` - Command(s): `literal("Pending")` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"Pending" + ``` #### `custom-literal-empty` - Command(s): `literal("")` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"" + ``` #### `custom-regex-base` - Command(s): `regex("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Code" -"VC23" + ``` #### `custom-regex-empty` - Command(s): `regex("")` -- UI preview parity: `exact` - Preview data: ```csv -"Code" -"" + ``` #### `faker-helpers-arrayElement-base` - Command(s): `helpers.arrayElement(["A", "B"])` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"B" + ``` #### `faker-helpers-arrayElement-example-1` - Command(s): `helpers.arrayElement(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"A" + ``` #### `faker-helpers-arrayElement-arg-array` @@ -418,28 +388,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.arrayElement(["A", "B"])` - Preview data: ```csv -"Value" -"B" + ``` #### `faker-helpers-arrayElements-base` - Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-arrayElements-example-1` - Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-arrayElements-arg-array` @@ -447,8 +412,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.arrayElements(["A", "B"])` - Preview data: ```csv -"Value" -"[""B""]" + ``` #### `faker-helpers-arrayElements-arg-count` @@ -456,8 +420,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.arrayElements(["A", "B"], 2)` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-arrayElements-pair-array-count` @@ -465,28 +428,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.arrayElements(["A", "B"], 2)` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-fake-base` - Command(s): `helpers.fake("{{person.firstName}}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"Douglas" + ``` #### `faker-helpers-fake-example-1` - Command(s): `helpers.fake("Hi, my name is {{person.firstName}} {{person.lastName}}!")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"Hi, my name is Rhonda Wyman!" + ``` #### `faker-helpers-fake-arg-pattern` @@ -494,28 +452,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.fake("[A-Z]{2}")` - Preview data: ```csv -"Value" -"[A-Z]{2}" + ``` #### `faker-helpers-fromRegExp-base` - Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"BJ" + ``` #### `faker-helpers-fromRegExp-example-1` - Command(s): `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"PU71" + ``` #### `faker-helpers-fromRegExp-arg-pattern` @@ -523,8 +476,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.fromRegExp("[A-Z]{2}")` - Preview data: ```csv -"Value" -"XA" + ``` #### `faker-helpers-maybe-base` @@ -580,21 +532,17 @@ Non-executable scenario count: **11** #### `faker-helpers-mustache-base` - Command(s): `helpers.mustache("{{name}}", { name: "Ada" })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Ada" + ``` #### `faker-helpers-mustache-example-1` - Command(s): `helpers.mustache("Hello {{name}}", { name: "Ada" })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Hello Ada" + ``` #### `faker-helpers-mustache-arg-text` @@ -602,8 +550,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.mustache("{{name}}")` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-mustache-arg-data` @@ -611,8 +558,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.mustache("{{name}}", {})` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-mustache-pair-text-data` @@ -620,28 +566,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.mustache("{{name}}", {})` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-rangeToNumber-base` - Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"1" + ``` #### `faker-helpers-rangeToNumber-example-1` - Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"2" + ``` #### `faker-helpers-rangeToNumber-arg-numberOrRange` @@ -649,8 +590,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.rangeToNumber(2)` - Preview data: ```csv -"Value" -"2" + ``` #### `faker-helpers-replaceCreditCardSymbols-base` @@ -658,18 +598,15 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceCreditCardSymbols()` - Preview data: ```csv -"Value" -"6453-3460-3761-5138-2959" + ``` #### `faker-helpers-replaceCreditCardSymbols-example-1` - Command(s): `helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"1234-5-4775-8" + ``` #### `faker-helpers-replaceCreditCardSymbols-arg-string` @@ -677,8 +614,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceCreditCardSymbols-arg-symbol` @@ -686,8 +622,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceCreditCardSymbols-pair-string-symbol` @@ -695,8 +630,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceSymbols-base` @@ -704,18 +638,15 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceSymbols()` - Preview data: ```csv -"Value" -"" + ``` #### `faker-helpers-replaceSymbols-example-1` - Command(s): `helpers.replaceSymbols("##??-##")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"47UI-39" + ``` #### `faker-helpers-replaceSymbols-arg-string` @@ -723,28 +654,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.replaceSymbols("helpers-replaceSymbols-string")` - Preview data: ```csv -"Value" -"helpers-replaceSymbols-string" + ``` #### `faker-helpers-shuffle-base` - Command(s): `helpers.shuffle(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A"",""C""]" + ``` #### `faker-helpers-shuffle-example-1` - Command(s): `helpers.shuffle(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A"",""C""]" + ``` #### `faker-helpers-shuffle-arg-array` @@ -752,8 +678,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.shuffle(["A", "B"])` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-slugify-base` @@ -761,18 +686,15 @@ Non-executable scenario count: **11** - Command(s): `helpers.slugify()` - Preview data: ```csv -"Value" -"" + ``` #### `faker-helpers-slugify-example-1` - Command(s): `helpers.slugify("Hello World 2026")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Hello-World-2026" + ``` #### `faker-helpers-slugify-arg-string` @@ -780,28 +702,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.slugify("helpers-slugify-string")` - Preview data: ```csv -"Value" -"helpers-slugify-string" + ``` #### `faker-helpers-uniqueArray-base` - Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-uniqueArray-example-1` - Command(s): `helpers.uniqueArray(["red", "green", "blue"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""blue"",""green""]" + ``` #### `faker-helpers-uniqueArray-arg-source` @@ -809,8 +726,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.uniqueArray(["A", "B"])` - Preview data: ```csv -"Value" -"[]" + ``` #### `faker-helpers-uniqueArray-arg-length` @@ -818,8 +734,7 @@ Non-executable scenario count: **11** - Command(s): `helpers.uniqueArray(["A", "B"], 4)` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-uniqueArray-pair-source-length` @@ -827,28 +742,23 @@ Non-executable scenario count: **11** - Command(s): `helpers.uniqueArray(["A", "B"], 4)` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-weightedArrayElement-base` - Command(s): `helpers.weightedArrayElement([{ "weight": 1, "value": "A" }, { "weight": 2, "value": "B" }])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"A" + ``` #### `faker-helpers-weightedArrayElement-example-1` - Command(s): `helpers.weightedArrayElement([{ weight: 5, value: "sunny" }, { weight: 1, value: "rainy" }])` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"sunny" + ``` #### `faker-helpers-weightedArrayElement-arg-array` @@ -861,8 +771,7 @@ Non-executable scenario count: **11** - Command(s): `airline.aircraftType()` - Preview data: ```csv -"Value" -"widebody" + ``` #### `domain-airline-flightNumber-base` @@ -870,8 +779,7 @@ Non-executable scenario count: **11** - Command(s): `airline.flightNumber()` - Preview data: ```csv -"Value" -"54" + ``` #### `domain-airline-iataCode-base` @@ -879,8 +787,7 @@ Non-executable scenario count: **11** - Command(s): `airline.iataCode()` - Preview data: ```csv -"Value" -"VS" + ``` #### `domain-airline-name-base` @@ -888,8 +795,7 @@ Non-executable scenario count: **11** - Command(s): `airline.name()` - Preview data: ```csv -"Value" -"Juneyao Airlines" + ``` #### `domain-airline-recordLocator-base` @@ -897,8 +803,7 @@ Non-executable scenario count: **11** - Command(s): `airline.recordLocator()` - Preview data: ```csv -"Value" -"QYNEDR" + ``` #### `domain-airline-seat-base` @@ -906,28 +811,23 @@ Non-executable scenario count: **11** - Command(s): `airline.seat()` - Preview data: ```csv -"Value" -"29B" + ``` #### `domain-airline-seat-example-1` - Command(s): `airline.seat()` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"32C" + ``` #### `domain-airline-seat-example-2` - Command(s): `airline.seat(aircraftType="widebody")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"55J" + ``` #### `domain-airline-seat-arg-aircraftType` @@ -935,8 +835,7 @@ Non-executable scenario count: **11** - Command(s): `airline.seat(aircraftType="widebody")` - Preview data: ```csv -"Value" -"3A" + ``` #### `domain-airplane-iataTypeCode-base` @@ -944,8 +843,7 @@ Non-executable scenario count: **11** - Command(s): `airplane.iataTypeCode()` - Preview data: ```csv -"Value" -"345" + ``` #### `domain-airplane-name-base` @@ -953,8 +851,7 @@ Non-executable scenario count: **11** - Command(s): `airplane.name()` - Preview data: ```csv -"Value" -"Boeing 747-400" + ``` #### `domain-airport-iataCode-base` @@ -962,8 +859,7 @@ Non-executable scenario count: **11** - Command(s): `airport.iataCode()` - Preview data: ```csv -"Value" -"MEX" + ``` #### `domain-airport-name-base` @@ -971,8 +867,7 @@ Non-executable scenario count: **11** - Command(s): `airport.name()` - Preview data: ```csv -"Value" -"Hobart International Airport" + ``` #### `domain-animal-bear-base` @@ -980,8 +875,7 @@ Non-executable scenario count: **11** - Command(s): `animal.bear()` - Preview data: ```csv -"Value" -"American black bear" + ``` #### `domain-animal-bird-base` @@ -989,8 +883,7 @@ Non-executable scenario count: **11** - Command(s): `animal.bird()` - Preview data: ```csv -"Value" -"Red-footed Booby" + ``` #### `domain-animal-cat-base` @@ -998,8 +891,7 @@ Non-executable scenario count: **11** - Command(s): `animal.cat()` - Preview data: ```csv -"Value" -"Ojos Azules" + ``` #### `domain-animal-cetacean-base` @@ -1007,8 +899,7 @@ Non-executable scenario count: **11** - Command(s): `animal.cetacean()` - Preview data: ```csv -"Value" -"Blue Whale" + ``` #### `domain-animal-cow-base` @@ -1016,8 +907,7 @@ Non-executable scenario count: **11** - Command(s): `animal.cow()` - Preview data: ```csv -"Value" -"Mandalong Special" + ``` #### `domain-animal-crocodilia-base` @@ -1025,8 +915,7 @@ Non-executable scenario count: **11** - Command(s): `animal.crocodilia()` - Preview data: ```csv -"Value" -"Cuban Crocodile" + ``` #### `domain-animal-dog-base` @@ -1034,8 +923,7 @@ Non-executable scenario count: **11** - Command(s): `animal.dog()` - Preview data: ```csv -"Value" -"Yakutian Laika" + ``` #### `domain-animal-fish-base` @@ -1043,8 +931,7 @@ Non-executable scenario count: **11** - Command(s): `animal.fish()` - Preview data: ```csv -"Value" -"Jumbo flying squid" + ``` #### `domain-animal-horse-base` @@ -1052,8 +939,7 @@ Non-executable scenario count: **11** - Command(s): `animal.horse()` - Preview data: ```csv -"Value" -"Trait Du Nord" + ``` #### `domain-animal-insect-base` @@ -1061,8 +947,7 @@ Non-executable scenario count: **11** - Command(s): `animal.insect()` - Preview data: ```csv -"Value" -"False honey ant" + ``` #### `domain-animal-lion-base` @@ -1070,8 +955,7 @@ Non-executable scenario count: **11** - Command(s): `animal.lion()` - Preview data: ```csv -"Value" -"Cape lion" + ``` #### `domain-animal-petName-base` @@ -1079,8 +963,7 @@ Non-executable scenario count: **11** - Command(s): `animal.petName()` - Preview data: ```csv -"Value" -"Bandit" + ``` #### `domain-animal-rabbit-base` @@ -1088,8 +971,7 @@ Non-executable scenario count: **11** - Command(s): `animal.rabbit()` - Preview data: ```csv -"Value" -"Silver" + ``` #### `domain-animal-rodent-base` @@ -1097,8 +979,7 @@ Non-executable scenario count: **11** - Command(s): `animal.rodent()` - Preview data: ```csv -"Value" -"Bonetto's tuco-tuco" + ``` #### `domain-animal-snake-base` @@ -1106,8 +987,7 @@ Non-executable scenario count: **11** - Command(s): `animal.snake()` - Preview data: ```csv -"Value" -"White-lipped keelback" + ``` #### `domain-animal-type-base` @@ -1115,8 +995,7 @@ Non-executable scenario count: **11** - Command(s): `animal.type()` - Preview data: ```csv -"Value" -"elephant" + ``` #### `domain-autoIncrement-sequence-base` @@ -1124,8 +1003,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(1, 5, "filename", ".txt", 3)` - Preview data: ```csv -"Value" -"filename001.txt" + ``` #### `domain-autoIncrement-sequence-example-1` @@ -1133,8 +1011,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence()` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-autoIncrement-sequence-example-2` @@ -1142,8 +1019,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(start=10, step=5)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-example-3` @@ -1151,8 +1027,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(start=1, step=5, prefix="filename", suffix=".txt", zeropadding=3)` - Preview data: ```csv -"Value" -"filename001.txt" + ``` #### `domain-autoIncrement-sequence-arg-start` @@ -1160,8 +1035,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(start=10)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-arg-step` @@ -1169,8 +1043,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(step=5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-autoIncrement-sequence-arg-prefix` @@ -1178,8 +1051,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(prefix="filename")` - Preview data: ```csv -"Value" -"filename1" + ``` #### `domain-autoIncrement-sequence-arg-suffix` @@ -1187,8 +1059,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(suffix=".txt")` - Preview data: ```csv -"Value" -"1.txt" + ``` #### `domain-autoIncrement-sequence-arg-zeropadding` @@ -1196,8 +1067,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(zeropadding=3)` - Preview data: ```csv -"Value" -"001" + ``` #### `domain-autoIncrement-sequence-pair-start-step` @@ -1205,8 +1075,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(start=10, step=5)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-pair-step-prefix` @@ -1214,8 +1083,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(step=5, prefix="filename")` - Preview data: ```csv -"Value" -"filename1" + ``` #### `domain-autoIncrement-sequence-pair-prefix-suffix` @@ -1223,8 +1091,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(prefix="filename", suffix=".txt")` - Preview data: ```csv -"Value" -"filename1.txt" + ``` #### `domain-autoIncrement-sequence-pair-suffix-zeropadding` @@ -1232,8 +1099,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.sequence(suffix=".txt", zeropadding=3)` - Preview data: ```csv -"Value" -"001.txt" + ``` #### `domain-autoIncrement-timestamp-base` @@ -1241,8 +1107,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp()` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-example-1` @@ -1250,8 +1115,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp()` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-example-2` @@ -1259,8 +1123,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` - Preview data: ```csv -"Value" -"1969-03-20T12:00:00Z" + ``` #### `domain-autoIncrement-timestamp-example-3` @@ -1268,8 +1131,7 @@ Non-executable scenario count: **11** - 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 -"Value" -"2026-06-12 11:39:23" + ``` #### `domain-autoIncrement-timestamp-arg-start` @@ -1277,8 +1139,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` - Preview data: ```csv -"Value" -"2026-06-12T12:39:23Z" + ``` #### `domain-autoIncrement-timestamp-arg-step` @@ -1286,8 +1147,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(step=1)` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-type` @@ -1295,8 +1155,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(type="seconds")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-outputFormat` @@ -1304,8 +1163,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-inputFormat` @@ -1313,8 +1171,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-start-step` @@ -1322,8 +1179,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` - Preview data: ```csv -"Value" -"2026-06-12T12:39:23Z" + ``` #### `domain-autoIncrement-timestamp-pair-step-type` @@ -1331,8 +1187,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(step=1, type="seconds")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-type-outputFormat` @@ -1340,8 +1195,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` @@ -1349,8 +1203,7 @@ Non-executable scenario count: **11** - Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-book-author-base` @@ -1358,8 +1211,7 @@ Non-executable scenario count: **11** - Command(s): `book.author()` - Preview data: ```csv -"Value" -"Hermann Broch" + ``` #### `domain-book-format-base` @@ -1367,8 +1219,7 @@ Non-executable scenario count: **11** - Command(s): `book.format()` - Preview data: ```csv -"Value" -"Ebook" + ``` #### `domain-book-genre-base` @@ -1376,8 +1227,7 @@ Non-executable scenario count: **11** - Command(s): `book.genre()` - Preview data: ```csv -"Value" -"Philosophy" + ``` #### `domain-book-publisher-base` @@ -1385,8 +1235,7 @@ Non-executable scenario count: **11** - Command(s): `book.publisher()` - Preview data: ```csv -"Value" -"Hodder & Stoughton" + ``` #### `domain-book-series-base` @@ -1394,8 +1243,7 @@ Non-executable scenario count: **11** - Command(s): `book.series()` - Preview data: ```csv -"Value" -"Colonel Race" + ``` #### `domain-book-title-base` @@ -1403,8 +1251,7 @@ Non-executable scenario count: **11** - Command(s): `book.title()` - Preview data: ```csv -"Value" -"The Sound and the Fury" + ``` #### `domain-chemicalElement-atomicNumber-base` @@ -1412,8 +1259,7 @@ Non-executable scenario count: **11** - Command(s): `chemicalElement.atomicNumber()` - Preview data: ```csv -"Value" -"9" + ``` #### `domain-chemicalElement-name-base` @@ -1421,8 +1267,7 @@ Non-executable scenario count: **11** - Command(s): `chemicalElement.name()` - Preview data: ```csv -"Value" -"Meitnerium" + ``` #### `domain-chemicalElement-symbol-base` @@ -1430,8 +1275,7 @@ Non-executable scenario count: **11** - Command(s): `chemicalElement.symbol()` - Preview data: ```csv -"Value" -"Lv" + ``` #### `domain-color-cssSupportedFunction-base` @@ -1439,8 +1283,7 @@ Non-executable scenario count: **11** - Command(s): `color.cssSupportedFunction()` - Preview data: ```csv -"Value" -"hwb" + ``` #### `domain-color-cssSupportedSpace-base` @@ -1448,8 +1291,7 @@ Non-executable scenario count: **11** - Command(s): `color.cssSupportedSpace()` - Preview data: ```csv -"Value" -"sRGB" + ``` #### `domain-color-human-base` @@ -1457,8 +1299,7 @@ Non-executable scenario count: **11** - Command(s): `color.human()` - Preview data: ```csv -"Value" -"turquoise" + ``` #### `domain-color-rgb-base` @@ -1466,8 +1307,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb()` - Preview data: ```csv -"Value" -"#bce97e" + ``` #### `domain-color-rgb-arg-casing` @@ -1475,8 +1315,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(casing="upper")` - Preview data: ```csv -"Value" -"#BCBFC4" + ``` #### `domain-color-rgb-arg-format` @@ -1484,8 +1323,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(format="hex")` - Preview data: ```csv -"Value" -"#9be19f" + ``` #### `domain-color-rgb-arg-includeAlpha` @@ -1493,8 +1331,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(includeAlpha=true)` - Preview data: ```csv -"Value" -"#71d66e8f" + ``` #### `domain-color-rgb-arg-prefix` @@ -1502,8 +1339,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(prefix="#")` - Preview data: ```csv -"Value" -"#dceba6" + ``` #### `domain-color-rgb-pair-casing-format` @@ -1511,8 +1347,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(casing="upper", format="hex")` - Preview data: ```csv -"Value" -"#F948CC" + ``` #### `domain-color-rgb-pair-format-includeAlpha` @@ -1520,8 +1355,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(format="hex", includeAlpha=true)` - Preview data: ```csv -"Value" -"#bd037ce9" + ``` #### `domain-color-rgb-pair-includeAlpha-prefix` @@ -1529,8 +1363,7 @@ Non-executable scenario count: **11** - Command(s): `color.rgb(includeAlpha=true, prefix="#")` - Preview data: ```csv -"Value" -"#d95bfefc" + ``` #### `domain-color-space-base` @@ -1538,8 +1371,7 @@ Non-executable scenario count: **11** - Command(s): `color.space()` - Preview data: ```csv -"Value" -"CIEUVW" + ``` #### `domain-commerce-department-base` @@ -1547,8 +1379,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.department()` - Preview data: ```csv -"Value" -"Home" + ``` #### `domain-commerce-isbn-base` @@ -1556,8 +1387,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.isbn()` - Preview data: ```csv -"Value" -"978-0-276-38715-9" + ``` #### `domain-commerce-isbn-arg-separator` @@ -1565,8 +1395,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.isbn(separator="-")` - Preview data: ```csv -"Value" -"978-1-01-952776-4" + ``` #### `domain-commerce-isbn-arg-variant` @@ -1574,8 +1403,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.isbn(variant="13")` - Preview data: ```csv -"Value" -"978-0-9939513-5-0" + ``` #### `domain-commerce-isbn-pair-separator-variant` @@ -1583,8 +1411,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.isbn(separator="-", variant="13")` - Preview data: ```csv -"Value" -"978-1-63392-157-3" + ``` #### `domain-commerce-price-base` @@ -1592,18 +1419,15 @@ Non-executable scenario count: **11** - Command(s): `commerce.price()` - Preview data: ```csv -"Value" -"557.85" + ``` #### `domain-commerce-price-example-1` - Command(s): `commerce.price(dec=2, max=10, min=1, symbol="$")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"$3.69" + ``` #### `domain-commerce-price-arg-dec` @@ -1611,8 +1435,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(dec=2)` - Preview data: ```csv -"Value" -"489.39" + ``` #### `domain-commerce-price-arg-max` @@ -1620,8 +1443,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(max=100)` - Preview data: ```csv -"Value" -"11.69" + ``` #### `domain-commerce-price-arg-min` @@ -1629,8 +1451,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(min=1)` - Preview data: ```csv -"Value" -"624.89" + ``` #### `domain-commerce-price-arg-symbol` @@ -1638,8 +1459,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(symbol="$")` - Preview data: ```csv -"Value" -"$408.79" + ``` #### `domain-commerce-price-pair-dec-max` @@ -1647,8 +1467,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(dec=2, max=100)` - Preview data: ```csv -"Value" -"80.09" + ``` #### `domain-commerce-price-pair-max-min` @@ -1656,8 +1475,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(max=100, min=1)` - Preview data: ```csv -"Value" -"65.60" + ``` #### `domain-commerce-price-pair-min-symbol` @@ -1665,8 +1483,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.price(min=1, symbol="$")` - Preview data: ```csv -"Value" -"$80.15" + ``` #### `domain-commerce-product-base` @@ -1674,8 +1491,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.product()` - Preview data: ```csv -"Value" -"Salad" + ``` #### `domain-commerce-productAdjective-base` @@ -1683,8 +1499,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.productAdjective()` - Preview data: ```csv -"Value" -"Rustic" + ``` #### `domain-commerce-productDescription-base` @@ -1692,8 +1507,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.productDescription()` - Preview data: ```csv -"Value" -"Discover the inconsequential new Gloves with an exciting mix of Cotton ingredients" + ``` #### `domain-commerce-productMaterial-base` @@ -1701,8 +1515,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.productMaterial()` - Preview data: ```csv -"Value" -"Silk" + ``` #### `domain-commerce-productName-base` @@ -1710,8 +1523,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.productName()` - Preview data: ```csv -"Value" -"Practical Aluminum Shirt" + ``` #### `domain-commerce-upc-base` @@ -1719,8 +1531,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.upc()` - Preview data: ```csv -"Value" -"930326813865" + ``` #### `domain-commerce-upc-arg-prefix` @@ -1728,8 +1539,7 @@ Non-executable scenario count: **11** - Command(s): `commerce.upc(prefix="01234")` - Preview data: ```csv -"Value" -"012345065699" + ``` #### `domain-company-buzzAdjective-base` @@ -1737,8 +1547,7 @@ Non-executable scenario count: **11** - Command(s): `company.buzzAdjective()` - Preview data: ```csv -"Value" -"B2B" + ``` #### `domain-company-buzzNoun-base` @@ -1746,8 +1555,7 @@ Non-executable scenario count: **11** - Command(s): `company.buzzNoun()` - Preview data: ```csv -"Value" -"schemas" + ``` #### `domain-company-buzzPhrase-base` @@ -1755,8 +1563,7 @@ Non-executable scenario count: **11** - Command(s): `company.buzzPhrase()` - Preview data: ```csv -"Value" -"engineer scalable smart contracts" + ``` #### `domain-company-buzzVerb-base` @@ -1764,8 +1571,7 @@ Non-executable scenario count: **11** - Command(s): `company.buzzVerb()` - Preview data: ```csv -"Value" -"expedite" + ``` #### `domain-company-catchPhrase-base` @@ -1773,8 +1579,7 @@ Non-executable scenario count: **11** - Command(s): `company.catchPhrase()` - Preview data: ```csv -"Value" -"Synchronised fault-tolerant service-desk" + ``` #### `domain-company-catchPhraseAdjective-base` @@ -1782,8 +1587,7 @@ Non-executable scenario count: **11** - Command(s): `company.catchPhraseAdjective()` - Preview data: ```csv -"Value" -"Diverse" + ``` #### `domain-company-catchPhraseDescriptor-base` @@ -1791,8 +1595,7 @@ Non-executable scenario count: **11** - Command(s): `company.catchPhraseDescriptor()` - Preview data: ```csv -"Value" -"zero trust" + ``` #### `domain-company-catchPhraseNoun-base` @@ -1800,8 +1603,7 @@ Non-executable scenario count: **11** - Command(s): `company.catchPhraseNoun()` - Preview data: ```csv -"Value" -"hardware" + ``` #### `domain-company-name-base` @@ -1809,8 +1611,7 @@ Non-executable scenario count: **11** - Command(s): `company.name()` - Preview data: ```csv -"Value" -"Roob, Schmidt and Jacobi-Lind" + ``` #### `domain-database-collation-base` @@ -1818,8 +1619,7 @@ Non-executable scenario count: **11** - Command(s): `database.collation()` - Preview data: ```csv -"Value" -"utf8_bin" + ``` #### `domain-database-column-base` @@ -1827,8 +1627,7 @@ Non-executable scenario count: **11** - Command(s): `database.column()` - Preview data: ```csv -"Value" -"updatedAt" + ``` #### `domain-database-engine-base` @@ -1836,8 +1635,7 @@ Non-executable scenario count: **11** - Command(s): `database.engine()` - Preview data: ```csv -"Value" -"MyISAM" + ``` #### `domain-database-mongodbObjectId-base` @@ -1845,8 +1643,7 @@ Non-executable scenario count: **11** - Command(s): `database.mongodbObjectId()` - Preview data: ```csv -"Value" -"d62d29cffe9912ddfddddb58" + ``` #### `domain-database-type-base` @@ -1854,8 +1651,7 @@ Non-executable scenario count: **11** - Command(s): `database.type()` - Preview data: ```csv -"Value" -"point" + ``` #### `domain-datatype-boolean-base` @@ -1863,8 +1659,7 @@ Non-executable scenario count: **11** - Command(s): `datatype.boolean()` - Preview data: ```csv -"Value" -"false" + ``` #### `domain-datatype-boolean-arg-probability` @@ -1872,8 +1667,7 @@ Non-executable scenario count: **11** - Command(s): `datatype.boolean(probability=2)` - Preview data: ```csv -"Value" -"true" + ``` #### `domain-datatype-enum-base` @@ -1881,8 +1675,7 @@ Non-executable scenario count: **11** - Command(s): `datatype.enum("active", "inactive", "pending")` - Preview data: ```csv -"Value" -"active" + ``` #### `domain-datatype-enum-arg-values` @@ -1890,8 +1683,7 @@ Non-executable scenario count: **11** - Command(s): `datatype.enum(values="datatype-enum-values")` - Preview data: ```csv -"Value" -"values=datatype-enum-values" + ``` #### `domain-date-anytime-base` @@ -1899,8 +1691,7 @@ Non-executable scenario count: **11** - Command(s): `date.anytime()` - Preview data: ```csv -"Value" -"2026-06-26T22:01:03.744Z" + ``` #### `domain-date-anytime-arg-refDate` @@ -1908,8 +1699,7 @@ Non-executable scenario count: **11** - Command(s): `date.anytime(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-09-21T21:46:38.236Z" + ``` #### `domain-date-between-base` @@ -1917,8 +1707,7 @@ Non-executable scenario count: **11** - Command(s): `date.between(1577836800000, 1609372800000)` - Preview data: ```csv -"Value" -"2020-07-25T19:48:55.233Z" + ``` #### `domain-date-between-arg-from` @@ -1926,8 +1715,7 @@ Non-executable scenario count: **11** - Command(s): `date.between(from=1577836800000, to=1609372800000)` - Preview data: ```csv -"Value" -"2020-08-02T19:17:11.407Z" + ``` #### `domain-date-between-arg-to` @@ -1935,8 +1723,7 @@ Non-executable scenario count: **11** - Command(s): `date.between(to=1609372800000, from=1577836800000)` - Preview data: ```csv -"Value" -"2020-07-28T01:45:25.825Z" + ``` #### `domain-date-between-pair-from-to` @@ -1944,8 +1731,7 @@ Non-executable scenario count: **11** - Command(s): `date.between(from=1577836800000, to=1609372800000)` - Preview data: ```csv -"Value" -"2020-04-01T08:35:52.015Z" + ``` #### `domain-date-birthdate-base` @@ -1953,18 +1739,15 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate()` - Preview data: ```csv -"Value" -"1957-08-21T21:56:15.746Z" + ``` #### `domain-date-birthdate-example-1` - Command(s): `date.birthdate(refDate=20000, max=69, min=16, mode="age")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"1920-10-04T17:22:24.125Z" + ``` #### `domain-date-birthdate-arg-refDate` @@ -1972,8 +1755,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(refDate=1577836800000, min=18, max=65, mode="age")` - Preview data: ```csv -"Value" -"1986-12-14T21:23:27.338Z" + ``` #### `domain-date-birthdate-arg-max` @@ -1981,8 +1763,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1979-07-10T02:03:04.191Z" + ``` #### `domain-date-birthdate-arg-min` @@ -1990,8 +1771,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(min=18, max=65, mode="age")` - Preview data: ```csv -"Value" -"1970-09-04T17:26:31.684Z" + ``` #### `domain-date-birthdate-arg-mode` @@ -1999,8 +1779,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(mode="age", min=18, max=65)` - Preview data: ```csv -"Value" -"1989-12-17T04:53:43.105Z" + ``` #### `domain-date-birthdate-pair-refDate-max` @@ -2008,8 +1787,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(refDate=1577836800000, max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1973-08-07T06:26:36.179Z" + ``` #### `domain-date-birthdate-pair-max-min` @@ -2017,8 +1795,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1979-10-28T20:25:33.935Z" + ``` #### `domain-date-birthdate-pair-min-mode` @@ -2026,8 +1803,7 @@ Non-executable scenario count: **11** - Command(s): `date.birthdate(min=18, mode="age", max=65)` - Preview data: ```csv -"Value" -"1970-04-22T23:09:05.686Z" + ``` #### `domain-date-future-base` @@ -2035,8 +1811,7 @@ Non-executable scenario count: **11** - Command(s): `date.future()` - Preview data: ```csv -"Value" -"2026-10-02T08:25:12.488Z" + ``` #### `domain-date-future-arg-refDate` @@ -2044,8 +1819,7 @@ Non-executable scenario count: **11** - Command(s): `date.future(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-10T14:38:46.292Z" + ``` #### `domain-date-future-arg-years` @@ -2053,8 +1827,7 @@ Non-executable scenario count: **11** - Command(s): `date.future(years=2)` - Preview data: ```csv -"Value" -"2027-12-15T03:08:22.793Z" + ``` #### `domain-date-future-pair-refDate-years` @@ -2062,8 +1835,7 @@ Non-executable scenario count: **11** - Command(s): `date.future(refDate=1577836800000, years=2)` - Preview data: ```csv -"Value" -"2021-08-02T04:49:51.903Z" + ``` #### `domain-date-month-base` @@ -2071,8 +1843,7 @@ Non-executable scenario count: **11** - Command(s): `date.month()` - Preview data: ```csv -"Value" -"August" + ``` #### `domain-date-month-arg-abbreviated` @@ -2080,8 +1851,7 @@ Non-executable scenario count: **11** - Command(s): `date.month(abbreviated=true)` - Preview data: ```csv -"Value" -"Jun" + ``` #### `domain-date-month-arg-context` @@ -2089,8 +1859,7 @@ Non-executable scenario count: **11** - Command(s): `date.month(context=true)` - Preview data: ```csv -"Value" -"August" + ``` #### `domain-date-month-pair-abbreviated-context` @@ -2098,8 +1867,7 @@ Non-executable scenario count: **11** - Command(s): `date.month(abbreviated=true, context=true)` - Preview data: ```csv -"Value" -"Jul" + ``` #### `domain-date-past-base` @@ -2107,8 +1875,7 @@ Non-executable scenario count: **11** - Command(s): `date.past()` - Preview data: ```csv -"Value" -"2026-01-15T06:04:10.661Z" + ``` #### `domain-date-past-arg-refDate` @@ -2116,8 +1883,7 @@ Non-executable scenario count: **11** - Command(s): `date.past(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-08-27T00:03:49.125Z" + ``` #### `domain-date-past-arg-years` @@ -2125,8 +1891,7 @@ Non-executable scenario count: **11** - Command(s): `date.past(years=2)` - Preview data: ```csv -"Value" -"2025-06-19T19:04:04.055Z" + ``` #### `domain-date-past-pair-refDate-years` @@ -2134,8 +1899,7 @@ Non-executable scenario count: **11** - Command(s): `date.past(refDate=1577836800000, years=2)` - Preview data: ```csv -"Value" -"2019-05-16T08:15:04.782Z" + ``` #### `domain-date-recent-base` @@ -2143,8 +1907,7 @@ Non-executable scenario count: **11** - Command(s): `date.recent()` - Preview data: ```csv -"Value" -"2026-06-17T12:53:25.549Z" + ``` #### `domain-date-recent-arg-days` @@ -2152,8 +1915,7 @@ Non-executable scenario count: **11** - Command(s): `date.recent(days=7)` - Preview data: ```csv -"Value" -"2026-06-15T18:41:28.219Z" + ``` #### `domain-date-recent-arg-refDate` @@ -2161,8 +1923,7 @@ Non-executable scenario count: **11** - Command(s): `date.recent(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-12-31T17:33:19.970Z" + ``` #### `domain-date-recent-pair-days-refDate` @@ -2170,8 +1931,7 @@ Non-executable scenario count: **11** - Command(s): `date.recent(days=7, refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-12-31T16:09:08.524Z" + ``` #### `domain-date-soon-base` @@ -2179,8 +1939,7 @@ Non-executable scenario count: **11** - Command(s): `date.soon()` - Preview data: ```csv -"Value" -"2026-06-17T14:54:08.311Z" + ``` #### `domain-date-soon-arg-days` @@ -2188,8 +1947,7 @@ Non-executable scenario count: **11** - Command(s): `date.soon(days=7)` - Preview data: ```csv -"Value" -"2026-06-19T07:21:56.539Z" + ``` #### `domain-date-soon-arg-refDate` @@ -2197,8 +1955,7 @@ Non-executable scenario count: **11** - Command(s): `date.soon(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-01T14:00:11.275Z" + ``` #### `domain-date-soon-pair-days-refDate` @@ -2206,8 +1963,7 @@ Non-executable scenario count: **11** - Command(s): `date.soon(days=7, refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-05T05:26:41.692Z" + ``` #### `domain-date-timeZone-base` @@ -2215,8 +1971,7 @@ Non-executable scenario count: **11** - Command(s): `date.timeZone()` - Preview data: ```csv -"Value" -"Africa/Blantyre" + ``` #### `domain-date-weekday-base` @@ -2224,8 +1979,7 @@ Non-executable scenario count: **11** - Command(s): `date.weekday()` - Preview data: ```csv -"Value" -"Sunday" + ``` #### `domain-date-weekday-arg-abbreviated` @@ -2233,8 +1987,7 @@ Non-executable scenario count: **11** - Command(s): `date.weekday(abbreviated=true)` - Preview data: ```csv -"Value" -"Fri" + ``` #### `domain-date-weekday-arg-context` @@ -2242,8 +1995,7 @@ Non-executable scenario count: **11** - Command(s): `date.weekday(context=true)` - Preview data: ```csv -"Value" -"Sunday" + ``` #### `domain-date-weekday-pair-abbreviated-context` @@ -2251,8 +2003,7 @@ Non-executable scenario count: **11** - Command(s): `date.weekday(abbreviated=true, context=true)` - Preview data: ```csv -"Value" -"Wed" + ``` #### `domain-finance-accountName-base` @@ -2260,8 +2011,7 @@ Non-executable scenario count: **11** - Command(s): `finance.accountName()` - Preview data: ```csv -"Value" -"Credit Card Account" + ``` #### `domain-finance-accountNumber-base` @@ -2269,8 +2019,7 @@ Non-executable scenario count: **11** - Command(s): `finance.accountNumber()` - Preview data: ```csv -"Value" -"12741818" + ``` #### `domain-finance-accountNumber-arg-length` @@ -2278,8 +2027,7 @@ Non-executable scenario count: **11** - Command(s): `finance.accountNumber(length=4)` - Preview data: ```csv -"Value" -"0626" + ``` #### `domain-finance-amount-base` @@ -2287,8 +2035,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount()` - Preview data: ```csv -"Value" -"98.23" + ``` #### `domain-finance-amount-arg-autoFormat` @@ -2296,8 +2043,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(autoFormat=true)` - Preview data: ```csv -"Value" -"243.58" + ``` #### `domain-finance-amount-arg-dec` @@ -2305,8 +2051,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(dec=2)` - Preview data: ```csv -"Value" -"180.47" + ``` #### `domain-finance-amount-arg-max` @@ -2314,8 +2059,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(max=100)` - Preview data: ```csv -"Value" -"98.06" + ``` #### `domain-finance-amount-arg-min` @@ -2323,8 +2067,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(min=1)` - Preview data: ```csv -"Value" -"745.17" + ``` #### `domain-finance-amount-arg-symbol` @@ -2332,8 +2075,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(symbol="$")` - Preview data: ```csv -"Value" -"$439.51" + ``` #### `domain-finance-amount-pair-autoFormat-dec` @@ -2341,8 +2083,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(autoFormat=true, dec=2)` - Preview data: ```csv -"Value" -"823.64" + ``` #### `domain-finance-amount-pair-dec-max` @@ -2350,8 +2091,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(dec=2, max=100)` - Preview data: ```csv -"Value" -"61.65" + ``` #### `domain-finance-amount-pair-max-min` @@ -2359,8 +2099,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(max=100, min=1)` - Preview data: ```csv -"Value" -"73.22" + ``` #### `domain-finance-amount-pair-min-symbol` @@ -2368,8 +2107,7 @@ Non-executable scenario count: **11** - Command(s): `finance.amount(min=1, symbol="$")` - Preview data: ```csv -"Value" -"$738.40" + ``` #### `domain-finance-bic-base` @@ -2377,8 +2115,7 @@ Non-executable scenario count: **11** - Command(s): `finance.bic()` - Preview data: ```csv -"Value" -"SCXGMW70" + ``` #### `domain-finance-bic-arg-includeBranchCode` @@ -2386,8 +2123,7 @@ Non-executable scenario count: **11** - Command(s): `finance.bic(includeBranchCode=true)` - Preview data: ```csv -"Value" -"TOZQSBL96NT" + ``` #### `domain-finance-bitcoinAddress-base` @@ -2395,8 +2131,7 @@ Non-executable scenario count: **11** - Command(s): `finance.bitcoinAddress()` - Preview data: ```csv -"Value" -"34fzp3Y8vj9LnQmtgNeraDGfkqT2rk" + ``` #### `domain-finance-creditCardCVV-base` @@ -2404,8 +2139,7 @@ Non-executable scenario count: **11** - Command(s): `finance.creditCardCVV()` - Preview data: ```csv -"Value" -"463" + ``` #### `domain-finance-creditCardIssuer-base` @@ -2413,8 +2147,7 @@ Non-executable scenario count: **11** - Command(s): `finance.creditCardIssuer()` - Preview data: ```csv -"Value" -"american_express" + ``` #### `domain-finance-creditCardNumber-base` @@ -2422,8 +2155,7 @@ Non-executable scenario count: **11** - Command(s): `finance.creditCardNumber()` - Preview data: ```csv -"Value" -"3529-6738-8179-4135" + ``` #### `domain-finance-creditCardNumber-arg-issuer` @@ -2431,8 +2163,7 @@ Non-executable scenario count: **11** - Command(s): `finance.creditCardNumber(issuer="finance-creditCardNumber-issuer")` - Preview data: ```csv -"Value" -"3044-612107-9965" + ``` #### `domain-finance-currencyCode-base` @@ -2440,8 +2171,7 @@ Non-executable scenario count: **11** - Command(s): `finance.currencyCode()` - Preview data: ```csv -"Value" -"LBP" + ``` #### `domain-finance-currencyName-base` @@ -2449,8 +2179,7 @@ Non-executable scenario count: **11** - Command(s): `finance.currencyName()` - Preview data: ```csv -"Value" -"Cedi" + ``` #### `domain-finance-currencyNumericCode-base` @@ -2458,8 +2187,7 @@ Non-executable scenario count: **11** - Command(s): `finance.currencyNumericCode()` - Preview data: ```csv -"Value" -"934" + ``` #### `domain-finance-currencySymbol-base` @@ -2467,8 +2195,7 @@ Non-executable scenario count: **11** - Command(s): `finance.currencySymbol()` - Preview data: ```csv -"Value" -"₴" + ``` #### `domain-finance-ethereumAddress-base` @@ -2476,8 +2203,7 @@ Non-executable scenario count: **11** - Command(s): `finance.ethereumAddress()` - Preview data: ```csv -"Value" -"0x05a9f11aa9ac6713b564dc821edb1cee4ea9bb33" + ``` #### `domain-finance-iban-base` @@ -2485,8 +2211,7 @@ Non-executable scenario count: **11** - Command(s): `finance.iban()` - Preview data: ```csv -"Value" -"LV80HNUZ1327310107987" + ``` #### `domain-finance-iban-arg-countryCode` @@ -2494,8 +2219,7 @@ Non-executable scenario count: **11** - Command(s): `finance.iban(countryCode="GB")` - Preview data: ```csv -"Value" -"GB93ZCOC36631779090042" + ``` #### `domain-finance-iban-arg-formatted` @@ -2503,8 +2227,7 @@ Non-executable scenario count: **11** - Command(s): `finance.iban(formatted=true)` - Preview data: ```csv -"Value" -"FI75 6537 4040 0859 87" + ``` #### `domain-finance-iban-pair-countryCode-formatted` @@ -2512,8 +2235,7 @@ Non-executable scenario count: **11** - Command(s): `finance.iban(countryCode="GB", formatted=true)` - Preview data: ```csv -"Value" -"GB63 QSMG 1465 6277 3690 20" + ``` #### `domain-finance-litecoinAddress-base` @@ -2521,8 +2243,7 @@ Non-executable scenario count: **11** - Command(s): `finance.litecoinAddress()` - Preview data: ```csv -"Value" -"387GmSW4s1E1t16xYaNCi9zgLtV5cDM" + ``` #### `domain-finance-pin-base` @@ -2530,8 +2251,7 @@ Non-executable scenario count: **11** - Command(s): `finance.pin()` - Preview data: ```csv -"Value" -"2035" + ``` #### `domain-finance-pin-arg-length` @@ -2539,8 +2259,7 @@ Non-executable scenario count: **11** - Command(s): `finance.pin(length=4)` - Preview data: ```csv -"Value" -"1155" + ``` #### `domain-finance-routingNumber-base` @@ -2548,8 +2267,7 @@ Non-executable scenario count: **11** - Command(s): `finance.routingNumber()` - Preview data: ```csv -"Value" -"960542158" + ``` #### `domain-finance-transactionDescription-base` @@ -2557,8 +2275,7 @@ Non-executable scenario count: **11** - Command(s): `finance.transactionDescription()` - Preview data: ```csv -"Value" -"payment processed at Parker Inc for CRC 202.96, using card ending ****7286. Account: ***4194." + ``` #### `domain-finance-transactionType-base` @@ -2566,8 +2283,7 @@ Non-executable scenario count: **11** - Command(s): `finance.transactionType()` - Preview data: ```csv -"Value" -"withdrawal" + ``` #### `domain-food-adjective-base` @@ -2575,8 +2291,7 @@ Non-executable scenario count: **11** - Command(s): `food.adjective()` - Preview data: ```csv -"Value" -"fluffy" + ``` #### `domain-food-description-base` @@ -2584,8 +2299,7 @@ Non-executable scenario count: **11** - Command(s): `food.description()` - Preview data: ```csv -"Value" -"A classic pie filled with delicious venison and crunchy purple rice, baked in a smoky pastry crust and topped with a golden-brown lattice." + ``` #### `domain-food-dish-base` @@ -2593,8 +2307,7 @@ Non-executable scenario count: **11** - Command(s): `food.dish()` - Preview data: ```csv -"Value" -"Peach And Tangelo Tart" + ``` #### `domain-food-ethnicCategory-base` @@ -2602,8 +2315,7 @@ Non-executable scenario count: **11** - Command(s): `food.ethnicCategory()` - Preview data: ```csv -"Value" -"Belarusian" + ``` #### `domain-food-fruit-base` @@ -2611,8 +2323,7 @@ Non-executable scenario count: **11** - Command(s): `food.fruit()` - Preview data: ```csv -"Value" -"grapefruit" + ``` #### `domain-food-ingredient-base` @@ -2620,8 +2331,7 @@ Non-executable scenario count: **11** - Command(s): `food.ingredient()` - Preview data: ```csv -"Value" -"bonza" + ``` #### `domain-food-meat-base` @@ -2629,8 +2339,7 @@ Non-executable scenario count: **11** - Command(s): `food.meat()` - Preview data: ```csv -"Value" -"crocodile" + ``` #### `domain-food-spice-base` @@ -2638,8 +2347,7 @@ Non-executable scenario count: **11** - Command(s): `food.spice()` - Preview data: ```csv -"Value" -"achiote seed" + ``` #### `domain-food-vegetable-base` @@ -2647,8 +2355,7 @@ Non-executable scenario count: **11** - Command(s): `food.vegetable()` - Preview data: ```csv -"Value" -"leeks" + ``` #### `domain-git-branch-base` @@ -2656,8 +2363,7 @@ Non-executable scenario count: **11** - Command(s): `git.branch()` - Preview data: ```csv -"Value" -"array-input" + ``` #### `domain-git-commitDate-base` @@ -2665,8 +2371,7 @@ Non-executable scenario count: **11** - Command(s): `git.commitDate()` - Preview data: ```csv -"Value" -"Tue Jun 16 13:51:13 2026 -0700" + ``` #### `domain-git-commitEntry-base` @@ -2674,13 +2379,7 @@ Non-executable scenario count: **11** - Command(s): `git.commitEntry()` - Preview data: ```csv -"Value" -"commit 7738bbde748c2e27e1520b9bf8bb637a48e2feaa -Author: Norberto.Robel36 -Date: Wed Jun 17 09:26:44 2026 +0900 -    transmit open-source application -" ``` #### `domain-git-commitMessage-base` @@ -2688,8 +2387,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `git.commitMessage()` - Preview data: ```csv -"Value" -"program multi-byte alarm" + ``` #### `domain-git-commitSha-base` @@ -2697,8 +2395,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `git.commitSha()` - Preview data: ```csv -"Value" -"aa5bda8d6f6a71fed1ccffd89a4ea33d4ec21e7e" + ``` #### `domain-hacker-abbreviation-base` @@ -2706,8 +2403,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.abbreviation()` - Preview data: ```csv -"Value" -"UDP" + ``` #### `domain-hacker-adjective-base` @@ -2715,8 +2411,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.adjective()` - Preview data: ```csv -"Value" -"solid state" + ``` #### `domain-hacker-ingverb-base` @@ -2724,8 +2419,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.ingverb()` - Preview data: ```csv -"Value" -"bypassing" + ``` #### `domain-hacker-noun-base` @@ -2733,8 +2427,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.noun()` - Preview data: ```csv -"Value" -"card" + ``` #### `domain-hacker-phrase-base` @@ -2742,8 +2435,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.phrase()` - Preview data: ```csv -"Value" -"connecting the array won't do anything, we need to bypass the 1080p IP capacitor!" + ``` #### `domain-hacker-verb-base` @@ -2751,8 +2443,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.verb()` - Preview data: ```csv -"Value" -"calculate" + ``` #### `domain-image-avatar-base` @@ -2760,8 +2451,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.avatar()` - Preview data: ```csv -"Value" -"https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/20.jpg" + ``` #### `domain-image-avatarGitHub-base` @@ -2769,8 +2459,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.avatarGitHub()` - Preview data: ```csv -"Value" -"https://avatars.githubusercontent.com/u/16590067" + ``` #### `domain-image-dataUri-base` @@ -2778,8 +2467,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.dataUri()` - Preview data: ```csv -"Value" -"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%222476%22%20height%3D%223320%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22%23db2805%22%2F%3E%3Ctext%20x%3D%221238%22%20y%3D%221660%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E2476x3320%3C%2Ftext%3E%3C%2Fsvg%3E" + ``` #### `domain-image-personPortrait-base` @@ -2787,8 +2475,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.personPortrait()` - Preview data: ```csv -"Value" -"https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/male/512/96.jpg" + ``` #### `domain-image-url-base` @@ -2796,8 +2483,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url()` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/rXzuqSX/3937/617" + ``` #### `domain-image-url-arg-height` @@ -2805,8 +2491,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(height=2)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/lDB434I/3193/2" + ``` #### `domain-image-url-arg-width` @@ -2814,8 +2499,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(width=3)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/V3UIYDPa/3/984" + ``` #### `domain-image-url-pair-height-width` @@ -2823,8 +2507,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(height=2, width=3)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/N4LRBx/3/2" + ``` #### `domain-image-urlLoremFlickr-base` @@ -2832,8 +2515,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.urlLoremFlickr()` - Preview data: ```csv -"Value" -"https://loremflickr.com/3481/2017?lock=3236073595510946" + ``` #### `domain-image-urlPicsumPhotos-base` @@ -2841,8 +2523,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.urlPicsumPhotos()` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/s9gojEHeQ/1634/3581?grayscale&blur=1" + ``` #### `domain-internet-displayName-base` @@ -2850,8 +2531,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.displayName()` - Preview data: ```csv -"Value" -"Jaylin5" + ``` #### `domain-internet-domainName-base` @@ -2859,8 +2539,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainName()` - Preview data: ```csv -"Value" -"french-tuber.org" + ``` #### `domain-internet-domainSuffix-base` @@ -2868,8 +2547,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainSuffix()` - Preview data: ```csv -"Value" -"name" + ``` #### `domain-internet-domainWord-base` @@ -2877,8 +2555,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainWord()` - Preview data: ```csv -"Value" -"pure-alb" + ``` #### `domain-internet-email-base` @@ -2886,8 +2563,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email()` - Preview data: ```csv -"Value" -"Hulda22@hotmail.com" + ``` #### `domain-internet-email-arg-allowSpecialCharacters` @@ -2895,8 +2571,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(allowSpecialCharacters=true)` - Preview data: ```csv -"Value" -"Adrienne_Mitchell56@yahoo.com" + ``` #### `domain-internet-email-arg-firstName` @@ -2904,8 +2579,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(firstName="Ada")` - Preview data: ```csv -"Value" -"Ada.Bednar49@gmail.com" + ``` #### `domain-internet-email-arg-lastName` @@ -2913,8 +2587,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(lastName="Lovelace")` - Preview data: ```csv -"Value" -"Mandy.Lovelace@hotmail.com" + ``` #### `domain-internet-email-arg-provider` @@ -2922,8 +2595,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(provider="example.com")` - Preview data: ```csv -"Value" -"Shany.Mertz@example.com" + ``` #### `domain-internet-email-pair-allowSpecialCharacters-firstName` @@ -2931,8 +2603,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(allowSpecialCharacters=true, firstName="Ada")` - Preview data: ```csv -"Value" -"Ada_Rau@yahoo.com" + ``` #### `domain-internet-email-pair-firstName-lastName` @@ -2940,8 +2611,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(firstName="Ada", lastName="Lovelace")` - Preview data: ```csv -"Value" -"Ada.Lovelace55@hotmail.com" + ``` #### `domain-internet-email-pair-lastName-provider` @@ -2949,8 +2619,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(lastName="Lovelace", provider="example.com")` - Preview data: ```csv -"Value" -"Nora_Lovelace@example.com" + ``` #### `domain-internet-emoji-base` @@ -2958,8 +2627,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.emoji()` - Preview data: ```csv -"Value" -"🏵️" + ``` #### `domain-internet-emoji-arg-types` @@ -2967,8 +2635,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.emoji(types=["food"])` - Preview data: ```csv -"Value" -"🍖" + ``` #### `domain-internet-exampleEmail-base` @@ -2976,8 +2643,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.exampleEmail()` - Preview data: ```csv -"Value" -"Amalia_Bednar@example.com" + ``` #### `domain-internet-httpMethod-base` @@ -2985,8 +2651,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.httpMethod()` - Preview data: ```csv -"Value" -"PATCH" + ``` #### `domain-internet-httpStatusCode-base` @@ -2994,8 +2659,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.httpStatusCode()` - Preview data: ```csv -"Value" -"401" + ``` #### `domain-internet-ip-base` @@ -3003,8 +2667,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ip()` - Preview data: ```csv -"Value" -"229.141.100.182" + ``` #### `domain-internet-ipv4-base` @@ -3012,8 +2675,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4()` - Preview data: ```csv -"Value" -"52.210.222.85" + ``` #### `domain-internet-ipv4-arg-cidrBlock` @@ -3021,8 +2683,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24")` - Preview data: ```csv -"Value" -"192.168.0.68" + ``` #### `domain-internet-ipv4-arg-network` @@ -3030,8 +2691,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(network="private-a")` - Preview data: ```csv -"Value" -"10.77.209.214" + ``` #### `domain-internet-ipv4-pair-cidrBlock-network` @@ -3039,8 +2699,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24", network="private-a")` - Preview data: ```csv -"Value" -"192.168.0.45" + ``` #### `domain-internet-ipv6-base` @@ -3048,8 +2707,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv6()` - Preview data: ```csv -"Value" -"ff36:bc8e:3eea:4c8e:ac0b:50a2:fc4a:dbcf" + ``` #### `domain-internet-jwt-base` @@ -3057,8 +2715,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt()` - Preview data: ```csv -"Value" -"eyJhbGciOiJFUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2MTY1NDIsImV4cCI6MTc4MTY3MjYyMywibmJmIjoxNzc4NDA3NjI1LCJpc3MiOiJIb3dlIEdyb3VwIiwic3ViIjoiMzIwNjNhMTktMjk5MC00ZjVjLThhMzYtMWU2NmM1MmRkNGY0IiwiYXVkIjoiNjEwNWNkMTYtMjgwOC00YjdhLWEyZDYtNmM1M2Y3NGFiNWQ1IiwianRpIjoiYmNiMzdkNGQtOGFmMi00ZWQzLWJmNDItMGM4MGExNGMwNDFjIn0.GSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDwsi" + ``` #### `domain-internet-jwt-arg-header` @@ -3066,8 +2723,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(header={})` - Preview data: ```csv -"Value" -"e30.eyJpYXQiOjE3ODE2MjYyNDksImV4cCI6MTc4MTY0ODcwMSwibmJmIjoxNzg3OTY5MDE3LCJpc3MiOiJSZWljaGVydCwgR3JhbnQgYW5kIFZvblJ1ZWRlbiIsInN1YiI6IjZlZTc3MWYwLTBlNzktNDY3MC04MDRlLWJmODU4ZmM5MmY3OSIsImF1ZCI6ImIzMGEyOThmLTJlMWUtNDQwZS04NWM5LTY1OTNhZDVkNzk2YyIsImp0aSI6IjdjMzY0ZjM2LThiYWUtNDQ3Yy1iNzUxLTE4OTgxYTkzMmQ0MyJ9.Hj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWkqAp5aj" + ``` #### `domain-internet-jwt-arg-payload` @@ -3075,8 +2731,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(payload={})` - Preview data: ```csv -"Value" -"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" + ``` #### `domain-internet-jwt-arg-refDate` @@ -3084,8 +2739,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(refDate=4)` - Preview data: ```csv -"Value" -"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiTG93ZSwgV2F0c2ljYSBhbmQgV2l6YSIsInN1YiI6IjA0MzA0NmRiLWJlYTQtNDIwZi04NWY4LTk3ZjZhZDc2ZmJhMCIsImF1ZCI6ImJhMjFmNGVlLTRlZWQtNGJmMC1hNjA5LWExM2QzMGY0NDFlMSIsImp0aSI6IjhkNDJhYTMzLWUwNDYtNDliYy04YmZhLWNjZmNkYjNlNGU1ZiJ9.nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4UrH0jN" + ``` #### `domain-internet-jwt-pair-header-payload` @@ -3093,8 +2747,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(header={}, payload={})` - Preview data: ```csv -"Value" -"e30.e30.O604I0hDV1mFaT0FXBy2U9vHZNugne9xahCoN7ydkh96jHDR36zV9TDxv6yQjGqM" + ``` #### `domain-internet-jwt-pair-payload-refDate` @@ -3102,8 +2755,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(payload={}, refDate=4)` - Preview data: ```csv -"Value" -"eyJhbGciOiJQUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" + ``` #### `domain-internet-jwtAlgorithm-base` @@ -3111,8 +2763,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwtAlgorithm()` - Preview data: ```csv -"Value" -"PS256" + ``` #### `domain-internet-mac-base` @@ -3120,8 +2771,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.mac()` - Preview data: ```csv -"Value" -"45:11:8d:5b:a6:32" + ``` #### `domain-internet-mac-arg-separator` @@ -3129,8 +2779,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.mac(separator="-")` - Preview data: ```csv -"Value" -"c0-c3-a3-5e-ef-da" + ``` #### `domain-internet-password-base` @@ -3138,18 +2787,15 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password()` - Preview data: ```csv -"Value" -"TBoqXmfYfXk3I3A" + ``` #### `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 -"Value" -"#wMJJrPMVo" + ``` #### `domain-internet-password-arg-length` @@ -3157,8 +2803,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(length=12)` - Preview data: ```csv -"Value" -"hzyT0010JBYb" + ``` #### `domain-internet-password-arg-memorable` @@ -3166,8 +2811,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(memorable=true)` - Preview data: ```csv -"Value" -"zapeboqulewufuf" + ``` #### `domain-internet-password-arg-pattern` @@ -3175,8 +2819,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(pattern="[A-Z]")` - Preview data: ```csv -"Value" -"BVSNRUBNEAWUTJT" + ``` #### `domain-internet-password-arg-prefix` @@ -3184,8 +2827,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(prefix="#")` - Preview data: ```csv -"Value" -"#xxsm9CX1flFshv" + ``` #### `domain-internet-password-pair-length-memorable` @@ -3193,8 +2835,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(length=12, memorable=true)` - Preview data: ```csv -"Value" -"jecotucenedo" + ``` #### `domain-internet-password-pair-memorable-pattern` @@ -3202,8 +2843,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(memorable=true, pattern="[A-Z]")` - Preview data: ```csv -"Value" -"nomudolunexolec" + ``` #### `domain-internet-password-pair-pattern-prefix` @@ -3211,8 +2851,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(pattern="[A-Z]", prefix="#")` - Preview data: ```csv -"Value" -"#EXCEEXMTTHRSHT" + ``` #### `domain-internet-port-base` @@ -3220,8 +2859,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.port()` - Preview data: ```csv -"Value" -"63399" + ``` #### `domain-internet-protocol-base` @@ -3229,8 +2867,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.protocol()` - Preview data: ```csv -"Value" -"http" + ``` #### `domain-internet-url-base` @@ -3238,8 +2875,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url()` - Preview data: ```csv -"Value" -"https://grave-overheard.org" + ``` #### `domain-internet-url-arg-appendSlash` @@ -3247,8 +2883,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(appendSlash=true)` - Preview data: ```csv -"Value" -"https://pleasing-scrap.com/" + ``` #### `domain-internet-url-arg-protocol` @@ -3256,8 +2891,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(protocol="https")` - Preview data: ```csv -"Value" -"https://zealous-flat.net" + ``` #### `domain-internet-url-pair-appendSlash-protocol` @@ -3265,8 +2899,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(appendSlash=true, protocol="https")` - Preview data: ```csv -"Value" -"https://good-natured-hovel.info/" + ``` #### `domain-internet-userAgent-base` @@ -3274,8 +2907,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.userAgent()` - Preview data: ```csv -"Value" -"Googlebot/2.1 (+http://www.google.com/bot.html)" + ``` #### `domain-internet-username-base` @@ -3283,8 +2915,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username()` - Preview data: ```csv -"Value" -"Jeremiah.Shanahan" + ``` #### `domain-internet-username-arg-firstName` @@ -3292,8 +2923,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(firstName="Ada")` - Preview data: ```csv -"Value" -"Ada_Metz53" + ``` #### `domain-internet-username-arg-lastName` @@ -3301,8 +2931,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(lastName="Lovelace")` - Preview data: ```csv -"Value" -"Carla_Lovelace" + ``` #### `domain-internet-username-pair-firstName-lastName` @@ -3310,8 +2939,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(firstName="Ada", lastName="Lovelace")` - Preview data: ```csv -"Value" -"Ada.Lovelace" + ``` #### `domain-literal-value-base` @@ -3319,28 +2947,23 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `literal.value()` - Preview data: ```csv -"Value" -"" + ``` #### `domain-literal-value-example-1` - Command(s): `literal.value("Pending")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Pending" + ``` #### `domain-literal-value-example-2` - Command(s): `literal.value("")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"" + ``` #### `domain-literal-value-arg-value` @@ -3348,8 +2971,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `literal.value(value=true)` - Preview data: ```csv -"Value" -"true" + ``` #### `domain-location-buildingNumber-base` @@ -3357,8 +2979,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.buildingNumber()` - Preview data: ```csv -"Value" -"86561" + ``` #### `domain-location-cardinalDirection-base` @@ -3366,8 +2987,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.cardinalDirection()` - Preview data: ```csv -"Value" -"North" + ``` #### `domain-location-city-base` @@ -3375,8 +2995,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.city()` - Preview data: ```csv -"Value" -"Antelope" + ``` #### `domain-location-continent-base` @@ -3384,8 +3003,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.continent()` - Preview data: ```csv -"Value" -"Africa" + ``` #### `domain-location-country-base` @@ -3393,8 +3011,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.country()` - Preview data: ```csv -"Value" -"Eritrea" + ``` #### `domain-location-countryCode-base` @@ -3402,8 +3019,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.countryCode()` - Preview data: ```csv -"Value" -"GU" + ``` #### `domain-location-county-base` @@ -3411,8 +3027,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.county()` - Preview data: ```csv -"Value" -"Cumbria" + ``` #### `domain-location-direction-base` @@ -3420,8 +3035,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.direction()` - Preview data: ```csv -"Value" -"West" + ``` #### `domain-location-direction-arg-abbreviated` @@ -3429,8 +3043,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.direction(abbreviated=true)` - Preview data: ```csv -"Value" -"S" + ``` #### `domain-location-latitude-base` @@ -3438,8 +3051,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude()` - Preview data: ```csv -"Value" -"41.3757" + ``` #### `domain-location-latitude-arg-min` @@ -3447,8 +3059,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(min=1)` - Preview data: ```csv -"Value" -"12.2218" + ``` #### `domain-location-latitude-arg-max` @@ -3456,8 +3067,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(max=3)` - Preview data: ```csv -"Value" -"-85.9885" + ``` #### `domain-location-latitude-arg-precision` @@ -3465,8 +3075,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(precision=4)` - Preview data: ```csv -"Value" -"-16.2319" + ``` #### `domain-location-latitude-pair-min-max` @@ -3474,8 +3083,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(min=1, max=3)` - Preview data: ```csv -"Value" -"2.315" + ``` #### `domain-location-latitude-pair-max-precision` @@ -3483,8 +3091,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(max=3, precision=4)` - Preview data: ```csv -"Value" -"-52.1397" + ``` #### `domain-location-longitude-base` @@ -3492,8 +3099,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude()` - Preview data: ```csv -"Value" -"156.4157" + ``` #### `domain-location-longitude-arg-min` @@ -3501,8 +3107,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(min=1)` - Preview data: ```csv -"Value" -"26.1188" + ``` #### `domain-location-longitude-arg-max` @@ -3510,8 +3115,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(max=3)` - Preview data: ```csv -"Value" -"-68.5071" + ``` #### `domain-location-longitude-arg-precision` @@ -3519,8 +3123,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(precision=4)` - Preview data: ```csv -"Value" -"-52.7542" + ``` #### `domain-location-longitude-pair-min-max` @@ -3528,8 +3131,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(min=1, max=3)` - Preview data: ```csv -"Value" -"1.1204" + ``` #### `domain-location-longitude-pair-max-precision` @@ -3537,8 +3139,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(max=3, precision=4)` - Preview data: ```csv -"Value" -"-134.0996" + ``` #### `domain-location-ordinalDirection-base` @@ -3546,8 +3147,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.ordinalDirection()` - Preview data: ```csv -"Value" -"Southeast" + ``` #### `domain-location-secondaryAddress-base` @@ -3555,8 +3155,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.secondaryAddress()` - Preview data: ```csv -"Value" -"Apt. 818" + ``` #### `domain-location-state-base` @@ -3564,8 +3163,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.state()` - Preview data: ```csv -"Value" -"Michigan" + ``` #### `domain-location-state-arg-abbreviated` @@ -3573,8 +3171,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.state(abbreviated=true)` - Preview data: ```csv -"Value" -"WI" + ``` #### `domain-location-street-base` @@ -3582,8 +3179,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.street()` - Preview data: ```csv -"Value" -"Gerhold Creek" + ``` #### `domain-location-streetAddress-base` @@ -3591,8 +3187,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.streetAddress()` - Preview data: ```csv -"Value" -"428 Kunze-Johnston Trafficway" + ``` #### `domain-location-streetAddress-arg-useFullAddress` @@ -3600,8 +3195,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.streetAddress(useFullAddress=true)` - Preview data: ```csv -"Value" -"6267 Euclid Avenue Apt. 758" + ``` #### `domain-location-timeZone-base` @@ -3609,8 +3203,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.timeZone()` - Preview data: ```csv -"Value" -"America/North_Dakota/Beulah" + ``` #### `domain-location-zipCode-base` @@ -3618,8 +3211,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.zipCode()` - Preview data: ```csv -"Value" -"86088" + ``` #### `domain-lorem-lines-base` @@ -3627,12 +3219,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `lorem.lines()` - Preview data: ```csv -"Value" -"Celo defetiscor magnam chirographum peccatus contigo solium aggredior truculenter. -Optio torqueo vinco. -Tamquam neque repellendus adamo talio valens. -Demonstro crebro circumvenio aggero. -Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." + ``` #### `domain-lorem-lines-arg-min` @@ -3640,8 +3227,7 @@ Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." - Command(s): `lorem.lines(min=1)` - Preview data: ```csv -"Value" -"Abutor viridis tripudio calculus totam venio blanditiis talio." + ``` #### `domain-lorem-lines-arg-max` @@ -3649,11 +3235,7 @@ Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." - Command(s): `lorem.lines(max=3)` - Preview data: ```csv -"Value" -"Voluptatem vinum balbus ago. -Audentia utrum tamdiu tersus minima desino uter. -Expedita ducimus numquam sint aegrus vox accommodo amplitudo. -Ager conor adipisci admiratio cicuta id ullus apto ara conitor." + ``` #### `domain-lorem-lines-arg-lineCount` @@ -3661,9 +3243,7 @@ Ager conor adipisci admiratio cicuta id ullus apto ara conitor." - Command(s): `lorem.lines(lineCount=2)` - Preview data: ```csv -"Value" -"Comparo celebrer capio. -Nesciunt ipsa acerbitas cilicium thalassinus inflammatio." + ``` #### `domain-lorem-lines-arg-lineCountMax` @@ -3671,12 +3251,7 @@ Nesciunt ipsa acerbitas cilicium thalassinus inflammatio." - Command(s): `lorem.lines(lineCountMax=2)` - Preview data: ```csv -"Value" -"Commodi civitas peccatus aestus ager nesciunt laboriosam quos. -Acidus ipsum spes nesciunt vulticulus. -Incidunt utor vito supplanto spes dens succurro uter vita. -Coma toties tribuo certe eius calco aperiam calco viridis tantillus. -Creta conforto usitas sol." + ``` #### `domain-lorem-lines-arg-lineCountMin` @@ -3684,12 +3259,7 @@ Creta conforto usitas sol." - Command(s): `lorem.lines(lineCountMin=1)` - Preview data: ```csv -"Value" -"Calculus valetudo adopto tergeo tyrannus quaerat. -Tergo non conturbo vitae eligendi compono patruus ascit adipiscor. -Vulticulus absum adamo caste cena repellat abbas coadunatio spiculum. -Thymum solutio tamisium viscus quo. -Sint ultra adsum vester tres tametsi." + ``` #### `domain-lorem-lines-pair-min-max` @@ -3697,8 +3267,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(min=1, max=3)` - Preview data: ```csv -"Value" -"Dolore vere conicio suggero demo." + ``` #### `domain-lorem-lines-pair-max-lineCount` @@ -3706,8 +3275,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(max=3, lineCount=2)` - Preview data: ```csv -"Value" -"Aperiam cervus perspiciatis dedico deputo combibo tutis vester quis vigilo." + ``` #### `domain-lorem-lines-pair-lineCount-lineCountMax` @@ -3715,8 +3283,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(lineCount=2, lineCountMax=2)` - Preview data: ```csv -"Value" -"Tres vacuus somnus asper allatus allatus." + ``` #### `domain-lorem-lines-pair-lineCountMax-lineCountMin` @@ -3724,9 +3291,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(lineCountMax=2, lineCountMin=1)` - Preview data: ```csv -"Value" -"Nemo sophismata illo itaque. -Cernuus solutio sed comes degusto suscipio territo civitas." + ``` #### `domain-lorem-paragraph-base` @@ -3734,8 +3299,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph()` - Preview data: ```csv -"Value" -"Voluptate adopto arguo. Titulus summisse molestiae arx careo patior. Alveus conservo canto succedo demergo cupressus collum amplus cotidie autem." + ``` #### `domain-lorem-paragraph-arg-min` @@ -3743,8 +3307,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(min=1)` - Preview data: ```csv -"Value" -"Decerno theatrum crapula utroque crastinus demoror bis." + ``` #### `domain-lorem-paragraph-arg-max` @@ -3752,8 +3315,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(max=3)` - Preview data: ```csv -"Value" -"Vulnero deleniti vitae aspicio sapiente. Decumbo voluptate claustrum ascisco angustus thema synagoga. Ad conspergo adfectus casso allatus patior." + ``` #### `domain-lorem-paragraph-arg-sentenceCount` @@ -3761,8 +3323,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCount=4)` - Preview data: ```csv -"Value" -"Tergeo congregatio tolero. Trepide consuasor censura. Architecto aegrus creptio fugiat atqui delego." + ``` #### `domain-lorem-paragraph-arg-sentenceCountMax` @@ -3770,8 +3331,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMax=5)` - Preview data: ```csv -"Value" -"Amiculum ambulo depraedor clibanus quae tres coepi complectus creptio. Condico tonsor curatio aggero accusantium utrum demergo. Deripio creo trucido civis despecto." + ``` #### `domain-lorem-paragraph-arg-sentenceCountMin` @@ -3779,8 +3339,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMin=6)` - Preview data: ```csv -"Value" -"Alo quod argentum illo cattus decretum. Tenuis nemo conor campana bardus collum sint. Benevolentia sui sint tripudio conicio." + ``` #### `domain-lorem-paragraph-pair-min-max` @@ -3788,8 +3347,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(min=1, max=3)` - Preview data: ```csv -"Value" -"Labore labore torrens vesco tumultus attollo canto canonicus cupiditate." + ``` #### `domain-lorem-paragraph-pair-max-sentenceCount` @@ -3797,8 +3355,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(max=3, sentenceCount=4)` - Preview data: ```csv -"Value" -"Repellendus aperiam textilis claro volubilis voluptas sophismata veritas tibi umerus. Ultio deleniti voco audacia depulso astrum inflammatio vulnus. Occaecati tactus titulus vel communis." + ``` #### `domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax` @@ -3806,8 +3363,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCount=4, sentenceCountMax=5)` - Preview data: ```csv -"Value" -"Tandem victus repellendus varius distinctio cur varietas video. Totus occaecati bene est vacuus versus. Voluptate crustulum adhuc artificiose libero super aperte labore peior laborum." + ``` #### `domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin` @@ -3815,8 +3371,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)` - Preview data: ```csv -"Value" -"Quas tonsor ambulo tum. Ascit aggredior crepusculum quis constans articulus corona adiuvo. Thesis amita video solium ultra exercitationem." + ``` #### `domain-lorem-paragraphs-base` @@ -3824,10 +3379,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraphs()` - Preview data: ```csv -"Value" -"Tandem surgo ulterius defero aut veniam communis. Porro claro conturbo urbs aestivus cognomen advenio aureus sulum collum. Tertius apud bonus ara fugit totam tempora veritas. -Adduco congregatio crinis nam ascit tabernus cupiditate curo. Curso cohibeo nesciunt alioqui vilitas. Cubo aspicio abutor corporis tergiversatio tam adaugeo. -Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo rem." + ``` #### `domain-lorem-paragraphs-arg-min` @@ -3835,8 +3387,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(min=1)` - Preview data: ```csv -"Value" -"Arca deprimo confugo amplexus arcus vulnus vester titulus super suffoco. Cruentus debilito adulatio audacia vicinus pax attonbitus delicate cuius. Arbustum demens doloribus dolor." + ``` #### `domain-lorem-paragraphs-arg-max` @@ -3844,8 +3395,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(max=3)` - Preview data: ```csv -"Value" -"Cogo decet adflicto sumptus ut. Amo sustineo creta templum. Sapiente creator non decipio comes comminor aro aliquid curso.3Amplitudo et aliqua solitudo cruciamentum atque versus sustineo audacia credo. Alias decipio demens nemo speciosus absens ustilo vinco. Cetera impedit despecto apto.3Viriliter denuo thymbra curiositas vomito rerum canonicus amplitudo. Comprehendo bestia ambulo aranea adipiscor temperantia amaritudo culpo curia addo. Ex pax canonicus statua sperno adfero copia vulgaris videlicet." + ``` #### `domain-lorem-paragraphs-arg-paragraphCount` @@ -3853,10 +3403,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(paragraphCount=4)` - Preview data: ```csv -"Value" -"Avaritia decor odio alienus aliquid confido delectus. Curriculum angelus cubo vulgaris crustulum vinco canonicus ventito. Patruus depulso venio addo. -Usitas ipsum comitatus accusator angulus tibi cubitum. Adicio debeo dedecor comitatus comminor aut succedo conor tandem. Cruciamentum tutamen tui angelus totidem deserunt decipio. -Cohors complectus chirographum aiunt bibo condico appono cornu censura. Consequuntur tres sponte caute. Colo ea nostrum vehemens alius molestias victus." + ``` #### `domain-lorem-paragraphs-arg-separator` @@ -3864,10 +3411,7 @@ Cohors complectus chirographum aiunt bibo condico appono cornu censura. Consequu - Command(s): `lorem.paragraphs(separator="-")` - Preview data: ```csv -"Value" -"Auxilium capto volva arca perspiciatis. Quod odio cum turpis ascisco culpa sed consequuntur cogo. Tracto ademptio quas sufficio decet tempora utrum. -Cuppedia aegrus defluo vociferor venia. Cresco odit contigo vinco pectus vinum vapulus. Victoria bestia claustrum decretum benevolentia soleo. -Patruus vorax cariosus laboriosam. Defleo vox textor desipio voluptas apostolus caelum. Claustrum cometes talio super placeat aut." + ``` #### `domain-lorem-paragraphs-arg-paragraphCountMax` @@ -3875,10 +3419,7 @@ Patruus vorax cariosus laboriosam. Defleo vox textor desipio voluptas apostolus - Command(s): `lorem.paragraphs(paragraphCountMax=6)` - Preview data: ```csv -"Value" -"Varius averto adeptio vestigium versus acerbitas peccatus fugit. Tam cunctatio crebro demitto corrumpo. Conicio vester utroque ascit ab unde quidem. -Tonsor adstringo sollers validus acceptus sumo vel totus vulariter. Assentator carbo amo suppellex crapula decor. Tenax defluo appono vix vulnero bos utpote. -Sophismata angustus alveus eveniet ventito. Theatrum somnus conduco sublime. Corrupti benigne uberrime aegrotatio cursus suscipit." + ``` #### `domain-lorem-paragraphs-arg-paragraphCountMin` @@ -3886,10 +3427,7 @@ Sophismata angustus alveus eveniet ventito. Theatrum somnus conduco sublime. Cor - Command(s): `lorem.paragraphs(paragraphCountMin=7)` - Preview data: ```csv -"Value" -"Strues aeneus debilito pectus capto perferendis antiquus doloremque placeat acsi. Advoco ventosus suus collum thymum truculenter beneficium ratione cruciamentum. Coniecto valens terreo. -Decens ara cubitum. Deinde adamo communis summopere placeat. Complectus amor suasoria vigor. -Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. Ventosus circumvenio concido versus via arbustum maiores thymbra." + ``` #### `domain-lorem-paragraphs-pair-min-max` @@ -3897,8 +3435,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(min=1, max=3)` - Preview data: ```csv -"Value" -"Arbitro aequus turbo cur coerceo bestia acer facilis. Collum ut varietas chirographum pecto coadunatio. Pariatur derelinquo solus rem tempus arcus necessitatibus validus voluptate." + ``` #### `domain-lorem-paragraphs-pair-max-paragraphCount` @@ -3906,8 +3443,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(max=3, paragraphCount=4)` - Preview data: ```csv -"Value" -"Sopor collum suus. Thalassinus speculum ut. Audeo beneficium arx repellat teres creator numquam carmen.3Velum cubitum aranea surculus arceo centum tantillus cumque. Defero capto demo summisse sto venio stultus adnuo derelinquo. Crepusculum acer tantum vulgo.3Sufficio accendo compono arcesso voluptates surculus demulceo. Denuncio tantum tertius angustus. Distinctio delectus iste pariatur." + ``` #### `domain-lorem-paragraphs-pair-paragraphCount-separator` @@ -3915,10 +3451,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(paragraphCount=4, separator="-")` - Preview data: ```csv -"Value" -"Culpo arcesso voluptatum antiquus suscipit. Vestrum nam advenio aer tabula tondeo expedita eaque. Odio decretum tunc sint volubilis casus reprehenderit odio nulla. -Addo consectetur fugit vesica spectaculum sperno curo alveus. Velit odio aegrus amplexus. Ancilla ubi congregatio stabilis. -Spoliatio taceo deporto temporibus adfectus ipsum. Cum tyrannus adhuc totam. Illo vae uredo sursum carbo absorbeo admoveo valeo titulus strues." + ``` #### `domain-lorem-paragraphs-pair-separator-paragraphCountMax` @@ -3926,10 +3459,7 @@ Spoliatio taceo deporto temporibus adfectus ipsum. Cum tyrannus adhuc totam. Ill - Command(s): `lorem.paragraphs(separator="-", paragraphCountMax=6)` - Preview data: ```csv -"Value" -"Aiunt amicitia animus decimus. Temeritas quis nemo. Tibi ubi optio absconditus aufero. -Careo volubilis arbitro. Accendo crapula desino canto odit doloribus valde libero debeo turpis. Aiunt crux virgo recusandae alveus vinitor speciosus unde abbas acidus. -Velut conicio temptatio armarium sint aspicio apostolus. Tolero claudeo congregatio credo vis ulterius. Repellendus consequatur molestiae avaritia sursum comptus carcer aperio." + ``` #### `domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin` @@ -3937,10 +3467,7 @@ Velut conicio temptatio armarium sint aspicio apostolus. Tolero claudeo congrega - Command(s): `lorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)` - Preview data: ```csv -"Value" -"Color crur suffragium veniam voluptas. Commodi angelus molestias suppono asper ait eum thymbra synagoga. Magnam utpote asper stips. -Veritas clamo coaegresco verus. Aveho blanditiis campana debeo vinum. Cito amitto speciosus caterva a comitatus volo. -Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter supplanto sollicito temporibus super. Exercitationem paens nulla abutor beatus quia defendo autus argumentum temeritas." + ``` #### `domain-lorem-sentence-base` @@ -3948,8 +3475,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence()` - Preview data: ```csv -"Value" -"Thymum curo rerum utrum." + ``` #### `domain-lorem-sentence-arg-min` @@ -3957,8 +3483,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(min=1)` - Preview data: ```csv -"Value" -"Appello." + ``` #### `domain-lorem-sentence-arg-max` @@ -3966,8 +3491,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(max=3)` - Preview data: ```csv -"Value" -"Ter textus admoneo acceptus deripio ullam succedo clam odit succurro." + ``` #### `domain-lorem-sentence-arg-wordCount` @@ -3975,8 +3499,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCount=4)` - Preview data: ```csv -"Value" -"Voluptas despecto admoneo aestivus auxilium adhuc aegre dicta." + ``` #### `domain-lorem-sentence-arg-wordCountMax` @@ -3984,8 +3507,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMax=5)` - Preview data: ```csv -"Value" -"Vivo accendo sint placeat supellex amoveo damnatio aegre." + ``` #### `domain-lorem-sentence-arg-wordCountMin` @@ -3993,8 +3515,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMin=6)` - Preview data: ```csv -"Value" -"Denuo torqueo id cohibeo deludo depono truculenter delectatio tolero." + ``` #### `domain-lorem-sentence-pair-min-max` @@ -4002,8 +3523,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(min=1, max=3)` - Preview data: ```csv -"Value" -"Summa." + ``` #### `domain-lorem-sentence-pair-max-wordCount` @@ -4011,8 +3531,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"Civis reprehenderit tripudio." + ``` #### `domain-lorem-sentence-pair-wordCount-wordCountMax` @@ -4020,8 +3539,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"Tego vilitas assumenda desidero." + ``` #### `domain-lorem-sentence-pair-wordCountMax-wordCountMin` @@ -4029,8 +3547,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"Pecto sequi accommodo aegrotatio." + ``` #### `domain-lorem-sentences-base` @@ -4038,8 +3555,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences()` - Preview data: ```csv -"Value" -"Virgo blandior adflicto. Adeo vos sortitus conventus ventito. Arca defessus tres argumentum amissio." + ``` #### `domain-lorem-sentences-arg-min` @@ -4047,8 +3563,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(min=1)` - Preview data: ```csv -"Value" -"Ullam coruscus alienus avaritia vulnero." + ``` #### `domain-lorem-sentences-arg-max` @@ -4056,8 +3571,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(max=3)` - Preview data: ```csv -"Value" -"Officiis angustus assentator cur sit.3Totam utilis tergiversatio clibanus auditor cunabula cena.3Umquam deporto caelum.3Vomito consequuntur soleo voluptates tamisium textilis deprecator absque ambitus demo.3Depono cunae tergum spectaculum quia expedita.3Thalassinus tyrannus molestias bellicus." + ``` #### `domain-lorem-sentences-arg-sentenceCount` @@ -4065,8 +3579,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCount=4)` - Preview data: ```csv -"Value" -"Vilis valens vacuus theatrum excepturi cras conservo vinculum. Termes antiquus aggero deserunt. Artificiose aestivus audax doloremque basium." + ``` #### `domain-lorem-sentences-arg-separator` @@ -4074,8 +3587,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(separator="-")` - Preview data: ```csv -"Value" -"Virgo cibus tres speculum vacuus omnis talio comprehendo earum. Demens ambitus minima advenio abeo. Usitas surculus veniam atrox carcer thorax corona. Taceo bos solutio tamquam admoveo villa cognomen tertius placeat. Causa alo bellum vestigium video ademptio vomica. Crudelis consectetur spectaculum tempus ullam." + ``` #### `domain-lorem-sentences-arg-sentenceCountMax` @@ -4083,8 +3595,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMax=6)` - Preview data: ```csv -"Value" -"Nemo ciminatio coruscus cognomen cum uredo adsidue sodalitas stipes cometes. Acerbitas turpis terebro sodalitas colligo deputo. Thermae truculenter absorbeo textor tyrannus arbustum debeo. Ducimus antepono solium arca tergo celebrer torqueo. Toties vesco cras stabilis tamisium infit summa beatus sublime coerceo." + ``` #### `domain-lorem-sentences-arg-sentenceCountMin` @@ -4092,8 +3603,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMin=7)` - Preview data: ```csv -"Value" -"Beneficium vita viduo clementia. Exercitationem tergiversatio appello. Commodi harum validus surculus venio enim cultellus claudeo. Illo tot trucido thymbra teneo laudantium sopor autem. Verbera amitto tertius vomito subseco tertius. Subvenio charisma velut." + ``` #### `domain-lorem-sentences-pair-min-max` @@ -4101,8 +3611,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(min=1, max=3)` - Preview data: ```csv -"Value" -"Aedificium amo demum vicinus tribuo." + ``` #### `domain-lorem-sentences-pair-max-sentenceCount` @@ -4110,8 +3619,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(max=3, sentenceCount=4)` - Preview data: ```csv -"Value" -"Caute carcer sumo textor.3Cariosus denuncio nostrum depulso pecto ad aduro.3Utilis defero tardus aequus taceo angustus beneficium carcer voluptatem volaticus.3Cras abbas avaritia." + ``` #### `domain-lorem-sentences-pair-sentenceCount-separator` @@ -4119,8 +3627,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCount=4, separator="-")` - Preview data: ```csv -"Value" -"Atrocitas arbitro desidero torrens atqui despecto vito dolore. Arto sol tendo. Adeo triduana facilis cum laboriosam amicitia. Voluptas surculus tabernus voluptatibus victus." + ``` #### `domain-lorem-sentences-pair-separator-sentenceCountMax` @@ -4128,8 +3635,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(separator="-", sentenceCountMax=6)` - Preview data: ```csv -"Value" -"Cattus animadverto urbs utrimque subiungo sint vulgivagus conqueror nostrum. Cibo coma adsidue aequus virtus considero dolore aetas commodo officia. Atavus adsuesco eaque degusto. Tepidus supellex attonbitus. Accommodo summopere iusto celo vivo amor vivo quidem." + ``` #### `domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin` @@ -4137,8 +3643,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMax=6, sentenceCountMin=7)` - Preview data: ```csv -"Value" -"Carmen bestia angelus tergiversatio cunabula assumenda terror tamisium sed alias. Perferendis audio odit facere. Canonicus suscipit voluptas. Vito corroboro incidunt recusandae ultra civis repellendus." + ``` #### `domain-lorem-slug-base` @@ -4146,8 +3651,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug()` - Preview data: ```csv -"Value" -"vacuus-arcesso-volva" + ``` #### `domain-lorem-slug-arg-min` @@ -4155,8 +3659,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(min=1)` - Preview data: ```csv -"Value" -"vociferor" + ``` #### `domain-lorem-slug-arg-max` @@ -4164,8 +3667,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(max=3)` - Preview data: ```csv -"Value" -"assumenda-nam-capillus" + ``` #### `domain-lorem-slug-arg-wordCount` @@ -4173,8 +3675,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCount=4)` - Preview data: ```csv -"Value" -"vulariter-est-antea" + ``` #### `domain-lorem-slug-arg-wordCountMax` @@ -4182,8 +3683,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMax=5)` - Preview data: ```csv -"Value" -"adipisci-absque-acies" + ``` #### `domain-lorem-slug-arg-wordCountMin` @@ -4191,8 +3691,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMin=6)` - Preview data: ```csv -"Value" -"curatio-strenuus-voluntarius" + ``` #### `domain-lorem-slug-pair-min-max` @@ -4200,8 +3699,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(min=1, max=3)` - Preview data: ```csv -"Value" -"advoco" + ``` #### `domain-lorem-slug-pair-max-wordCount` @@ -4209,8 +3707,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"comitatus-spiculum-tandem" + ``` #### `domain-lorem-slug-pair-wordCount-wordCountMax` @@ -4218,8 +3715,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"clarus-dedico-totus" + ``` #### `domain-lorem-slug-pair-wordCountMax-wordCountMin` @@ -4227,8 +3723,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"vita-celebrer-adinventitias" + ``` #### `domain-lorem-text-base` @@ -4236,10 +3731,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.text()` - Preview data: ```csv -"Value" -"Calamitas tristis iste consectetur bos sed verbum capitulus. Civitas absorbeo stella cilicium delinquo odit admoneo vinco auctor cui. Adhuc consuasor sui ullus vilis tergum neque contra. -Balbus tempora cura cohibeo angelus corrigo. Audax crebro delinquo demum adfectus ulciscor textilis. Desidero decens ex vae arx curriculum nostrum attollo cervus. -Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. Vestigium speculum fuga aggredior suffragium cernuus occaecati super cunae error." + ``` #### `domain-lorem-word-base` @@ -4247,8 +3739,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word()` - Preview data: ```csv -"Value" -"careo" + ``` #### `domain-lorem-word-arg-min` @@ -4256,8 +3747,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(min=1)` - Preview data: ```csv -"Value" -"defluo" + ``` #### `domain-lorem-word-arg-max` @@ -4265,8 +3755,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(max=3)` - Preview data: ```csv -"Value" -"voluptates" + ``` #### `domain-lorem-word-arg-length` @@ -4274,8 +3763,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(length=4)` - Preview data: ```csv -"Value" -"nemo" + ``` #### `domain-lorem-word-arg-strategy` @@ -4283,8 +3771,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(strategy="lorem-word-strategy")` - Preview data: ```csv -"Value" -"id" + ``` #### `domain-lorem-word-pair-min-max` @@ -4292,8 +3779,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(min=1, max=3)` - Preview data: ```csv -"Value" -"vero" + ``` #### `domain-lorem-word-pair-max-length` @@ -4301,8 +3787,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(max=3, length=4)` - Preview data: ```csv -"Value" -"curo" + ``` #### `domain-lorem-word-pair-length-strategy` @@ -4310,8 +3795,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(length=4, strategy="lorem-word-strategy")` - Preview data: ```csv -"Value" -"vito" + ``` #### `domain-lorem-words-base` @@ -4319,8 +3803,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words()` - Preview data: ```csv -"Value" -"verus voluptates suppellex" + ``` #### `domain-lorem-words-arg-min` @@ -4328,8 +3811,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(min=1)` - Preview data: ```csv -"Value" -"tollo" + ``` #### `domain-lorem-words-arg-max` @@ -4337,8 +3819,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(max=3)` - Preview data: ```csv -"Value" -"illum triduana deficio" + ``` #### `domain-lorem-words-arg-wordCount` @@ -4346,8 +3827,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCount=4)` - Preview data: ```csv -"Value" -"optio cohaero uredo" + ``` #### `domain-lorem-words-arg-wordCountMax` @@ -4355,8 +3835,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMax=5)` - Preview data: ```csv -"Value" -"texo dolorum spargo" + ``` #### `domain-lorem-words-arg-wordCountMin` @@ -4364,8 +3843,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMin=6)` - Preview data: ```csv -"Value" -"defero vacuus impedit" + ``` #### `domain-lorem-words-pair-min-max` @@ -4373,8 +3851,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(min=1, max=3)` - Preview data: ```csv -"Value" -"cibus" + ``` #### `domain-lorem-words-pair-max-wordCount` @@ -4382,8 +3859,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"mollitia abeo urbs" + ``` #### `domain-lorem-words-pair-wordCount-wordCountMax` @@ -4391,8 +3867,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"sollicito tondeo et" + ``` #### `domain-lorem-words-pair-wordCountMax-wordCountMin` @@ -4400,8 +3875,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"depono cedo absum" + ``` #### `domain-music-album-base` @@ -4409,8 +3883,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.album()` - Preview data: ```csv -"Value" -"Majestic" + ``` #### `domain-music-artist-base` @@ -4418,8 +3891,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.artist()` - Preview data: ```csv -"Value" -"George Michael" + ``` #### `domain-music-genre-base` @@ -4427,8 +3899,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.genre()` - Preview data: ```csv -"Value" -"Latin" + ``` #### `domain-music-songName-base` @@ -4436,8 +3907,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.songName()` - Preview data: ```csv -"Value" -"You've Got a Friend" + ``` #### `domain-number-bigInt-base` @@ -4445,8 +3915,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.bigInt()` - Preview data: ```csv -"Value" -"571092089829729" + ``` #### `domain-number-bigInt-arg-value` @@ -4454,8 +3923,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.bigInt(value=true)` - Preview data: ```csv -"Value" -"586349396167377" + ``` #### `domain-number-binary-base` @@ -4463,8 +3931,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary()` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-binary-arg-max` @@ -4472,8 +3939,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(max=3)` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-binary-arg-min` @@ -4481,8 +3947,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-binary-pair-max-min` @@ -4490,8 +3955,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(max=3, min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-base` @@ -4499,8 +3963,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float()` - Preview data: ```csv -"Value" -"0.3550653996448585" + ``` #### `domain-number-float-arg-fractionDigits` @@ -4508,8 +3971,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(fractionDigits=2)` - Preview data: ```csv -"Value" -"0.73" + ``` #### `domain-number-float-arg-max` @@ -4517,8 +3979,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(max=3)` - Preview data: ```csv -"Value" -"2.7132336805883557" + ``` #### `domain-number-float-arg-min` @@ -4526,8 +3987,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-arg-multipleOf` @@ -4535,8 +3995,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(multipleOf=0.5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-pair-fractionDigits-max` @@ -4544,8 +4003,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(fractionDigits=2, max=3)` - Preview data: ```csv -"Value" -"0.32" + ``` #### `domain-number-float-pair-max-min` @@ -4553,8 +4011,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(max=3, min=1)` - Preview data: ```csv -"Value" -"2.8150852265633652" + ``` #### `domain-number-float-pair-min-multipleOf` @@ -4562,8 +4019,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(min=1, multipleOf=0.5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-hex-base` @@ -4571,8 +4027,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex()` - Preview data: ```csv -"Value" -"f" + ``` #### `domain-number-hex-arg-min` @@ -4580,8 +4035,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(min=1)` - Preview data: ```csv -"Value" -"b" + ``` #### `domain-number-hex-arg-max` @@ -4589,8 +4043,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-hex-pair-min-max` @@ -4598,8 +4051,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(min=1, max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-int-base` @@ -4607,8 +4059,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int()` - Preview data: ```csv -"Value" -"1105340026189529" + ``` #### `domain-number-int-arg-min` @@ -4616,8 +4067,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(min=1)` - Preview data: ```csv -"Value" -"4151426716022040" + ``` #### `domain-number-int-arg-max` @@ -4625,8 +4075,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-int-arg-multipleOf` @@ -4634,8 +4083,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(multipleOf=4)` - Preview data: ```csv -"Value" -"3324814506500716" + ``` #### `domain-number-int-pair-min-max` @@ -4643,8 +4091,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(min=1, max=3)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-int-pair-max-multipleOf` @@ -4652,8 +4099,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(max=3, multipleOf=4)` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-octal-base` @@ -4661,8 +4107,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal()` - Preview data: ```csv -"Value" -"7" + ``` #### `domain-number-octal-arg-max` @@ -4670,8 +4115,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-octal-arg-min` @@ -4679,8 +4123,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(min=1)` - Preview data: ```csv -"Value" -"6" + ``` #### `domain-number-octal-pair-max-min` @@ -4688,8 +4131,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(max=3, min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-romanNumeral-base` @@ -4697,8 +4139,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral()` - Preview data: ```csv -"Value" -"MMMCDXXI" + ``` #### `domain-number-romanNumeral-arg-min` @@ -4706,8 +4147,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(min=1)` - Preview data: ```csv -"Value" -"CCXCI" + ``` #### `domain-number-romanNumeral-arg-max` @@ -4715,8 +4155,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(max=3)` - Preview data: ```csv -"Value" -"I" + ``` #### `domain-number-romanNumeral-pair-min-max` @@ -4724,8 +4163,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(min=1, max=3)` - Preview data: ```csv -"Value" -"II" + ``` #### `domain-person-bio-base` @@ -4733,8 +4171,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.bio()` - Preview data: ```csv -"Value" -"environmentalist" + ``` #### `domain-person-firstName-base` @@ -4742,8 +4179,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.firstName()` - Preview data: ```csv -"Value" -"Moses" + ``` #### `domain-person-firstName-arg-sex` @@ -4751,8 +4187,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.firstName(sex="male")` - Preview data: ```csv -"Value" -"Stephen" + ``` #### `domain-person-fullName-base` @@ -4760,8 +4195,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.fullName()` - Preview data: ```csv -"Value" -"Candace Champlin" + ``` #### `domain-person-gender-base` @@ -4769,8 +4203,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.gender()` - Preview data: ```csv -"Value" -"Female to male transgender man" + ``` #### `domain-person-jobArea-base` @@ -4778,8 +4211,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobArea()` - Preview data: ```csv -"Value" -"Directives" + ``` #### `domain-person-jobDescriptor-base` @@ -4787,8 +4219,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobDescriptor()` - Preview data: ```csv -"Value" -"International" + ``` #### `domain-person-jobTitle-base` @@ -4796,8 +4227,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobTitle()` - Preview data: ```csv -"Value" -"Human Accountability Producer" + ``` #### `domain-person-jobType-base` @@ -4805,8 +4235,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobType()` - Preview data: ```csv -"Value" -"Manager" + ``` #### `domain-person-lastName-base` @@ -4814,8 +4243,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.lastName()` - Preview data: ```csv -"Value" -"Pacocha" + ``` #### `domain-person-lastName-arg-sex` @@ -4823,8 +4251,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.lastName(sex="male")` - Preview data: ```csv -"Value" -"Krajcik" + ``` #### `domain-person-middleName-base` @@ -4832,8 +4259,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.middleName()` - Preview data: ```csv -"Value" -"Luke" + ``` #### `domain-person-middleName-arg-sex` @@ -4841,8 +4267,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.middleName(sex="male")` - Preview data: ```csv -"Value" -"Ezra" + ``` #### `domain-person-prefix-base` @@ -4850,8 +4275,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.prefix()` - Preview data: ```csv -"Value" -"Miss" + ``` #### `domain-person-prefix-arg-sex` @@ -4859,8 +4283,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.prefix(sex="male")` - Preview data: ```csv -"Value" -"Mr." + ``` #### `domain-person-sex-base` @@ -4868,8 +4291,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.sex()` - Preview data: ```csv -"Value" -"male" + ``` #### `domain-person-sexType-base` @@ -4877,8 +4299,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.sexType()` - Preview data: ```csv -"Value" -"male" + ``` #### `domain-person-suffix-base` @@ -4886,8 +4307,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.suffix()` - Preview data: ```csv -"Value" -"DVM" + ``` #### `domain-person-zodiacSign-base` @@ -4895,8 +4315,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.zodiacSign()` - Preview data: ```csv -"Value" -"Leo" + ``` #### `domain-phone-imei-base` @@ -4904,8 +4323,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.imei()` - Preview data: ```csv -"Value" -"79-903165-712789-0" + ``` #### `domain-phone-number-base` @@ -4913,8 +4331,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.number()` - Preview data: ```csv -"Value" -"1-329-484-4271 x034" + ``` #### `domain-phone-number-arg-style` @@ -4922,8 +4339,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.number(style="international")` - Preview data: ```csv -"Value" -"+18882200058" + ``` #### `domain-string-alpha-base` @@ -4931,8 +4347,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha()` - Preview data: ```csv -"Value" -"l" + ``` #### `domain-string-alpha-arg-length` @@ -4940,8 +4355,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(length=4)` - Preview data: ```csv -"Value" -"eNHO" + ``` #### `domain-string-alpha-arg-casing` @@ -4949,8 +4363,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(casing="upper")` - Preview data: ```csv -"Value" -"J" + ``` #### `domain-string-alpha-arg-exclude` @@ -4958,8 +4371,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"Z" + ``` #### `domain-string-alpha-pair-length-casing` @@ -4967,8 +4379,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(length=4, casing="upper")` - Preview data: ```csv -"Value" -"XLKS" + ``` #### `domain-string-alpha-pair-casing-exclude` @@ -4976,8 +4387,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(casing="upper", exclude=["A", "B"])` - Preview data: ```csv -"Value" -"F" + ``` #### `domain-string-alphanumeric-base` @@ -4985,8 +4395,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric()` - Preview data: ```csv -"Value" -"U" + ``` #### `domain-string-alphanumeric-arg-length` @@ -4994,8 +4403,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(length=4)` - Preview data: ```csv -"Value" -"LmDo" + ``` #### `domain-string-alphanumeric-arg-casing` @@ -5003,8 +4411,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(casing="upper")` - Preview data: ```csv -"Value" -"2" + ``` #### `domain-string-alphanumeric-arg-exclude` @@ -5012,8 +4419,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"N" + ``` #### `domain-string-alphanumeric-pair-length-casing` @@ -5021,8 +4427,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(length=4, casing="upper")` - Preview data: ```csv -"Value" -"IF7H" + ``` #### `domain-string-alphanumeric-pair-casing-exclude` @@ -5030,8 +4435,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(casing="upper", exclude=["A", "B"])` - Preview data: ```csv -"Value" -"I" + ``` #### `domain-string-binary-base` @@ -5039,8 +4443,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary()` - Preview data: ```csv -"Value" -"0b1" + ``` #### `domain-string-binary-arg-length` @@ -5048,8 +4451,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(length=4)` - Preview data: ```csv -"Value" -"0b0001" + ``` #### `domain-string-binary-arg-prefix` @@ -5057,8 +4459,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(prefix="#")` - Preview data: ```csv -"Value" -"#1" + ``` #### `domain-string-binary-pair-length-prefix` @@ -5066,8 +4467,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#0001" + ``` #### `domain-string-counterString-base` @@ -5075,48 +4475,39 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(1, 25, "*")` - Preview data: ```csv -"Value" -"2*4*6*8*11*" + ``` #### `domain-string-counterString-example-1` - Command(s): `string.counterString()` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"2*4*" + ``` #### `domain-string-counterString-example-2` - Command(s): `string.counterString(15)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"*3*5*7*9*12*15*" + ``` #### `domain-string-counterString-example-3` - Command(s): `string.counterString(min=5, max=12)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"2*4*6*" + ``` #### `domain-string-counterString-example-4` - Command(s): `string.counterString(min=12, max=12, delimiter="#")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"#3#5#7#9#12#" + ``` #### `domain-string-counterString-arg-min` @@ -5124,8 +4515,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(min=5)` - Preview data: ```csv -"Value" -"*3*5*" + ``` #### `domain-string-counterString-arg-max` @@ -5133,8 +4523,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(max=12)` - Preview data: ```csv -"Value" -"2*4*6*8*" + ``` #### `domain-string-counterString-arg-delimiter` @@ -5142,8 +4531,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(delimiter="#")` - Preview data: ```csv -"Value" -"2#4#6#8#11#14#17#" + ``` #### `domain-string-counterString-pair-min-max` @@ -5151,8 +4539,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(min=5, max=12)` - Preview data: ```csv -"Value" -"*3*5*" + ``` #### `domain-string-counterString-pair-max-delimiter` @@ -5160,38 +4547,31 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(max=12, delimiter="#")` - Preview data: ```csv -"Value" -"#3#5#7#" + ``` #### `domain-string-fromCharacters-base` - Command(s): `string.fromCharacters("ABC123", 4)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"A3C3" + ``` #### `domain-string-fromCharacters-example-1` - Command(s): `string.fromCharacters("ABC123", 6)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"C1A22B" + ``` #### `domain-string-fromCharacters-example-2` - Command(s): `string.fromCharacters(characters=["A", "B", "C"], length=4)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"CBAB" + ``` #### `domain-string-fromCharacters-arg-characters` @@ -5199,8 +4579,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123")` - Preview data: ```csv -"Value" -"B" + ``` #### `domain-string-fromCharacters-arg-length` @@ -5208,8 +4587,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123", length=4)` - Preview data: ```csv -"Value" -"2221" + ``` #### `domain-string-fromCharacters-pair-characters-length` @@ -5217,8 +4595,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123", length=4)` - Preview data: ```csv -"Value" -"2CBB" + ``` #### `domain-string-hexadecimal-base` @@ -5226,8 +4603,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal()` - Preview data: ```csv -"Value" -"0xC" + ``` #### `domain-string-hexadecimal-arg-casing` @@ -5235,8 +4611,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(casing="upper")` - Preview data: ```csv -"Value" -"0x8" + ``` #### `domain-string-hexadecimal-arg-length` @@ -5244,8 +4619,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(length=4)` - Preview data: ```csv -"Value" -"0xbAbc" + ``` #### `domain-string-hexadecimal-arg-prefix` @@ -5253,8 +4627,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(prefix="#")` - Preview data: ```csv -"Value" -"#E" + ``` #### `domain-string-hexadecimal-pair-casing-length` @@ -5262,8 +4635,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(casing="upper", length=4)` - Preview data: ```csv -"Value" -"0x8E8E" + ``` #### `domain-string-hexadecimal-pair-length-prefix` @@ -5271,8 +4643,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#ffef" + ``` #### `domain-string-nanoid-base` @@ -5280,8 +4651,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.nanoid()` - Preview data: ```csv -"Value" -"NdoP5wwyLFTWcdq-2JUPT" + ``` #### `domain-string-nanoid-arg-length` @@ -5289,8 +4659,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.nanoid(length=4)` - Preview data: ```csv -"Value" -"emm-" + ``` #### `domain-string-numeric-base` @@ -5298,8 +4667,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric()` - Preview data: ```csv -"Value" -"8" + ``` #### `domain-string-numeric-arg-length` @@ -5307,8 +4675,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(length=4)` - Preview data: ```csv -"Value" -"2920" + ``` #### `domain-string-numeric-arg-allowLeadingZeros` @@ -5316,8 +4683,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(allowLeadingZeros=true)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-string-numeric-arg-exclude` @@ -5325,8 +4691,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-string-numeric-pair-length-allowLeadingZeros` @@ -5334,8 +4699,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(length=4, allowLeadingZeros=true)` - Preview data: ```csv -"Value" -"8990" + ``` #### `domain-string-numeric-pair-allowLeadingZeros-exclude` @@ -5343,8 +4707,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(allowLeadingZeros=true, exclude=["A", "B"])` - Preview data: ```csv -"Value" -"6" + ``` #### `domain-string-octal-base` @@ -5352,8 +4715,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal()` - Preview data: ```csv -"Value" -"0o3" + ``` #### `domain-string-octal-arg-length` @@ -5361,8 +4723,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(length=4)` - Preview data: ```csv -"Value" -"0o5416" + ``` #### `domain-string-octal-arg-prefix` @@ -5370,8 +4731,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(prefix="#")` - Preview data: ```csv -"Value" -"#6" + ``` #### `domain-string-octal-pair-length-prefix` @@ -5379,8 +4739,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#2612" + ``` #### `domain-string-sample-base` @@ -5388,8 +4747,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.sample()` - Preview data: ```csv -"Value" -"#>'" + ``` #### `domain-string-ulid-base` @@ -5424,8 +4779,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.ulid()` - Preview data: ```csv -"Value" -"01KVATTXNN4MY648F8XPVTRQE9" + ``` #### `domain-string-ulid-arg-refDate` @@ -5433,8 +4787,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.ulid(refDate=2)` - Preview data: ```csv -"Value" -"00000000022P5BDQJ90BT5VFMX" + ``` #### `domain-string-uuid-base` @@ -5442,8 +4795,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.uuid()` - Preview data: ```csv -"Value" -"5188d2de-3f7b-4998-a61f-cb3e78b71bb8" + ``` #### `domain-system-commonFileExt-base` @@ -5451,8 +4803,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileExt()` - Preview data: ```csv -"Value" -"mpg" + ``` #### `domain-system-commonFileName-base` @@ -5460,8 +4811,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileName()` - Preview data: ```csv -"Value" -"because.html" + ``` #### `domain-system-commonFileName-arg-extension` @@ -5469,8 +4819,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileName(extension="system-commonFileName-extension")` - Preview data: ```csv -"Value" -"brush_oh.system-commonFileName-extension" + ``` #### `domain-system-commonFileType-base` @@ -5478,8 +4827,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileType()` - Preview data: ```csv -"Value" -"text" + ``` #### `domain-system-cron-base` @@ -5487,8 +4835,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron()` - Preview data: ```csv -"Value" -"* * * 8 ?" + ``` #### `domain-system-cron-arg-includeNonStandard` @@ -5496,8 +4843,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeNonStandard=true)` - Preview data: ```csv -"Value" -"22 6 14 7 1" + ``` #### `domain-system-cron-arg-includeYear` @@ -5505,8 +4851,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeYear=true)` - Preview data: ```csv -"Value" -"* 1 ? 9 5 *" + ``` #### `domain-system-cron-pair-includeNonStandard-includeYear` @@ -5514,8 +4859,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeNonStandard=true, includeYear=true)` - Preview data: ```csv -"Value" -"@hourly" + ``` #### `domain-system-directoryPath-base` @@ -5523,8 +4867,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.directoryPath()` - Preview data: ```csv -"Value" -"/bin" + ``` #### `domain-system-fileExt-base` @@ -5532,8 +4875,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileExt()` - Preview data: ```csv -"Value" -"war" + ``` #### `domain-system-fileExt-arg-mimeType` @@ -5541,8 +4883,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileExt(mimeType="system-fileExt-mimeType")` - Preview data: ```csv -"Value" -"epub" + ``` #### `domain-system-fileName-base` @@ -5550,8 +4891,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileName()` - Preview data: ```csv -"Value" -"finally.otf" + ``` #### `domain-system-filePath-base` @@ -5559,8 +4899,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.filePath()` - Preview data: ```csv -"Value" -"/home/user/bah.epub" + ``` #### `domain-system-fileType-base` @@ -5568,8 +4907,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileType()` - Preview data: ```csv -"Value" -"application" + ``` #### `domain-system-mimeType-base` @@ -5577,8 +4915,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.mimeType()` - Preview data: ```csv -"Value" -"image/gif" + ``` #### `domain-system-networkInterface-base` @@ -5586,8 +4923,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.networkInterface()` - Preview data: ```csv -"Value" -"ens0d1" + ``` #### `domain-system-semver-base` @@ -5595,8 +4931,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.semver()` - Preview data: ```csv -"Value" -"6.20.15" + ``` #### `domain-vehicle-bicycle-base` @@ -5604,8 +4939,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.bicycle()` - Preview data: ```csv -"Value" -"Hybrid Bicycle" + ``` #### `domain-vehicle-color-base` @@ -5613,8 +4947,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.color()` - Preview data: ```csv -"Value" -"fuchsia" + ``` #### `domain-vehicle-fuel-base` @@ -5622,8 +4955,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.fuel()` - Preview data: ```csv -"Value" -"Electric" + ``` #### `domain-vehicle-manufacturer-base` @@ -5631,8 +4963,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.manufacturer()` - Preview data: ```csv -"Value" -"Chrysler" + ``` #### `domain-vehicle-model-base` @@ -5640,8 +4971,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.model()` - Preview data: ```csv -"Value" -"CTS" + ``` #### `domain-vehicle-type-base` @@ -5649,8 +4979,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.type()` - Preview data: ```csv -"Value" -"Convertible" + ``` #### `domain-vehicle-vehicle-base` @@ -5658,8 +4987,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vehicle()` - Preview data: ```csv -"Value" -"Smart Alpine" + ``` #### `domain-vehicle-vin-base` @@ -5667,8 +4995,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vin()` - Preview data: ```csv -"Value" -"928JZDANRWG098654" + ``` #### `domain-vehicle-vrm-base` @@ -5676,8 +5003,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vrm()` - Preview data: ```csv -"Value" -"RN16HVP" + ``` #### `domain-word-adjective-base` @@ -5685,8 +5011,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective()` - Preview data: ```csv -"Value" -"moist" + ``` #### `domain-word-adjective-arg-length` @@ -5694,8 +5019,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(length=4)` - Preview data: ```csv -"Value" -"zany" + ``` #### `domain-word-adjective-arg-max` @@ -5703,8 +5027,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(max=3)` - Preview data: ```csv -"Value" -"distorted" + ``` #### `domain-word-adjective-arg-strategy` @@ -5712,8 +5035,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(strategy="word-adjective-strategy")` - Preview data: ```csv -"Value" -"illiterate" + ``` #### `domain-word-adjective-pair-length-max` @@ -5721,8 +5043,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(length=4, max=3)` - Preview data: ```csv -"Value" -"live" + ``` #### `domain-word-adjective-pair-max-strategy` @@ -5730,8 +5051,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(max=3, strategy="word-adjective-strategy")` - Preview data: ```csv -"Value" -"blue" + ``` #### `domain-word-adverb-base` @@ -5739,8 +5059,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb()` - Preview data: ```csv -"Value" -"certainly" + ``` #### `domain-word-adverb-arg-length` @@ -5748,8 +5067,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(length=4)` - Preview data: ```csv -"Value" -"very" + ``` #### `domain-word-adverb-arg-max` @@ -5757,8 +5075,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(max=3)` - Preview data: ```csv -"Value" -"swiftly" + ``` #### `domain-word-adverb-arg-strategy` @@ -5766,8 +5083,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(strategy="word-adverb-strategy")` - Preview data: ```csv -"Value" -"voluntarily" + ``` #### `domain-word-adverb-pair-length-max` @@ -5775,8 +5091,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(length=4, max=3)` - Preview data: ```csv -"Value" -"fast" + ``` #### `domain-word-adverb-pair-max-strategy` @@ -5784,8 +5099,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(max=3, strategy="word-adverb-strategy")` - Preview data: ```csv -"Value" -"majestically" + ``` #### `domain-word-conjunction-base` @@ -5793,8 +5107,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction()` - Preview data: ```csv -"Value" -"why" + ``` #### `domain-word-conjunction-arg-length` @@ -5802,8 +5115,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(length=4)` - Preview data: ```csv -"Value" -"what" + ``` #### `domain-word-conjunction-arg-max` @@ -5811,8 +5123,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(max=3)` - Preview data: ```csv -"Value" -"whoever" + ``` #### `domain-word-conjunction-arg-strategy` @@ -5820,8 +5131,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(strategy="word-conjunction-strategy")` - Preview data: ```csv -"Value" -"inasmuch" + ``` #### `domain-word-conjunction-pair-length-max` @@ -5829,8 +5139,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(length=4, max=3)` - Preview data: ```csv -"Value" -"once" + ``` #### `domain-word-conjunction-pair-max-strategy` @@ -5838,8 +5147,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(max=3, strategy="word-conjunction-strategy")` - Preview data: ```csv -"Value" -"for" + ``` #### `domain-word-interjection-base` @@ -5847,8 +5155,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection()` - Preview data: ```csv -"Value" -"blah" + ``` #### `domain-word-interjection-arg-length` @@ -5856,8 +5163,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(length=4)` - Preview data: ```csv -"Value" -"gosh" + ``` #### `domain-word-interjection-arg-max` @@ -5865,8 +5171,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(max=3)` - Preview data: ```csv -"Value" -"ah" + ``` #### `domain-word-interjection-arg-strategy` @@ -5874,8 +5179,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(strategy="word-interjection-strategy")` - Preview data: ```csv -"Value" -"er" + ``` #### `domain-word-interjection-pair-length-max` @@ -5883,8 +5187,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(length=4, max=3)` - Preview data: ```csv -"Value" -"pish" + ``` #### `domain-word-interjection-pair-max-strategy` @@ -5892,8 +5195,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(max=3, strategy="word-interjection-strategy")` - Preview data: ```csv -"Value" -"whoa" + ``` #### `domain-word-noun-base` @@ -5901,8 +5203,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun()` - Preview data: ```csv -"Value" -"foodstuffs" + ``` #### `domain-word-noun-arg-length` @@ -5910,8 +5211,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(length=4)` - Preview data: ```csv -"Value" -"coal" + ``` #### `domain-word-noun-arg-max` @@ -5919,8 +5219,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(max=3)` - Preview data: ```csv -"Value" -"backbone" + ``` #### `domain-word-noun-arg-strategy` @@ -5928,8 +5227,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(strategy="word-noun-strategy")` - Preview data: ```csv -"Value" -"meander" + ``` #### `domain-word-noun-pair-length-max` @@ -5937,8 +5235,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(length=4, max=3)` - Preview data: ```csv -"Value" -"king" + ``` #### `domain-word-noun-pair-max-strategy` @@ -5946,8 +5243,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(max=3, strategy="word-noun-strategy")` - Preview data: ```csv -"Value" -"numeric" + ``` #### `domain-word-preposition-base` @@ -5955,8 +5251,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition()` - Preview data: ```csv -"Value" -"times" + ``` #### `domain-word-preposition-arg-length` @@ -5964,8 +5259,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(length=4)` - Preview data: ```csv -"Value" -"with" + ``` #### `domain-word-preposition-arg-max` @@ -5973,8 +5267,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(max=3)` - Preview data: ```csv -"Value" -"a" + ``` #### `domain-word-preposition-arg-strategy` @@ -5982,8 +5275,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(strategy="word-preposition-strategy")` - Preview data: ```csv -"Value" -"than" + ``` #### `domain-word-preposition-pair-length-max` @@ -5991,8 +5283,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(length=4, max=3)` - Preview data: ```csv -"Value" -"plus" + ``` #### `domain-word-preposition-pair-max-strategy` @@ -6000,8 +5291,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(max=3, strategy="word-preposition-strategy")` - Preview data: ```csv -"Value" -"near" + ``` #### `domain-word-sample-base` @@ -6009,8 +5299,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample()` - Preview data: ```csv -"Value" -"microchip" + ``` #### `domain-word-sample-arg-length` @@ -6018,8 +5307,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(length=4)` - Preview data: ```csv -"Value" -"when" + ``` #### `domain-word-sample-arg-max` @@ -6027,8 +5315,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(max=3)` - Preview data: ```csv -"Value" -"aha" + ``` #### `domain-word-sample-arg-strategy` @@ -6036,8 +5323,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(strategy="word-sample-strategy")` - Preview data: ```csv -"Value" -"ew" + ``` #### `domain-word-sample-pair-length-max` @@ -6045,8 +5331,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(length=4, max=3)` - Preview data: ```csv -"Value" -"lamp" + ``` #### `domain-word-sample-pair-max-strategy` @@ -6054,8 +5339,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(max=3, strategy="word-sample-strategy")` - Preview data: ```csv -"Value" -"an" + ``` #### `domain-word-verb-base` @@ -6063,8 +5347,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb()` - Preview data: ```csv -"Value" -"federate" + ``` #### `domain-word-verb-arg-length` @@ -6072,8 +5355,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(length=4)` - Preview data: ```csv -"Value" -"pant" + ``` #### `domain-word-verb-arg-max` @@ -6081,8 +5363,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(max=3)` - Preview data: ```csv -"Value" -"braid" + ``` #### `domain-word-verb-arg-strategy` @@ -6090,8 +5371,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(strategy="word-verb-strategy")` - Preview data: ```csv -"Value" -"prance" + ``` #### `domain-word-verb-pair-length-max` @@ -6099,8 +5379,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(length=4, max=3)` - Preview data: ```csv -"Value" -"come" + ``` #### `domain-word-verb-pair-max-strategy` @@ -6108,8 +5387,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(max=3, strategy="word-verb-strategy")` - Preview data: ```csv -"Value" -"pant" + ``` #### `domain-word-words-base` @@ -6117,8 +5395,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words()` - Preview data: ```csv -"Value" -"mutate ack" + ``` #### `domain-word-words-arg-count` @@ -6126,8 +5403,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(count=2)` - Preview data: ```csv -"Value" -"instead conservative" + ``` #### `domain-word-words-arg-max` @@ -6135,8 +5411,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(max=3)` - Preview data: ```csv -"Value" -"yahoo" + ``` #### `domain-word-words-pair-count-max` @@ -6144,8 +5419,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(count=2, max=3)` - Preview data: ```csv -"Value" -"brr whoever" + ``` @@ -6172,7 +5446,7 @@ Non-executable scenario count: **0** | --- | ---: | | `arg` | 217 | | `base` | 254 | -| `custom` | 6 | +| `custom` | 3 | | `empty` | 2 | | `example` | 31 | | `pair` | 123 | @@ -6460,96 +5734,66 @@ Non-executable scenario count: **0** #### `custom-enum-base` - Command(s): `enum(active,inactive,pending)` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"pending" + ``` #### `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 -"Status","Priority" -"inactive","medium" -"inactive","low" -``` -- Pairwise preview data: -```csv -"Status","Priority" -"active","high" -"active","medium" -"active","low" -"inactive","high" -"inactive","medium" -"inactive","low" -"pending","high" -"pending","medium" -"pending","low" + ``` #### `custom-literal-base` - Command(s): `literal("Pending")` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"Pending" + ``` #### `custom-literal-empty` - Command(s): `literal("")` -- UI preview parity: `exact` - Preview data: ```csv -"Status" -"" + ``` #### `custom-regex-base` - Command(s): `regex("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Code" -"VC23" + ``` #### `custom-regex-empty` - Command(s): `regex("")` -- UI preview parity: `exact` - Preview data: ```csv -"Code" -"" + ``` #### `faker-helpers-arrayElement-base` - Command(s): `helpers.arrayElement(["A", "B"])` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"B" + ``` #### `faker-helpers-arrayElement-example-1` - Command(s): `helpers.arrayElement(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"A" + ``` #### `faker-helpers-arrayElement-arg-array` @@ -6557,28 +5801,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.arrayElement(["A", "B"])` - Preview data: ```csv -"Value" -"B" + ``` #### `faker-helpers-arrayElements-base` - Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-arrayElements-example-1` - Command(s): `helpers.arrayElements(["A", "B", "C"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-arrayElements-arg-array` @@ -6586,8 +5825,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.arrayElements(["A", "B"])` - Preview data: ```csv -"Value" -"[""B""]" + ``` #### `faker-helpers-arrayElements-arg-count` @@ -6595,8 +5833,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.arrayElements(["A", "B"], 2)` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-arrayElements-pair-array-count` @@ -6604,28 +5841,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.arrayElements(["A", "B"], 2)` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-fake-base` - Command(s): `helpers.fake("{{person.firstName}}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"Douglas" + ``` #### `faker-helpers-fake-example-1` - Command(s): `helpers.fake("Hi, my name is {{person.firstName}} {{person.lastName}}!")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"Hi, my name is Rhonda Wyman!" + ``` #### `faker-helpers-fake-arg-pattern` @@ -6633,28 +5865,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.fake("[A-Z]{2}")` - Preview data: ```csv -"Value" -"[A-Z]{2}" + ``` #### `faker-helpers-fromRegExp-base` - Command(s): `helpers.fromRegExp("[A-Z]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"BJ" + ``` #### `faker-helpers-fromRegExp-example-1` - Command(s): `helpers.fromRegExp("[A-Z]{2}[0-9]{2}")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"PU71" + ``` #### `faker-helpers-fromRegExp-arg-pattern` @@ -6662,28 +5889,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.fromRegExp("[A-Z]{2}")` - Preview data: ```csv -"Value" -"XA" + ``` #### `faker-helpers-mustache-base` - Command(s): `helpers.mustache("{{name}}", { name: "Ada" })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Ada" + ``` #### `faker-helpers-mustache-example-1` - Command(s): `helpers.mustache("Hello {{name}}", { name: "Ada" })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Hello Ada" + ``` #### `faker-helpers-mustache-arg-text` @@ -6691,8 +5913,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.mustache("{{name}}")` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-mustache-arg-data` @@ -6700,8 +5921,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.mustache("{{name}}", {})` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-mustache-pair-text-data` @@ -6709,28 +5929,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.mustache("{{name}}", {})` - Preview data: ```csv -"Value" -"{{name}}" + ``` #### `faker-helpers-rangeToNumber-base` - Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"1" + ``` #### `faker-helpers-rangeToNumber-example-1` - Command(s): `helpers.rangeToNumber({ min: 1, max: 2 })` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"2" + ``` #### `faker-helpers-rangeToNumber-arg-numberOrRange` @@ -6738,8 +5953,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.rangeToNumber(2)` - Preview data: ```csv -"Value" -"2" + ``` #### `faker-helpers-replaceCreditCardSymbols-base` @@ -6747,18 +5961,15 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceCreditCardSymbols()` - Preview data: ```csv -"Value" -"6453-3460-3761-5138-2959" + ``` #### `faker-helpers-replaceCreditCardSymbols-example-1` - Command(s): `helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"1234-5-4775-8" + ``` #### `faker-helpers-replaceCreditCardSymbols-arg-string` @@ -6766,8 +5977,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceCreditCardSymbols-arg-symbol` @@ -6775,8 +5985,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceCreditCardSymbols-pair-string-symbol` @@ -6784,8 +5993,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceCreditCardSymbols("helpers-replaceCreditCardSymbols-string", "helpers-replaceCreditCardSymbols-symbol")` - Preview data: ```csv -"Value" -"helpers-replaceCreditCardSymbols-string" + ``` #### `faker-helpers-replaceSymbols-base` @@ -6793,18 +6001,15 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceSymbols()` - Preview data: ```csv -"Value" -"" + ``` #### `faker-helpers-replaceSymbols-example-1` - Command(s): `helpers.replaceSymbols("##??-##")` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"47UI-39" + ``` #### `faker-helpers-replaceSymbols-arg-string` @@ -6812,28 +6017,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.replaceSymbols("helpers-replaceSymbols-string")` - Preview data: ```csv -"Value" -"helpers-replaceSymbols-string" + ``` #### `faker-helpers-shuffle-base` - Command(s): `helpers.shuffle(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A"",""C""]" + ``` #### `faker-helpers-shuffle-example-1` - Command(s): `helpers.shuffle(["A", "B", "C"])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""B"",""A"",""C""]" + ``` #### `faker-helpers-shuffle-arg-array` @@ -6841,8 +6041,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.shuffle(["A", "B"])` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-slugify-base` @@ -6850,18 +6049,15 @@ Non-executable scenario count: **0** - Command(s): `helpers.slugify()` - Preview data: ```csv -"Value" -"" + ``` #### `faker-helpers-slugify-example-1` - Command(s): `helpers.slugify("Hello World 2026")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Hello-World-2026" + ``` #### `faker-helpers-slugify-arg-string` @@ -6869,28 +6065,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.slugify("helpers-slugify-string")` - Preview data: ```csv -"Value" -"helpers-slugify-string" + ``` #### `faker-helpers-uniqueArray-base` - Command(s): `helpers.uniqueArray(["A", "B"], 4)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-uniqueArray-example-1` - Command(s): `helpers.uniqueArray(["red", "green", "blue"], 2)` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""blue"",""green""]" + ``` #### `faker-helpers-uniqueArray-arg-source` @@ -6898,8 +6089,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.uniqueArray(["A", "B"])` - Preview data: ```csv -"Value" -"[]" + ``` #### `faker-helpers-uniqueArray-arg-length` @@ -6907,8 +6097,7 @@ Non-executable scenario count: **0** - Command(s): `helpers.uniqueArray(["A", "B"], 4)` - Preview data: ```csv -"Value" -"[""B"",""A""]" + ``` #### `faker-helpers-uniqueArray-pair-source-length` @@ -6916,28 +6105,23 @@ Non-executable scenario count: **0** - Command(s): `helpers.uniqueArray(["A", "B"], 4)` - Preview data: ```csv -"Value" -"[""A"",""B""]" + ``` #### `faker-helpers-weightedArrayElement-base` - Command(s): `helpers.weightedArrayElement([{ "weight": 1, "value": "A" }, { "weight": 2, "value": "B" }])` -- UI preview parity: `structural` - Preview data: ```csv -"Value" -"A" + ``` #### `faker-helpers-weightedArrayElement-example-1` - Command(s): `helpers.weightedArrayElement([{ weight: 5, value: "sunny" }, { weight: 1, value: "rainy" }])` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"sunny" + ``` #### `domain-airline-aircraftType-base` @@ -6945,8 +6129,7 @@ Non-executable scenario count: **0** - Command(s): `airline.aircraftType()` - Preview data: ```csv -"Value" -"widebody" + ``` #### `domain-airline-flightNumber-base` @@ -6954,8 +6137,7 @@ Non-executable scenario count: **0** - Command(s): `airline.flightNumber()` - Preview data: ```csv -"Value" -"54" + ``` #### `domain-airline-iataCode-base` @@ -6963,8 +6145,7 @@ Non-executable scenario count: **0** - Command(s): `airline.iataCode()` - Preview data: ```csv -"Value" -"VS" + ``` #### `domain-airline-name-base` @@ -6972,8 +6153,7 @@ Non-executable scenario count: **0** - Command(s): `airline.name()` - Preview data: ```csv -"Value" -"Juneyao Airlines" + ``` #### `domain-airline-recordLocator-base` @@ -6981,8 +6161,7 @@ Non-executable scenario count: **0** - Command(s): `airline.recordLocator()` - Preview data: ```csv -"Value" -"QYNEDR" + ``` #### `domain-airline-seat-base` @@ -6990,28 +6169,23 @@ Non-executable scenario count: **0** - Command(s): `airline.seat()` - Preview data: ```csv -"Value" -"29B" + ``` #### `domain-airline-seat-example-1` - Command(s): `airline.seat()` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"32C" + ``` #### `domain-airline-seat-example-2` - Command(s): `airline.seat(aircraftType="widebody")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"55J" + ``` #### `domain-airline-seat-arg-aircraftType` @@ -7019,8 +6193,7 @@ Non-executable scenario count: **0** - Command(s): `airline.seat(aircraftType="widebody")` - Preview data: ```csv -"Value" -"3A" + ``` #### `domain-airplane-iataTypeCode-base` @@ -7028,8 +6201,7 @@ Non-executable scenario count: **0** - Command(s): `airplane.iataTypeCode()` - Preview data: ```csv -"Value" -"345" + ``` #### `domain-airplane-name-base` @@ -7037,8 +6209,7 @@ Non-executable scenario count: **0** - Command(s): `airplane.name()` - Preview data: ```csv -"Value" -"Boeing 747-400" + ``` #### `domain-airport-iataCode-base` @@ -7046,8 +6217,7 @@ Non-executable scenario count: **0** - Command(s): `airport.iataCode()` - Preview data: ```csv -"Value" -"MEX" + ``` #### `domain-airport-name-base` @@ -7055,8 +6225,7 @@ Non-executable scenario count: **0** - Command(s): `airport.name()` - Preview data: ```csv -"Value" -"Hobart International Airport" + ``` #### `domain-animal-bear-base` @@ -7064,8 +6233,7 @@ Non-executable scenario count: **0** - Command(s): `animal.bear()` - Preview data: ```csv -"Value" -"American black bear" + ``` #### `domain-animal-bird-base` @@ -7073,8 +6241,7 @@ Non-executable scenario count: **0** - Command(s): `animal.bird()` - Preview data: ```csv -"Value" -"Red-footed Booby" + ``` #### `domain-animal-cat-base` @@ -7082,8 +6249,7 @@ Non-executable scenario count: **0** - Command(s): `animal.cat()` - Preview data: ```csv -"Value" -"Ojos Azules" + ``` #### `domain-animal-cetacean-base` @@ -7091,8 +6257,7 @@ Non-executable scenario count: **0** - Command(s): `animal.cetacean()` - Preview data: ```csv -"Value" -"Blue Whale" + ``` #### `domain-animal-cow-base` @@ -7100,8 +6265,7 @@ Non-executable scenario count: **0** - Command(s): `animal.cow()` - Preview data: ```csv -"Value" -"Mandalong Special" + ``` #### `domain-animal-crocodilia-base` @@ -7109,8 +6273,7 @@ Non-executable scenario count: **0** - Command(s): `animal.crocodilia()` - Preview data: ```csv -"Value" -"Cuban Crocodile" + ``` #### `domain-animal-dog-base` @@ -7118,8 +6281,7 @@ Non-executable scenario count: **0** - Command(s): `animal.dog()` - Preview data: ```csv -"Value" -"Yakutian Laika" + ``` #### `domain-animal-fish-base` @@ -7127,8 +6289,7 @@ Non-executable scenario count: **0** - Command(s): `animal.fish()` - Preview data: ```csv -"Value" -"Jumbo flying squid" + ``` #### `domain-animal-horse-base` @@ -7136,8 +6297,7 @@ Non-executable scenario count: **0** - Command(s): `animal.horse()` - Preview data: ```csv -"Value" -"Trait Du Nord" + ``` #### `domain-animal-insect-base` @@ -7145,8 +6305,7 @@ Non-executable scenario count: **0** - Command(s): `animal.insect()` - Preview data: ```csv -"Value" -"False honey ant" + ``` #### `domain-animal-lion-base` @@ -7154,8 +6313,7 @@ Non-executable scenario count: **0** - Command(s): `animal.lion()` - Preview data: ```csv -"Value" -"Cape lion" + ``` #### `domain-animal-petName-base` @@ -7163,8 +6321,7 @@ Non-executable scenario count: **0** - Command(s): `animal.petName()` - Preview data: ```csv -"Value" -"Bandit" + ``` #### `domain-animal-rabbit-base` @@ -7172,8 +6329,7 @@ Non-executable scenario count: **0** - Command(s): `animal.rabbit()` - Preview data: ```csv -"Value" -"Silver" + ``` #### `domain-animal-rodent-base` @@ -7181,8 +6337,7 @@ Non-executable scenario count: **0** - Command(s): `animal.rodent()` - Preview data: ```csv -"Value" -"Bonetto's tuco-tuco" + ``` #### `domain-animal-snake-base` @@ -7190,8 +6345,7 @@ Non-executable scenario count: **0** - Command(s): `animal.snake()` - Preview data: ```csv -"Value" -"White-lipped keelback" + ``` #### `domain-animal-type-base` @@ -7199,8 +6353,7 @@ Non-executable scenario count: **0** - Command(s): `animal.type()` - Preview data: ```csv -"Value" -"elephant" + ``` #### `domain-autoIncrement-sequence-base` @@ -7208,8 +6361,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(1, 5, "filename", ".txt", 3)` - Preview data: ```csv -"Value" -"filename001.txt" + ``` #### `domain-autoIncrement-sequence-example-1` @@ -7217,8 +6369,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence()` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-autoIncrement-sequence-example-2` @@ -7226,8 +6377,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(start=10, step=5)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-example-3` @@ -7235,8 +6385,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(start=1, step=5, prefix="filename", suffix=".txt", zeropadding=3)` - Preview data: ```csv -"Value" -"filename001.txt" + ``` #### `domain-autoIncrement-sequence-arg-start` @@ -7244,8 +6393,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(start=10)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-arg-step` @@ -7253,8 +6401,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(step=5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-autoIncrement-sequence-arg-prefix` @@ -7262,8 +6409,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(prefix="filename")` - Preview data: ```csv -"Value" -"filename1" + ``` #### `domain-autoIncrement-sequence-arg-suffix` @@ -7271,8 +6417,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(suffix=".txt")` - Preview data: ```csv -"Value" -"1.txt" + ``` #### `domain-autoIncrement-sequence-arg-zeropadding` @@ -7280,8 +6425,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(zeropadding=3)` - Preview data: ```csv -"Value" -"001" + ``` #### `domain-autoIncrement-sequence-pair-start-step` @@ -7289,8 +6433,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(start=10, step=5)` - Preview data: ```csv -"Value" -"10" + ``` #### `domain-autoIncrement-sequence-pair-step-prefix` @@ -7298,8 +6441,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(step=5, prefix="filename")` - Preview data: ```csv -"Value" -"filename1" + ``` #### `domain-autoIncrement-sequence-pair-prefix-suffix` @@ -7307,8 +6449,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(prefix="filename", suffix=".txt")` - Preview data: ```csv -"Value" -"filename1.txt" + ``` #### `domain-autoIncrement-sequence-pair-suffix-zeropadding` @@ -7316,8 +6457,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.sequence(suffix=".txt", zeropadding=3)` - Preview data: ```csv -"Value" -"001.txt" + ``` #### `domain-autoIncrement-timestamp-base` @@ -7325,8 +6465,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp()` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-example-1` @@ -7334,8 +6473,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp()` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-example-2` @@ -7343,8 +6481,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(start="20/03/1969", step=1, type="days")` - Preview data: ```csv -"Value" -"1969-03-20T12:00:00Z" + ``` #### `domain-autoIncrement-timestamp-example-3` @@ -7352,8 +6489,7 @@ Non-executable scenario count: **0** - 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 -"Value" -"2026-06-12 11:39:23" + ``` #### `domain-autoIncrement-timestamp-arg-start` @@ -7361,8 +6497,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z")` - Preview data: ```csv -"Value" -"2026-06-12T12:39:23Z" + ``` #### `domain-autoIncrement-timestamp-arg-step` @@ -7370,8 +6505,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(step=1)` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-type` @@ -7379,8 +6513,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(type="seconds")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-outputFormat` @@ -7388,8 +6521,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(outputFormat="iso8601")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-arg-inputFormat` @@ -7397,8 +6529,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(inputFormat="dd/MM/yyyy")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-start-step` @@ -7406,8 +6537,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(start="2026-06-12T12:39:23Z", step=1)` - Preview data: ```csv -"Value" -"2026-06-12T12:39:23Z" + ``` #### `domain-autoIncrement-timestamp-pair-step-type` @@ -7415,8 +6545,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(step=1, type="seconds")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-type-outputFormat` @@ -7424,8 +6553,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(type="seconds", outputFormat="iso8601")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-autoIncrement-timestamp-pair-outputFormat-inputFormat` @@ -7433,8 +6561,7 @@ Non-executable scenario count: **0** - Command(s): `autoIncrement.timestamp(outputFormat="iso8601", inputFormat="dd/MM/yyyy")` - Preview data: ```csv -"Value" -"2026-06-17T13:02:55Z" + ``` #### `domain-book-author-base` @@ -7442,8 +6569,7 @@ Non-executable scenario count: **0** - Command(s): `book.author()` - Preview data: ```csv -"Value" -"Hermann Broch" + ``` #### `domain-book-format-base` @@ -7451,8 +6577,7 @@ Non-executable scenario count: **0** - Command(s): `book.format()` - Preview data: ```csv -"Value" -"Ebook" + ``` #### `domain-book-genre-base` @@ -7460,8 +6585,7 @@ Non-executable scenario count: **0** - Command(s): `book.genre()` - Preview data: ```csv -"Value" -"Philosophy" + ``` #### `domain-book-publisher-base` @@ -7469,8 +6593,7 @@ Non-executable scenario count: **0** - Command(s): `book.publisher()` - Preview data: ```csv -"Value" -"Hodder & Stoughton" + ``` #### `domain-book-series-base` @@ -7478,8 +6601,7 @@ Non-executable scenario count: **0** - Command(s): `book.series()` - Preview data: ```csv -"Value" -"Colonel Race" + ``` #### `domain-book-title-base` @@ -7487,8 +6609,7 @@ Non-executable scenario count: **0** - Command(s): `book.title()` - Preview data: ```csv -"Value" -"The Sound and the Fury" + ``` #### `domain-chemicalElement-atomicNumber-base` @@ -7496,8 +6617,7 @@ Non-executable scenario count: **0** - Command(s): `chemicalElement.atomicNumber()` - Preview data: ```csv -"Value" -"9" + ``` #### `domain-chemicalElement-name-base` @@ -7505,8 +6625,7 @@ Non-executable scenario count: **0** - Command(s): `chemicalElement.name()` - Preview data: ```csv -"Value" -"Meitnerium" + ``` #### `domain-chemicalElement-symbol-base` @@ -7514,8 +6633,7 @@ Non-executable scenario count: **0** - Command(s): `chemicalElement.symbol()` - Preview data: ```csv -"Value" -"Lv" + ``` #### `domain-color-cssSupportedFunction-base` @@ -7523,8 +6641,7 @@ Non-executable scenario count: **0** - Command(s): `color.cssSupportedFunction()` - Preview data: ```csv -"Value" -"hwb" + ``` #### `domain-color-cssSupportedSpace-base` @@ -7532,8 +6649,7 @@ Non-executable scenario count: **0** - Command(s): `color.cssSupportedSpace()` - Preview data: ```csv -"Value" -"sRGB" + ``` #### `domain-color-human-base` @@ -7541,8 +6657,7 @@ Non-executable scenario count: **0** - Command(s): `color.human()` - Preview data: ```csv -"Value" -"turquoise" + ``` #### `domain-color-rgb-base` @@ -7550,8 +6665,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb()` - Preview data: ```csv -"Value" -"#bce97e" + ``` #### `domain-color-rgb-arg-casing` @@ -7559,8 +6673,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(casing="upper")` - Preview data: ```csv -"Value" -"#BCBFC4" + ``` #### `domain-color-rgb-arg-format` @@ -7568,8 +6681,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(format="hex")` - Preview data: ```csv -"Value" -"#9be19f" + ``` #### `domain-color-rgb-arg-includeAlpha` @@ -7577,8 +6689,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(includeAlpha=true)` - Preview data: ```csv -"Value" -"#71d66e8f" + ``` #### `domain-color-rgb-arg-prefix` @@ -7586,8 +6697,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(prefix="#")` - Preview data: ```csv -"Value" -"#dceba6" + ``` #### `domain-color-rgb-pair-casing-format` @@ -7595,8 +6705,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(casing="upper", format="hex")` - Preview data: ```csv -"Value" -"#F948CC" + ``` #### `domain-color-rgb-pair-format-includeAlpha` @@ -7604,8 +6713,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(format="hex", includeAlpha=true)` - Preview data: ```csv -"Value" -"#bd037ce9" + ``` #### `domain-color-rgb-pair-includeAlpha-prefix` @@ -7613,8 +6721,7 @@ Non-executable scenario count: **0** - Command(s): `color.rgb(includeAlpha=true, prefix="#")` - Preview data: ```csv -"Value" -"#d95bfefc" + ``` #### `domain-color-space-base` @@ -7622,8 +6729,7 @@ Non-executable scenario count: **0** - Command(s): `color.space()` - Preview data: ```csv -"Value" -"CIEUVW" + ``` #### `domain-commerce-department-base` @@ -7631,8 +6737,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.department()` - Preview data: ```csv -"Value" -"Home" + ``` #### `domain-commerce-isbn-base` @@ -7640,8 +6745,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.isbn()` - Preview data: ```csv -"Value" -"978-0-276-38715-9" + ``` #### `domain-commerce-isbn-arg-separator` @@ -7649,8 +6753,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.isbn(separator="-")` - Preview data: ```csv -"Value" -"978-1-01-952776-4" + ``` #### `domain-commerce-isbn-arg-variant` @@ -7658,8 +6761,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.isbn(variant="13")` - Preview data: ```csv -"Value" -"978-0-9939513-5-0" + ``` #### `domain-commerce-isbn-pair-separator-variant` @@ -7667,8 +6769,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.isbn(separator="-", variant="13")` - Preview data: ```csv -"Value" -"978-1-63392-157-3" + ``` #### `domain-commerce-price-base` @@ -7676,18 +6777,15 @@ Non-executable scenario count: **0** - Command(s): `commerce.price()` - Preview data: ```csv -"Value" -"557.85" + ``` #### `domain-commerce-price-example-1` - Command(s): `commerce.price(dec=2, max=10, min=1, symbol="$")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"$3.69" + ``` #### `domain-commerce-price-arg-dec` @@ -7695,8 +6793,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(dec=2)` - Preview data: ```csv -"Value" -"489.39" + ``` #### `domain-commerce-price-arg-max` @@ -7704,8 +6801,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(max=100)` - Preview data: ```csv -"Value" -"11.69" + ``` #### `domain-commerce-price-arg-min` @@ -7713,8 +6809,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(min=1)` - Preview data: ```csv -"Value" -"624.89" + ``` #### `domain-commerce-price-arg-symbol` @@ -7722,8 +6817,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(symbol="$")` - Preview data: ```csv -"Value" -"$408.79" + ``` #### `domain-commerce-price-pair-dec-max` @@ -7731,8 +6825,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(dec=2, max=100)` - Preview data: ```csv -"Value" -"80.09" + ``` #### `domain-commerce-price-pair-max-min` @@ -7740,8 +6833,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(max=100, min=1)` - Preview data: ```csv -"Value" -"65.60" + ``` #### `domain-commerce-price-pair-min-symbol` @@ -7749,8 +6841,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.price(min=1, symbol="$")` - Preview data: ```csv -"Value" -"$80.15" + ``` #### `domain-commerce-product-base` @@ -7758,8 +6849,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.product()` - Preview data: ```csv -"Value" -"Salad" + ``` #### `domain-commerce-productAdjective-base` @@ -7767,8 +6857,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.productAdjective()` - Preview data: ```csv -"Value" -"Rustic" + ``` #### `domain-commerce-productDescription-base` @@ -7776,8 +6865,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.productDescription()` - Preview data: ```csv -"Value" -"Discover the inconsequential new Gloves with an exciting mix of Cotton ingredients" + ``` #### `domain-commerce-productMaterial-base` @@ -7785,8 +6873,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.productMaterial()` - Preview data: ```csv -"Value" -"Silk" + ``` #### `domain-commerce-productName-base` @@ -7794,8 +6881,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.productName()` - Preview data: ```csv -"Value" -"Practical Aluminum Shirt" + ``` #### `domain-commerce-upc-base` @@ -7803,8 +6889,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.upc()` - Preview data: ```csv -"Value" -"930326813865" + ``` #### `domain-commerce-upc-arg-prefix` @@ -7812,8 +6897,7 @@ Non-executable scenario count: **0** - Command(s): `commerce.upc(prefix="01234")` - Preview data: ```csv -"Value" -"012345065699" + ``` #### `domain-company-buzzAdjective-base` @@ -7821,8 +6905,7 @@ Non-executable scenario count: **0** - Command(s): `company.buzzAdjective()` - Preview data: ```csv -"Value" -"B2B" + ``` #### `domain-company-buzzNoun-base` @@ -7830,8 +6913,7 @@ Non-executable scenario count: **0** - Command(s): `company.buzzNoun()` - Preview data: ```csv -"Value" -"schemas" + ``` #### `domain-company-buzzPhrase-base` @@ -7839,8 +6921,7 @@ Non-executable scenario count: **0** - Command(s): `company.buzzPhrase()` - Preview data: ```csv -"Value" -"engineer scalable smart contracts" + ``` #### `domain-company-buzzVerb-base` @@ -7848,8 +6929,7 @@ Non-executable scenario count: **0** - Command(s): `company.buzzVerb()` - Preview data: ```csv -"Value" -"expedite" + ``` #### `domain-company-catchPhrase-base` @@ -7857,8 +6937,7 @@ Non-executable scenario count: **0** - Command(s): `company.catchPhrase()` - Preview data: ```csv -"Value" -"Synchronised fault-tolerant service-desk" + ``` #### `domain-company-catchPhraseAdjective-base` @@ -7866,8 +6945,7 @@ Non-executable scenario count: **0** - Command(s): `company.catchPhraseAdjective()` - Preview data: ```csv -"Value" -"Diverse" + ``` #### `domain-company-catchPhraseDescriptor-base` @@ -7875,8 +6953,7 @@ Non-executable scenario count: **0** - Command(s): `company.catchPhraseDescriptor()` - Preview data: ```csv -"Value" -"zero trust" + ``` #### `domain-company-catchPhraseNoun-base` @@ -7884,8 +6961,7 @@ Non-executable scenario count: **0** - Command(s): `company.catchPhraseNoun()` - Preview data: ```csv -"Value" -"hardware" + ``` #### `domain-company-name-base` @@ -7893,8 +6969,7 @@ Non-executable scenario count: **0** - Command(s): `company.name()` - Preview data: ```csv -"Value" -"Roob, Schmidt and Jacobi-Lind" + ``` #### `domain-database-collation-base` @@ -7902,8 +6977,7 @@ Non-executable scenario count: **0** - Command(s): `database.collation()` - Preview data: ```csv -"Value" -"utf8_bin" + ``` #### `domain-database-column-base` @@ -7911,8 +6985,7 @@ Non-executable scenario count: **0** - Command(s): `database.column()` - Preview data: ```csv -"Value" -"updatedAt" + ``` #### `domain-database-engine-base` @@ -7920,8 +6993,7 @@ Non-executable scenario count: **0** - Command(s): `database.engine()` - Preview data: ```csv -"Value" -"MyISAM" + ``` #### `domain-database-mongodbObjectId-base` @@ -7929,8 +7001,7 @@ Non-executable scenario count: **0** - Command(s): `database.mongodbObjectId()` - Preview data: ```csv -"Value" -"d62d29cffe9912ddfddddb58" + ``` #### `domain-database-type-base` @@ -7938,8 +7009,7 @@ Non-executable scenario count: **0** - Command(s): `database.type()` - Preview data: ```csv -"Value" -"point" + ``` #### `domain-datatype-boolean-base` @@ -7947,8 +7017,7 @@ Non-executable scenario count: **0** - Command(s): `datatype.boolean()` - Preview data: ```csv -"Value" -"false" + ``` #### `domain-datatype-boolean-arg-probability` @@ -7956,8 +7025,7 @@ Non-executable scenario count: **0** - Command(s): `datatype.boolean(probability=2)` - Preview data: ```csv -"Value" -"true" + ``` #### `domain-datatype-enum-base` @@ -7965,8 +7033,7 @@ Non-executable scenario count: **0** - Command(s): `datatype.enum("active", "inactive", "pending")` - Preview data: ```csv -"Value" -"active" + ``` #### `domain-datatype-enum-arg-values` @@ -7974,8 +7041,7 @@ Non-executable scenario count: **0** - Command(s): `datatype.enum(values="datatype-enum-values")` - Preview data: ```csv -"Value" -"values=datatype-enum-values" + ``` #### `domain-date-anytime-base` @@ -7983,8 +7049,7 @@ Non-executable scenario count: **0** - Command(s): `date.anytime()` - Preview data: ```csv -"Value" -"2026-06-26T22:01:03.744Z" + ``` #### `domain-date-anytime-arg-refDate` @@ -7992,8 +7057,7 @@ Non-executable scenario count: **0** - Command(s): `date.anytime(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-09-21T21:46:38.236Z" + ``` #### `domain-date-between-base` @@ -8001,8 +7065,7 @@ Non-executable scenario count: **0** - Command(s): `date.between(1577836800000, 1609372800000)` - Preview data: ```csv -"Value" -"2020-07-25T19:48:55.233Z" + ``` #### `domain-date-between-arg-from` @@ -8010,8 +7073,7 @@ Non-executable scenario count: **0** - Command(s): `date.between(from=1577836800000, to=1609372800000)` - Preview data: ```csv -"Value" -"2020-08-02T19:17:11.407Z" + ``` #### `domain-date-between-arg-to` @@ -8019,8 +7081,7 @@ Non-executable scenario count: **0** - Command(s): `date.between(to=1609372800000, from=1577836800000)` - Preview data: ```csv -"Value" -"2020-07-28T01:45:25.825Z" + ``` #### `domain-date-between-pair-from-to` @@ -8028,8 +7089,7 @@ Non-executable scenario count: **0** - Command(s): `date.between(from=1577836800000, to=1609372800000)` - Preview data: ```csv -"Value" -"2020-04-01T08:35:52.015Z" + ``` #### `domain-date-birthdate-base` @@ -8037,18 +7097,15 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate()` - Preview data: ```csv -"Value" -"1957-08-21T21:56:15.746Z" + ``` #### `domain-date-birthdate-example-1` - Command(s): `date.birthdate(refDate=20000, max=69, min=16, mode="age")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"1920-10-04T17:22:24.125Z" + ``` #### `domain-date-birthdate-arg-refDate` @@ -8056,8 +7113,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(refDate=1577836800000, min=18, max=65, mode="age")` - Preview data: ```csv -"Value" -"1986-12-14T21:23:27.338Z" + ``` #### `domain-date-birthdate-arg-max` @@ -8065,8 +7121,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1979-07-10T02:03:04.191Z" + ``` #### `domain-date-birthdate-arg-min` @@ -8074,8 +7129,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(min=18, max=65, mode="age")` - Preview data: ```csv -"Value" -"1970-09-04T17:26:31.684Z" + ``` #### `domain-date-birthdate-arg-mode` @@ -8083,8 +7137,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(mode="age", min=18, max=65)` - Preview data: ```csv -"Value" -"1989-12-17T04:53:43.105Z" + ``` #### `domain-date-birthdate-pair-refDate-max` @@ -8092,8 +7145,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(refDate=1577836800000, max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1973-08-07T06:26:36.179Z" + ``` #### `domain-date-birthdate-pair-max-min` @@ -8101,8 +7153,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(max=65, min=18, mode="age")` - Preview data: ```csv -"Value" -"1979-10-28T20:25:33.935Z" + ``` #### `domain-date-birthdate-pair-min-mode` @@ -8110,8 +7161,7 @@ Non-executable scenario count: **0** - Command(s): `date.birthdate(min=18, mode="age", max=65)` - Preview data: ```csv -"Value" -"1970-04-22T23:09:05.686Z" + ``` #### `domain-date-future-base` @@ -8119,8 +7169,7 @@ Non-executable scenario count: **0** - Command(s): `date.future()` - Preview data: ```csv -"Value" -"2026-10-02T08:25:12.488Z" + ``` #### `domain-date-future-arg-refDate` @@ -8128,8 +7177,7 @@ Non-executable scenario count: **0** - Command(s): `date.future(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-10T14:38:46.292Z" + ``` #### `domain-date-future-arg-years` @@ -8137,8 +7185,7 @@ Non-executable scenario count: **0** - Command(s): `date.future(years=2)` - Preview data: ```csv -"Value" -"2027-12-15T03:08:22.793Z" + ``` #### `domain-date-future-pair-refDate-years` @@ -8146,8 +7193,7 @@ Non-executable scenario count: **0** - Command(s): `date.future(refDate=1577836800000, years=2)` - Preview data: ```csv -"Value" -"2021-08-02T04:49:51.903Z" + ``` #### `domain-date-month-base` @@ -8155,8 +7201,7 @@ Non-executable scenario count: **0** - Command(s): `date.month()` - Preview data: ```csv -"Value" -"August" + ``` #### `domain-date-month-arg-abbreviated` @@ -8164,8 +7209,7 @@ Non-executable scenario count: **0** - Command(s): `date.month(abbreviated=true)` - Preview data: ```csv -"Value" -"Jun" + ``` #### `domain-date-month-arg-context` @@ -8173,8 +7217,7 @@ Non-executable scenario count: **0** - Command(s): `date.month(context=true)` - Preview data: ```csv -"Value" -"August" + ``` #### `domain-date-month-pair-abbreviated-context` @@ -8182,8 +7225,7 @@ Non-executable scenario count: **0** - Command(s): `date.month(abbreviated=true, context=true)` - Preview data: ```csv -"Value" -"Jul" + ``` #### `domain-date-past-base` @@ -8191,8 +7233,7 @@ Non-executable scenario count: **0** - Command(s): `date.past()` - Preview data: ```csv -"Value" -"2026-01-15T06:04:10.661Z" + ``` #### `domain-date-past-arg-refDate` @@ -8200,8 +7241,7 @@ Non-executable scenario count: **0** - Command(s): `date.past(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-08-27T00:03:49.125Z" + ``` #### `domain-date-past-arg-years` @@ -8209,8 +7249,7 @@ Non-executable scenario count: **0** - Command(s): `date.past(years=2)` - Preview data: ```csv -"Value" -"2025-06-19T19:04:04.055Z" + ``` #### `domain-date-past-pair-refDate-years` @@ -8218,8 +7257,7 @@ Non-executable scenario count: **0** - Command(s): `date.past(refDate=1577836800000, years=2)` - Preview data: ```csv -"Value" -"2019-05-16T08:15:04.782Z" + ``` #### `domain-date-recent-base` @@ -8227,8 +7265,7 @@ Non-executable scenario count: **0** - Command(s): `date.recent()` - Preview data: ```csv -"Value" -"2026-06-17T12:53:25.549Z" + ``` #### `domain-date-recent-arg-days` @@ -8236,8 +7273,7 @@ Non-executable scenario count: **0** - Command(s): `date.recent(days=7)` - Preview data: ```csv -"Value" -"2026-06-15T18:41:28.219Z" + ``` #### `domain-date-recent-arg-refDate` @@ -8245,8 +7281,7 @@ Non-executable scenario count: **0** - Command(s): `date.recent(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-12-31T17:33:19.970Z" + ``` #### `domain-date-recent-pair-days-refDate` @@ -8254,8 +7289,7 @@ Non-executable scenario count: **0** - Command(s): `date.recent(days=7, refDate=1577836800000)` - Preview data: ```csv -"Value" -"2019-12-31T16:09:08.524Z" + ``` #### `domain-date-soon-base` @@ -8263,8 +7297,7 @@ Non-executable scenario count: **0** - Command(s): `date.soon()` - Preview data: ```csv -"Value" -"2026-06-17T14:54:08.311Z" + ``` #### `domain-date-soon-arg-days` @@ -8272,8 +7305,7 @@ Non-executable scenario count: **0** - Command(s): `date.soon(days=7)` - Preview data: ```csv -"Value" -"2026-06-19T07:21:56.539Z" + ``` #### `domain-date-soon-arg-refDate` @@ -8281,8 +7313,7 @@ Non-executable scenario count: **0** - Command(s): `date.soon(refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-01T14:00:11.275Z" + ``` #### `domain-date-soon-pair-days-refDate` @@ -8290,8 +7321,7 @@ Non-executable scenario count: **0** - Command(s): `date.soon(days=7, refDate=1577836800000)` - Preview data: ```csv -"Value" -"2020-01-05T05:26:41.692Z" + ``` #### `domain-date-timeZone-base` @@ -8299,8 +7329,7 @@ Non-executable scenario count: **0** - Command(s): `date.timeZone()` - Preview data: ```csv -"Value" -"Africa/Blantyre" + ``` #### `domain-date-weekday-base` @@ -8308,8 +7337,7 @@ Non-executable scenario count: **0** - Command(s): `date.weekday()` - Preview data: ```csv -"Value" -"Sunday" + ``` #### `domain-date-weekday-arg-abbreviated` @@ -8317,8 +7345,7 @@ Non-executable scenario count: **0** - Command(s): `date.weekday(abbreviated=true)` - Preview data: ```csv -"Value" -"Fri" + ``` #### `domain-date-weekday-arg-context` @@ -8326,8 +7353,7 @@ Non-executable scenario count: **0** - Command(s): `date.weekday(context=true)` - Preview data: ```csv -"Value" -"Sunday" + ``` #### `domain-date-weekday-pair-abbreviated-context` @@ -8335,8 +7361,7 @@ Non-executable scenario count: **0** - Command(s): `date.weekday(abbreviated=true, context=true)` - Preview data: ```csv -"Value" -"Wed" + ``` #### `domain-finance-accountName-base` @@ -8344,8 +7369,7 @@ Non-executable scenario count: **0** - Command(s): `finance.accountName()` - Preview data: ```csv -"Value" -"Credit Card Account" + ``` #### `domain-finance-accountNumber-base` @@ -8353,8 +7377,7 @@ Non-executable scenario count: **0** - Command(s): `finance.accountNumber()` - Preview data: ```csv -"Value" -"12741818" + ``` #### `domain-finance-accountNumber-arg-length` @@ -8362,8 +7385,7 @@ Non-executable scenario count: **0** - Command(s): `finance.accountNumber(length=4)` - Preview data: ```csv -"Value" -"0626" + ``` #### `domain-finance-amount-base` @@ -8371,8 +7393,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount()` - Preview data: ```csv -"Value" -"98.23" + ``` #### `domain-finance-amount-arg-autoFormat` @@ -8380,8 +7401,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(autoFormat=true)` - Preview data: ```csv -"Value" -"243.58" + ``` #### `domain-finance-amount-arg-dec` @@ -8389,8 +7409,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(dec=2)` - Preview data: ```csv -"Value" -"180.47" + ``` #### `domain-finance-amount-arg-max` @@ -8398,8 +7417,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(max=100)` - Preview data: ```csv -"Value" -"98.06" + ``` #### `domain-finance-amount-arg-min` @@ -8407,8 +7425,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(min=1)` - Preview data: ```csv -"Value" -"745.17" + ``` #### `domain-finance-amount-arg-symbol` @@ -8416,8 +7433,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(symbol="$")` - Preview data: ```csv -"Value" -"$439.51" + ``` #### `domain-finance-amount-pair-autoFormat-dec` @@ -8425,8 +7441,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(autoFormat=true, dec=2)` - Preview data: ```csv -"Value" -"823.64" + ``` #### `domain-finance-amount-pair-dec-max` @@ -8434,8 +7449,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(dec=2, max=100)` - Preview data: ```csv -"Value" -"61.65" + ``` #### `domain-finance-amount-pair-max-min` @@ -8443,8 +7457,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(max=100, min=1)` - Preview data: ```csv -"Value" -"73.22" + ``` #### `domain-finance-amount-pair-min-symbol` @@ -8452,8 +7465,7 @@ Non-executable scenario count: **0** - Command(s): `finance.amount(min=1, symbol="$")` - Preview data: ```csv -"Value" -"$738.40" + ``` #### `domain-finance-bic-base` @@ -8461,8 +7473,7 @@ Non-executable scenario count: **0** - Command(s): `finance.bic()` - Preview data: ```csv -"Value" -"SCXGMW70" + ``` #### `domain-finance-bic-arg-includeBranchCode` @@ -8470,8 +7481,7 @@ Non-executable scenario count: **0** - Command(s): `finance.bic(includeBranchCode=true)` - Preview data: ```csv -"Value" -"TOZQSBL96NT" + ``` #### `domain-finance-bitcoinAddress-base` @@ -8479,8 +7489,7 @@ Non-executable scenario count: **0** - Command(s): `finance.bitcoinAddress()` - Preview data: ```csv -"Value" -"34fzp3Y8vj9LnQmtgNeraDGfkqT2rk" + ``` #### `domain-finance-creditCardCVV-base` @@ -8488,8 +7497,7 @@ Non-executable scenario count: **0** - Command(s): `finance.creditCardCVV()` - Preview data: ```csv -"Value" -"463" + ``` #### `domain-finance-creditCardIssuer-base` @@ -8497,8 +7505,7 @@ Non-executable scenario count: **0** - Command(s): `finance.creditCardIssuer()` - Preview data: ```csv -"Value" -"american_express" + ``` #### `domain-finance-creditCardNumber-base` @@ -8506,8 +7513,7 @@ Non-executable scenario count: **0** - Command(s): `finance.creditCardNumber()` - Preview data: ```csv -"Value" -"3529-6738-8179-4135" + ``` #### `domain-finance-creditCardNumber-arg-issuer` @@ -8515,8 +7521,7 @@ Non-executable scenario count: **0** - Command(s): `finance.creditCardNumber(issuer="finance-creditCardNumber-issuer")` - Preview data: ```csv -"Value" -"3044-612107-9965" + ``` #### `domain-finance-currencyCode-base` @@ -8524,8 +7529,7 @@ Non-executable scenario count: **0** - Command(s): `finance.currencyCode()` - Preview data: ```csv -"Value" -"LBP" + ``` #### `domain-finance-currencyName-base` @@ -8533,8 +7537,7 @@ Non-executable scenario count: **0** - Command(s): `finance.currencyName()` - Preview data: ```csv -"Value" -"Cedi" + ``` #### `domain-finance-currencyNumericCode-base` @@ -8542,8 +7545,7 @@ Non-executable scenario count: **0** - Command(s): `finance.currencyNumericCode()` - Preview data: ```csv -"Value" -"934" + ``` #### `domain-finance-currencySymbol-base` @@ -8551,8 +7553,7 @@ Non-executable scenario count: **0** - Command(s): `finance.currencySymbol()` - Preview data: ```csv -"Value" -"₴" + ``` #### `domain-finance-ethereumAddress-base` @@ -8560,8 +7561,7 @@ Non-executable scenario count: **0** - Command(s): `finance.ethereumAddress()` - Preview data: ```csv -"Value" -"0x05a9f11aa9ac6713b564dc821edb1cee4ea9bb33" + ``` #### `domain-finance-iban-base` @@ -8569,8 +7569,7 @@ Non-executable scenario count: **0** - Command(s): `finance.iban()` - Preview data: ```csv -"Value" -"LV80HNUZ1327310107987" + ``` #### `domain-finance-iban-arg-countryCode` @@ -8578,8 +7577,7 @@ Non-executable scenario count: **0** - Command(s): `finance.iban(countryCode="GB")` - Preview data: ```csv -"Value" -"GB93ZCOC36631779090042" + ``` #### `domain-finance-iban-arg-formatted` @@ -8587,8 +7585,7 @@ Non-executable scenario count: **0** - Command(s): `finance.iban(formatted=true)` - Preview data: ```csv -"Value" -"FI75 6537 4040 0859 87" + ``` #### `domain-finance-iban-pair-countryCode-formatted` @@ -8596,8 +7593,7 @@ Non-executable scenario count: **0** - Command(s): `finance.iban(countryCode="GB", formatted=true)` - Preview data: ```csv -"Value" -"GB63 QSMG 1465 6277 3690 20" + ``` #### `domain-finance-litecoinAddress-base` @@ -8605,8 +7601,7 @@ Non-executable scenario count: **0** - Command(s): `finance.litecoinAddress()` - Preview data: ```csv -"Value" -"387GmSW4s1E1t16xYaNCi9zgLtV5cDM" + ``` #### `domain-finance-pin-base` @@ -8614,8 +7609,7 @@ Non-executable scenario count: **0** - Command(s): `finance.pin()` - Preview data: ```csv -"Value" -"2035" + ``` #### `domain-finance-pin-arg-length` @@ -8623,8 +7617,7 @@ Non-executable scenario count: **0** - Command(s): `finance.pin(length=4)` - Preview data: ```csv -"Value" -"1155" + ``` #### `domain-finance-routingNumber-base` @@ -8632,8 +7625,7 @@ Non-executable scenario count: **0** - Command(s): `finance.routingNumber()` - Preview data: ```csv -"Value" -"960542158" + ``` #### `domain-finance-transactionDescription-base` @@ -8641,8 +7633,7 @@ Non-executable scenario count: **0** - Command(s): `finance.transactionDescription()` - Preview data: ```csv -"Value" -"payment processed at Parker Inc for CRC 202.96, using card ending ****7286. Account: ***4194." + ``` #### `domain-finance-transactionType-base` @@ -8650,8 +7641,7 @@ Non-executable scenario count: **0** - Command(s): `finance.transactionType()` - Preview data: ```csv -"Value" -"withdrawal" + ``` #### `domain-food-adjective-base` @@ -8659,8 +7649,7 @@ Non-executable scenario count: **0** - Command(s): `food.adjective()` - Preview data: ```csv -"Value" -"fluffy" + ``` #### `domain-food-description-base` @@ -8668,8 +7657,7 @@ Non-executable scenario count: **0** - Command(s): `food.description()` - Preview data: ```csv -"Value" -"A classic pie filled with delicious venison and crunchy purple rice, baked in a smoky pastry crust and topped with a golden-brown lattice." + ``` #### `domain-food-dish-base` @@ -8677,8 +7665,7 @@ Non-executable scenario count: **0** - Command(s): `food.dish()` - Preview data: ```csv -"Value" -"Peach And Tangelo Tart" + ``` #### `domain-food-ethnicCategory-base` @@ -8686,8 +7673,7 @@ Non-executable scenario count: **0** - Command(s): `food.ethnicCategory()` - Preview data: ```csv -"Value" -"Belarusian" + ``` #### `domain-food-fruit-base` @@ -8695,8 +7681,7 @@ Non-executable scenario count: **0** - Command(s): `food.fruit()` - Preview data: ```csv -"Value" -"grapefruit" + ``` #### `domain-food-ingredient-base` @@ -8704,8 +7689,7 @@ Non-executable scenario count: **0** - Command(s): `food.ingredient()` - Preview data: ```csv -"Value" -"bonza" + ``` #### `domain-food-meat-base` @@ -8713,8 +7697,7 @@ Non-executable scenario count: **0** - Command(s): `food.meat()` - Preview data: ```csv -"Value" -"crocodile" + ``` #### `domain-food-spice-base` @@ -8722,8 +7705,7 @@ Non-executable scenario count: **0** - Command(s): `food.spice()` - Preview data: ```csv -"Value" -"achiote seed" + ``` #### `domain-food-vegetable-base` @@ -8731,8 +7713,7 @@ Non-executable scenario count: **0** - Command(s): `food.vegetable()` - Preview data: ```csv -"Value" -"leeks" + ``` #### `domain-git-branch-base` @@ -8740,8 +7721,7 @@ Non-executable scenario count: **0** - Command(s): `git.branch()` - Preview data: ```csv -"Value" -"array-input" + ``` #### `domain-git-commitDate-base` @@ -8749,8 +7729,7 @@ Non-executable scenario count: **0** - Command(s): `git.commitDate()` - Preview data: ```csv -"Value" -"Tue Jun 16 13:51:13 2026 -0700" + ``` #### `domain-git-commitEntry-base` @@ -8758,13 +7737,7 @@ Non-executable scenario count: **0** - Command(s): `git.commitEntry()` - Preview data: ```csv -"Value" -"commit 7738bbde748c2e27e1520b9bf8bb637a48e2feaa -Author: Norberto.Robel36 -Date: Wed Jun 17 09:26:44 2026 +0900 -    transmit open-source application -" ``` #### `domain-git-commitMessage-base` @@ -8772,8 +7745,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `git.commitMessage()` - Preview data: ```csv -"Value" -"program multi-byte alarm" + ``` #### `domain-git-commitSha-base` @@ -8781,8 +7753,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `git.commitSha()` - Preview data: ```csv -"Value" -"aa5bda8d6f6a71fed1ccffd89a4ea33d4ec21e7e" + ``` #### `domain-hacker-abbreviation-base` @@ -8790,8 +7761,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.abbreviation()` - Preview data: ```csv -"Value" -"UDP" + ``` #### `domain-hacker-adjective-base` @@ -8799,8 +7769,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.adjective()` - Preview data: ```csv -"Value" -"solid state" + ``` #### `domain-hacker-ingverb-base` @@ -8808,8 +7777,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.ingverb()` - Preview data: ```csv -"Value" -"bypassing" + ``` #### `domain-hacker-noun-base` @@ -8817,8 +7785,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.noun()` - Preview data: ```csv -"Value" -"card" + ``` #### `domain-hacker-phrase-base` @@ -8826,8 +7793,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.phrase()` - Preview data: ```csv -"Value" -"connecting the array won't do anything, we need to bypass the 1080p IP capacitor!" + ``` #### `domain-hacker-verb-base` @@ -8835,8 +7801,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `hacker.verb()` - Preview data: ```csv -"Value" -"calculate" + ``` #### `domain-image-avatar-base` @@ -8844,8 +7809,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.avatar()` - Preview data: ```csv -"Value" -"https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/20.jpg" + ``` #### `domain-image-avatarGitHub-base` @@ -8853,8 +7817,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.avatarGitHub()` - Preview data: ```csv -"Value" -"https://avatars.githubusercontent.com/u/16590067" + ``` #### `domain-image-dataUri-base` @@ -8862,8 +7825,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.dataUri()` - Preview data: ```csv -"Value" -"data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22full%22%20width%3D%222476%22%20height%3D%223320%22%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22%23db2805%22%2F%3E%3Ctext%20x%3D%221238%22%20y%3D%221660%22%20font-size%3D%2220%22%20alignment-baseline%3D%22middle%22%20text-anchor%3D%22middle%22%20fill%3D%22white%22%3E2476x3320%3C%2Ftext%3E%3C%2Fsvg%3E" + ``` #### `domain-image-personPortrait-base` @@ -8871,8 +7833,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.personPortrait()` - Preview data: ```csv -"Value" -"https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/male/512/96.jpg" + ``` #### `domain-image-url-base` @@ -8880,8 +7841,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url()` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/rXzuqSX/3937/617" + ``` #### `domain-image-url-arg-height` @@ -8889,8 +7849,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(height=2)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/lDB434I/3193/2" + ``` #### `domain-image-url-arg-width` @@ -8898,8 +7857,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(width=3)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/V3UIYDPa/3/984" + ``` #### `domain-image-url-pair-height-width` @@ -8907,8 +7865,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.url(height=2, width=3)` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/N4LRBx/3/2" + ``` #### `domain-image-urlLoremFlickr-base` @@ -8916,8 +7873,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.urlLoremFlickr()` - Preview data: ```csv -"Value" -"https://loremflickr.com/3481/2017?lock=3236073595510946" + ``` #### `domain-image-urlPicsumPhotos-base` @@ -8925,8 +7881,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `image.urlPicsumPhotos()` - Preview data: ```csv -"Value" -"https://picsum.photos/seed/s9gojEHeQ/1634/3581?grayscale&blur=1" + ``` #### `domain-internet-displayName-base` @@ -8934,8 +7889,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.displayName()` - Preview data: ```csv -"Value" -"Jaylin5" + ``` #### `domain-internet-domainName-base` @@ -8943,8 +7897,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainName()` - Preview data: ```csv -"Value" -"french-tuber.org" + ``` #### `domain-internet-domainSuffix-base` @@ -8952,8 +7905,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainSuffix()` - Preview data: ```csv -"Value" -"name" + ``` #### `domain-internet-domainWord-base` @@ -8961,8 +7913,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.domainWord()` - Preview data: ```csv -"Value" -"pure-alb" + ``` #### `domain-internet-email-base` @@ -8970,8 +7921,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email()` - Preview data: ```csv -"Value" -"Hulda22@hotmail.com" + ``` #### `domain-internet-email-arg-allowSpecialCharacters` @@ -8979,8 +7929,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(allowSpecialCharacters=true)` - Preview data: ```csv -"Value" -"Adrienne_Mitchell56@yahoo.com" + ``` #### `domain-internet-email-arg-firstName` @@ -8988,8 +7937,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(firstName="Ada")` - Preview data: ```csv -"Value" -"Ada.Bednar49@gmail.com" + ``` #### `domain-internet-email-arg-lastName` @@ -8997,8 +7945,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(lastName="Lovelace")` - Preview data: ```csv -"Value" -"Mandy.Lovelace@hotmail.com" + ``` #### `domain-internet-email-arg-provider` @@ -9006,8 +7953,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(provider="example.com")` - Preview data: ```csv -"Value" -"Shany.Mertz@example.com" + ``` #### `domain-internet-email-pair-allowSpecialCharacters-firstName` @@ -9015,8 +7961,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(allowSpecialCharacters=true, firstName="Ada")` - Preview data: ```csv -"Value" -"Ada_Rau@yahoo.com" + ``` #### `domain-internet-email-pair-firstName-lastName` @@ -9024,8 +7969,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(firstName="Ada", lastName="Lovelace")` - Preview data: ```csv -"Value" -"Ada.Lovelace55@hotmail.com" + ``` #### `domain-internet-email-pair-lastName-provider` @@ -9033,8 +7977,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.email(lastName="Lovelace", provider="example.com")` - Preview data: ```csv -"Value" -"Nora_Lovelace@example.com" + ``` #### `domain-internet-emoji-base` @@ -9042,8 +7985,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.emoji()` - Preview data: ```csv -"Value" -"🏵️" + ``` #### `domain-internet-emoji-arg-types` @@ -9051,8 +7993,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.emoji(types=["food"])` - Preview data: ```csv -"Value" -"🍖" + ``` #### `domain-internet-exampleEmail-base` @@ -9060,8 +8001,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.exampleEmail()` - Preview data: ```csv -"Value" -"Amalia_Bednar@example.com" + ``` #### `domain-internet-httpMethod-base` @@ -9069,8 +8009,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.httpMethod()` - Preview data: ```csv -"Value" -"PATCH" + ``` #### `domain-internet-httpStatusCode-base` @@ -9078,8 +8017,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.httpStatusCode()` - Preview data: ```csv -"Value" -"401" + ``` #### `domain-internet-ip-base` @@ -9087,8 +8025,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ip()` - Preview data: ```csv -"Value" -"229.141.100.182" + ``` #### `domain-internet-ipv4-base` @@ -9096,8 +8033,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4()` - Preview data: ```csv -"Value" -"52.210.222.85" + ``` #### `domain-internet-ipv4-arg-cidrBlock` @@ -9105,8 +8041,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24")` - Preview data: ```csv -"Value" -"192.168.0.68" + ``` #### `domain-internet-ipv4-arg-network` @@ -9114,8 +8049,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(network="private-a")` - Preview data: ```csv -"Value" -"10.77.209.214" + ``` #### `domain-internet-ipv4-pair-cidrBlock-network` @@ -9123,8 +8057,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv4(cidrBlock="192.168.0.0/24", network="private-a")` - Preview data: ```csv -"Value" -"192.168.0.45" + ``` #### `domain-internet-ipv6-base` @@ -9132,8 +8065,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.ipv6()` - Preview data: ```csv -"Value" -"ff36:bc8e:3eea:4c8e:ac0b:50a2:fc4a:dbcf" + ``` #### `domain-internet-jwt-base` @@ -9141,8 +8073,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt()` - Preview data: ```csv -"Value" -"eyJhbGciOiJFUzM4NCIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2MTY1NDIsImV4cCI6MTc4MTY3MjYyMywibmJmIjoxNzc4NDA3NjI1LCJpc3MiOiJIb3dlIEdyb3VwIiwic3ViIjoiMzIwNjNhMTktMjk5MC00ZjVjLThhMzYtMWU2NmM1MmRkNGY0IiwiYXVkIjoiNjEwNWNkMTYtMjgwOC00YjdhLWEyZDYtNmM1M2Y3NGFiNWQ1IiwianRpIjoiYmNiMzdkNGQtOGFmMi00ZWQzLWJmNDItMGM4MGExNGMwNDFjIn0.GSLGF7hNjp6RghVgC2GZIDrfHAZBBIZ8WaqXFphTbyRPkIFKnEnnSToLoWkvDwsi" + ``` #### `domain-internet-jwt-arg-header` @@ -9150,8 +8081,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(header={})` - Preview data: ```csv -"Value" -"e30.eyJpYXQiOjE3ODE2MjYyNDksImV4cCI6MTc4MTY0ODcwMSwibmJmIjoxNzg3OTY5MDE3LCJpc3MiOiJSZWljaGVydCwgR3JhbnQgYW5kIFZvblJ1ZWRlbiIsInN1YiI6IjZlZTc3MWYwLTBlNzktNDY3MC04MDRlLWJmODU4ZmM5MmY3OSIsImF1ZCI6ImIzMGEyOThmLTJlMWUtNDQwZS04NWM5LTY1OTNhZDVkNzk2YyIsImp0aSI6IjdjMzY0ZjM2LThiYWUtNDQ3Yy1iNzUxLTE4OTgxYTkzMmQ0MyJ9.Hj4nBTF2jK53PylJjqBpYeMf9N0oMfTsbM6jKYhngnf0HuiaRiyjUW5TWkqAp5aj" + ``` #### `domain-internet-jwt-arg-payload` @@ -9159,8 +8089,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(payload={})` - Preview data: ```csv -"Value" -"eyJhbGciOiJFUzUxMiIsInR5cCI6IkpXVCJ9.e30.bzBMPPc25eqL3Wz5ty1xLOmqFcQ5UhbkK5Bz27pZJGMImquk9U1G93TTIT78S0Li" + ``` #### `domain-internet-jwt-arg-refDate` @@ -9168,8 +8097,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(refDate=4)` - Preview data: ```csv -"Value" -"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOi0xMTYxMCwiZXhwIjo2OTYyMSwibmJmIjozMTE3NTUyMywiaXNzIjoiTG93ZSwgV2F0c2ljYSBhbmQgV2l6YSIsInN1YiI6IjA0MzA0NmRiLWJlYTQtNDIwZi04NWY4LTk3ZjZhZDc2ZmJhMCIsImF1ZCI6ImJhMjFmNGVlLTRlZWQtNGJmMC1hNjA5LWExM2QzMGY0NDFlMSIsImp0aSI6IjhkNDJhYTMzLWUwNDYtNDliYy04YmZhLWNjZmNkYjNlNGU1ZiJ9.nPtnWynmGL3sA1GZzI2AzKj6Mj3LgvWpTuDw2z02aONYVFT1gwYoVsPPH4UrH0jN" + ``` #### `domain-internet-jwt-pair-header-payload` @@ -9177,8 +8105,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(header={}, payload={})` - Preview data: ```csv -"Value" -"e30.e30.O604I0hDV1mFaT0FXBy2U9vHZNugne9xahCoN7ydkh96jHDR36zV9TDxv6yQjGqM" + ``` #### `domain-internet-jwt-pair-payload-refDate` @@ -9186,8 +8113,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwt(payload={}, refDate=4)` - Preview data: ```csv -"Value" -"eyJhbGciOiJQUzUxMiIsInR5cCI6IkpXVCJ9.e30.cqMtfsjVRe4taxGy1S7uH1KOAlSBZSXQoKXttlGA5b8LcMBlMXhYYMZxt7ED45qV" + ``` #### `domain-internet-jwtAlgorithm-base` @@ -9195,8 +8121,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.jwtAlgorithm()` - Preview data: ```csv -"Value" -"PS256" + ``` #### `domain-internet-mac-base` @@ -9204,8 +8129,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.mac()` - Preview data: ```csv -"Value" -"45:11:8d:5b:a6:32" + ``` #### `domain-internet-mac-arg-separator` @@ -9213,8 +8137,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.mac(separator="-")` - Preview data: ```csv -"Value" -"c0-c3-a3-5e-ef-da" + ``` #### `domain-internet-password-base` @@ -9222,18 +8145,15 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password()` - Preview data: ```csv -"Value" -"TBoqXmfYfXk3I3A" + ``` #### `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 -"Value" -"#wMJJrPMVo" + ``` #### `domain-internet-password-arg-length` @@ -9241,8 +8161,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(length=12)` - Preview data: ```csv -"Value" -"hzyT0010JBYb" + ``` #### `domain-internet-password-arg-memorable` @@ -9250,8 +8169,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(memorable=true)` - Preview data: ```csv -"Value" -"zapeboqulewufuf" + ``` #### `domain-internet-password-arg-pattern` @@ -9259,8 +8177,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(pattern="[A-Z]")` - Preview data: ```csv -"Value" -"BVSNRUBNEAWUTJT" + ``` #### `domain-internet-password-arg-prefix` @@ -9268,8 +8185,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(prefix="#")` - Preview data: ```csv -"Value" -"#xxsm9CX1flFshv" + ``` #### `domain-internet-password-pair-length-memorable` @@ -9277,8 +8193,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(length=12, memorable=true)` - Preview data: ```csv -"Value" -"jecotucenedo" + ``` #### `domain-internet-password-pair-memorable-pattern` @@ -9286,8 +8201,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(memorable=true, pattern="[A-Z]")` - Preview data: ```csv -"Value" -"nomudolunexolec" + ``` #### `domain-internet-password-pair-pattern-prefix` @@ -9295,8 +8209,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.password(pattern="[A-Z]", prefix="#")` - Preview data: ```csv -"Value" -"#EXCEEXMTTHRSHT" + ``` #### `domain-internet-port-base` @@ -9304,8 +8217,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.port()` - Preview data: ```csv -"Value" -"63399" + ``` #### `domain-internet-protocol-base` @@ -9313,8 +8225,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.protocol()` - Preview data: ```csv -"Value" -"http" + ``` #### `domain-internet-url-base` @@ -9322,8 +8233,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url()` - Preview data: ```csv -"Value" -"https://grave-overheard.org" + ``` #### `domain-internet-url-arg-appendSlash` @@ -9331,8 +8241,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(appendSlash=true)` - Preview data: ```csv -"Value" -"https://pleasing-scrap.com/" + ``` #### `domain-internet-url-arg-protocol` @@ -9340,8 +8249,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(protocol="https")` - Preview data: ```csv -"Value" -"https://zealous-flat.net" + ``` #### `domain-internet-url-pair-appendSlash-protocol` @@ -9349,8 +8257,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.url(appendSlash=true, protocol="https")` - Preview data: ```csv -"Value" -"https://good-natured-hovel.info/" + ``` #### `domain-internet-userAgent-base` @@ -9358,8 +8265,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.userAgent()` - Preview data: ```csv -"Value" -"Googlebot/2.1 (+http://www.google.com/bot.html)" + ``` #### `domain-internet-username-base` @@ -9367,8 +8273,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username()` - Preview data: ```csv -"Value" -"Jeremiah.Shanahan" + ``` #### `domain-internet-username-arg-firstName` @@ -9376,8 +8281,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(firstName="Ada")` - Preview data: ```csv -"Value" -"Ada_Metz53" + ``` #### `domain-internet-username-arg-lastName` @@ -9385,8 +8289,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(lastName="Lovelace")` - Preview data: ```csv -"Value" -"Carla_Lovelace" + ``` #### `domain-internet-username-pair-firstName-lastName` @@ -9394,8 +8297,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `internet.username(firstName="Ada", lastName="Lovelace")` - Preview data: ```csv -"Value" -"Ada.Lovelace" + ``` #### `domain-literal-value-base` @@ -9403,28 +8305,23 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `literal.value()` - Preview data: ```csv -"Value" -"" + ``` #### `domain-literal-value-example-1` - Command(s): `literal.value("Pending")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"Pending" + ``` #### `domain-literal-value-example-2` - Command(s): `literal.value("")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"" + ``` #### `domain-literal-value-arg-value` @@ -9432,8 +8329,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `literal.value(value=true)` - Preview data: ```csv -"Value" -"true" + ``` #### `domain-location-buildingNumber-base` @@ -9441,8 +8337,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.buildingNumber()` - Preview data: ```csv -"Value" -"86561" + ``` #### `domain-location-cardinalDirection-base` @@ -9450,8 +8345,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.cardinalDirection()` - Preview data: ```csv -"Value" -"North" + ``` #### `domain-location-city-base` @@ -9459,8 +8353,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.city()` - Preview data: ```csv -"Value" -"Antelope" + ``` #### `domain-location-continent-base` @@ -9468,8 +8361,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.continent()` - Preview data: ```csv -"Value" -"Africa" + ``` #### `domain-location-country-base` @@ -9477,8 +8369,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.country()` - Preview data: ```csv -"Value" -"Eritrea" + ``` #### `domain-location-countryCode-base` @@ -9486,8 +8377,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.countryCode()` - Preview data: ```csv -"Value" -"GU" + ``` #### `domain-location-county-base` @@ -9495,8 +8385,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.county()` - Preview data: ```csv -"Value" -"Cumbria" + ``` #### `domain-location-direction-base` @@ -9504,8 +8393,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.direction()` - Preview data: ```csv -"Value" -"West" + ``` #### `domain-location-direction-arg-abbreviated` @@ -9513,8 +8401,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.direction(abbreviated=true)` - Preview data: ```csv -"Value" -"S" + ``` #### `domain-location-latitude-base` @@ -9522,8 +8409,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude()` - Preview data: ```csv -"Value" -"41.3757" + ``` #### `domain-location-latitude-arg-min` @@ -9531,8 +8417,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(min=1)` - Preview data: ```csv -"Value" -"12.2218" + ``` #### `domain-location-latitude-arg-max` @@ -9540,8 +8425,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(max=3)` - Preview data: ```csv -"Value" -"-85.9885" + ``` #### `domain-location-latitude-arg-precision` @@ -9549,8 +8433,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(precision=4)` - Preview data: ```csv -"Value" -"-16.2319" + ``` #### `domain-location-latitude-pair-min-max` @@ -9558,8 +8441,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(min=1, max=3)` - Preview data: ```csv -"Value" -"2.315" + ``` #### `domain-location-latitude-pair-max-precision` @@ -9567,8 +8449,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.latitude(max=3, precision=4)` - Preview data: ```csv -"Value" -"-52.1397" + ``` #### `domain-location-longitude-base` @@ -9576,8 +8457,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude()` - Preview data: ```csv -"Value" -"156.4157" + ``` #### `domain-location-longitude-arg-min` @@ -9585,8 +8465,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(min=1)` - Preview data: ```csv -"Value" -"26.1188" + ``` #### `domain-location-longitude-arg-max` @@ -9594,8 +8473,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(max=3)` - Preview data: ```csv -"Value" -"-68.5071" + ``` #### `domain-location-longitude-arg-precision` @@ -9603,8 +8481,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(precision=4)` - Preview data: ```csv -"Value" -"-52.7542" + ``` #### `domain-location-longitude-pair-min-max` @@ -9612,8 +8489,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(min=1, max=3)` - Preview data: ```csv -"Value" -"1.1204" + ``` #### `domain-location-longitude-pair-max-precision` @@ -9621,8 +8497,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.longitude(max=3, precision=4)` - Preview data: ```csv -"Value" -"-134.0996" + ``` #### `domain-location-ordinalDirection-base` @@ -9630,8 +8505,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.ordinalDirection()` - Preview data: ```csv -"Value" -"Southeast" + ``` #### `domain-location-secondaryAddress-base` @@ -9639,8 +8513,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.secondaryAddress()` - Preview data: ```csv -"Value" -"Apt. 818" + ``` #### `domain-location-state-base` @@ -9648,8 +8521,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.state()` - Preview data: ```csv -"Value" -"Michigan" + ``` #### `domain-location-state-arg-abbreviated` @@ -9657,8 +8529,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.state(abbreviated=true)` - Preview data: ```csv -"Value" -"WI" + ``` #### `domain-location-street-base` @@ -9666,8 +8537,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.street()` - Preview data: ```csv -"Value" -"Gerhold Creek" + ``` #### `domain-location-streetAddress-base` @@ -9675,8 +8545,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.streetAddress()` - Preview data: ```csv -"Value" -"428 Kunze-Johnston Trafficway" + ``` #### `domain-location-streetAddress-arg-useFullAddress` @@ -9684,8 +8553,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.streetAddress(useFullAddress=true)` - Preview data: ```csv -"Value" -"6267 Euclid Avenue Apt. 758" + ``` #### `domain-location-timeZone-base` @@ -9693,8 +8561,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.timeZone()` - Preview data: ```csv -"Value" -"America/North_Dakota/Beulah" + ``` #### `domain-location-zipCode-base` @@ -9702,8 +8569,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `location.zipCode()` - Preview data: ```csv -"Value" -"86088" + ``` #### `domain-lorem-lines-base` @@ -9711,12 +8577,7 @@ Date: Wed Jun 17 09:26:44 2026 +0900 - Command(s): `lorem.lines()` - Preview data: ```csv -"Value" -"Celo defetiscor magnam chirographum peccatus contigo solium aggredior truculenter. -Optio torqueo vinco. -Tamquam neque repellendus adamo talio valens. -Demonstro crebro circumvenio aggero. -Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." + ``` #### `domain-lorem-lines-arg-min` @@ -9724,8 +8585,7 @@ Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." - Command(s): `lorem.lines(min=1)` - Preview data: ```csv -"Value" -"Abutor viridis tripudio calculus totam venio blanditiis talio." + ``` #### `domain-lorem-lines-arg-max` @@ -9733,11 +8593,7 @@ Speciosus demulceo celebrer copiose cunabula caritas ambulo caveo unde." - Command(s): `lorem.lines(max=3)` - Preview data: ```csv -"Value" -"Voluptatem vinum balbus ago. -Audentia utrum tamdiu tersus minima desino uter. -Expedita ducimus numquam sint aegrus vox accommodo amplitudo. -Ager conor adipisci admiratio cicuta id ullus apto ara conitor." + ``` #### `domain-lorem-lines-arg-lineCount` @@ -9745,9 +8601,7 @@ Ager conor adipisci admiratio cicuta id ullus apto ara conitor." - Command(s): `lorem.lines(lineCount=2)` - Preview data: ```csv -"Value" -"Comparo celebrer capio. -Nesciunt ipsa acerbitas cilicium thalassinus inflammatio." + ``` #### `domain-lorem-lines-arg-lineCountMax` @@ -9755,12 +8609,7 @@ Nesciunt ipsa acerbitas cilicium thalassinus inflammatio." - Command(s): `lorem.lines(lineCountMax=2)` - Preview data: ```csv -"Value" -"Commodi civitas peccatus aestus ager nesciunt laboriosam quos. -Acidus ipsum spes nesciunt vulticulus. -Incidunt utor vito supplanto spes dens succurro uter vita. -Coma toties tribuo certe eius calco aperiam calco viridis tantillus. -Creta conforto usitas sol." + ``` #### `domain-lorem-lines-arg-lineCountMin` @@ -9768,12 +8617,7 @@ Creta conforto usitas sol." - Command(s): `lorem.lines(lineCountMin=1)` - Preview data: ```csv -"Value" -"Calculus valetudo adopto tergeo tyrannus quaerat. -Tergo non conturbo vitae eligendi compono patruus ascit adipiscor. -Vulticulus absum adamo caste cena repellat abbas coadunatio spiculum. -Thymum solutio tamisium viscus quo. -Sint ultra adsum vester tres tametsi." + ``` #### `domain-lorem-lines-pair-min-max` @@ -9781,8 +8625,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(min=1, max=3)` - Preview data: ```csv -"Value" -"Dolore vere conicio suggero demo." + ``` #### `domain-lorem-lines-pair-max-lineCount` @@ -9790,8 +8633,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(max=3, lineCount=2)` - Preview data: ```csv -"Value" -"Aperiam cervus perspiciatis dedico deputo combibo tutis vester quis vigilo." + ``` #### `domain-lorem-lines-pair-lineCount-lineCountMax` @@ -9799,8 +8641,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(lineCount=2, lineCountMax=2)` - Preview data: ```csv -"Value" -"Tres vacuus somnus asper allatus allatus." + ``` #### `domain-lorem-lines-pair-lineCountMax-lineCountMin` @@ -9808,9 +8649,7 @@ Sint ultra adsum vester tres tametsi." - Command(s): `lorem.lines(lineCountMax=2, lineCountMin=1)` - Preview data: ```csv -"Value" -"Nemo sophismata illo itaque. -Cernuus solutio sed comes degusto suscipio territo civitas." + ``` #### `domain-lorem-paragraph-base` @@ -9818,8 +8657,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph()` - Preview data: ```csv -"Value" -"Voluptate adopto arguo. Titulus summisse molestiae arx careo patior. Alveus conservo canto succedo demergo cupressus collum amplus cotidie autem." + ``` #### `domain-lorem-paragraph-arg-min` @@ -9827,8 +8665,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(min=1)` - Preview data: ```csv -"Value" -"Decerno theatrum crapula utroque crastinus demoror bis." + ``` #### `domain-lorem-paragraph-arg-max` @@ -9836,8 +8673,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(max=3)` - Preview data: ```csv -"Value" -"Vulnero deleniti vitae aspicio sapiente. Decumbo voluptate claustrum ascisco angustus thema synagoga. Ad conspergo adfectus casso allatus patior." + ``` #### `domain-lorem-paragraph-arg-sentenceCount` @@ -9845,8 +8681,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCount=4)` - Preview data: ```csv -"Value" -"Tergeo congregatio tolero. Trepide consuasor censura. Architecto aegrus creptio fugiat atqui delego." + ``` #### `domain-lorem-paragraph-arg-sentenceCountMax` @@ -9854,8 +8689,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMax=5)` - Preview data: ```csv -"Value" -"Amiculum ambulo depraedor clibanus quae tres coepi complectus creptio. Condico tonsor curatio aggero accusantium utrum demergo. Deripio creo trucido civis despecto." + ``` #### `domain-lorem-paragraph-arg-sentenceCountMin` @@ -9863,8 +8697,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMin=6)` - Preview data: ```csv -"Value" -"Alo quod argentum illo cattus decretum. Tenuis nemo conor campana bardus collum sint. Benevolentia sui sint tripudio conicio." + ``` #### `domain-lorem-paragraph-pair-min-max` @@ -9872,8 +8705,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(min=1, max=3)` - Preview data: ```csv -"Value" -"Labore labore torrens vesco tumultus attollo canto canonicus cupiditate." + ``` #### `domain-lorem-paragraph-pair-max-sentenceCount` @@ -9881,8 +8713,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(max=3, sentenceCount=4)` - Preview data: ```csv -"Value" -"Repellendus aperiam textilis claro volubilis voluptas sophismata veritas tibi umerus. Ultio deleniti voco audacia depulso astrum inflammatio vulnus. Occaecati tactus titulus vel communis." + ``` #### `domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax` @@ -9890,8 +8721,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCount=4, sentenceCountMax=5)` - Preview data: ```csv -"Value" -"Tandem victus repellendus varius distinctio cur varietas video. Totus occaecati bene est vacuus versus. Voluptate crustulum adhuc artificiose libero super aperte labore peior laborum." + ``` #### `domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin` @@ -9899,8 +8729,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraph(sentenceCountMax=5, sentenceCountMin=6)` - Preview data: ```csv -"Value" -"Quas tonsor ambulo tum. Ascit aggredior crepusculum quis constans articulus corona adiuvo. Thesis amita video solium ultra exercitationem." + ``` #### `domain-lorem-paragraphs-base` @@ -9908,10 +8737,7 @@ Cernuus solutio sed comes degusto suscipio territo civitas." - Command(s): `lorem.paragraphs()` - Preview data: ```csv -"Value" -"Tandem surgo ulterius defero aut veniam communis. Porro claro conturbo urbs aestivus cognomen advenio aureus sulum collum. Tertius apud bonus ara fugit totam tempora veritas. -Adduco congregatio crinis nam ascit tabernus cupiditate curo. Curso cohibeo nesciunt alioqui vilitas. Cubo aspicio abutor corporis tergiversatio tam adaugeo. -Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo rem." + ``` #### `domain-lorem-paragraphs-arg-min` @@ -9919,8 +8745,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(min=1)` - Preview data: ```csv -"Value" -"Arca deprimo confugo amplexus arcus vulnus vester titulus super suffoco. Cruentus debilito adulatio audacia vicinus pax attonbitus delicate cuius. Arbustum demens doloribus dolor." + ``` #### `domain-lorem-paragraphs-arg-max` @@ -9928,8 +8753,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(max=3)` - Preview data: ```csv -"Value" -"Cogo decet adflicto sumptus ut. Amo sustineo creta templum. Sapiente creator non decipio comes comminor aro aliquid curso.3Amplitudo et aliqua solitudo cruciamentum atque versus sustineo audacia credo. Alias decipio demens nemo speciosus absens ustilo vinco. Cetera impedit despecto apto.3Viriliter denuo thymbra curiositas vomito rerum canonicus amplitudo. Comprehendo bestia ambulo aranea adipiscor temperantia amaritudo culpo curia addo. Ex pax canonicus statua sperno adfero copia vulgaris videlicet." + ``` #### `domain-lorem-paragraphs-arg-paragraphCount` @@ -9937,10 +8761,7 @@ Defendo tergo spectaculum. Caries laborum spes solitudo aestivus. Curvo comparo - Command(s): `lorem.paragraphs(paragraphCount=4)` - Preview data: ```csv -"Value" -"Avaritia decor odio alienus aliquid confido delectus. Curriculum angelus cubo vulgaris crustulum vinco canonicus ventito. Patruus depulso venio addo. -Usitas ipsum comitatus accusator angulus tibi cubitum. Adicio debeo dedecor comitatus comminor aut succedo conor tandem. Cruciamentum tutamen tui angelus totidem deserunt decipio. -Cohors complectus chirographum aiunt bibo condico appono cornu censura. Consequuntur tres sponte caute. Colo ea nostrum vehemens alius molestias victus." + ``` #### `domain-lorem-paragraphs-arg-separator` @@ -9948,10 +8769,7 @@ Cohors complectus chirographum aiunt bibo condico appono cornu censura. Consequu - Command(s): `lorem.paragraphs(separator="-")` - Preview data: ```csv -"Value" -"Auxilium capto volva arca perspiciatis. Quod odio cum turpis ascisco culpa sed consequuntur cogo. Tracto ademptio quas sufficio decet tempora utrum. -Cuppedia aegrus defluo vociferor venia. Cresco odit contigo vinco pectus vinum vapulus. Victoria bestia claustrum decretum benevolentia soleo. -Patruus vorax cariosus laboriosam. Defleo vox textor desipio voluptas apostolus caelum. Claustrum cometes talio super placeat aut." + ``` #### `domain-lorem-paragraphs-arg-paragraphCountMax` @@ -9959,10 +8777,7 @@ Patruus vorax cariosus laboriosam. Defleo vox textor desipio voluptas apostolus - Command(s): `lorem.paragraphs(paragraphCountMax=6)` - Preview data: ```csv -"Value" -"Varius averto adeptio vestigium versus acerbitas peccatus fugit. Tam cunctatio crebro demitto corrumpo. Conicio vester utroque ascit ab unde quidem. -Tonsor adstringo sollers validus acceptus sumo vel totus vulariter. Assentator carbo amo suppellex crapula decor. Tenax defluo appono vix vulnero bos utpote. -Sophismata angustus alveus eveniet ventito. Theatrum somnus conduco sublime. Corrupti benigne uberrime aegrotatio cursus suscipit." + ``` #### `domain-lorem-paragraphs-arg-paragraphCountMin` @@ -9970,10 +8785,7 @@ Sophismata angustus alveus eveniet ventito. Theatrum somnus conduco sublime. Cor - Command(s): `lorem.paragraphs(paragraphCountMin=7)` - Preview data: ```csv -"Value" -"Strues aeneus debilito pectus capto perferendis antiquus doloremque placeat acsi. Advoco ventosus suus collum thymum truculenter beneficium ratione cruciamentum. Coniecto valens terreo. -Decens ara cubitum. Deinde adamo communis summopere placeat. Complectus amor suasoria vigor. -Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. Ventosus circumvenio concido versus via arbustum maiores thymbra." + ``` #### `domain-lorem-paragraphs-pair-min-max` @@ -9981,8 +8793,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(min=1, max=3)` - Preview data: ```csv -"Value" -"Arbitro aequus turbo cur coerceo bestia acer facilis. Collum ut varietas chirographum pecto coadunatio. Pariatur derelinquo solus rem tempus arcus necessitatibus validus voluptate." + ``` #### `domain-lorem-paragraphs-pair-max-paragraphCount` @@ -9990,8 +8801,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(max=3, paragraphCount=4)` - Preview data: ```csv -"Value" -"Sopor collum suus. Thalassinus speculum ut. Audeo beneficium arx repellat teres creator numquam carmen.3Velum cubitum aranea surculus arceo centum tantillus cumque. Defero capto demo summisse sto venio stultus adnuo derelinquo. Crepusculum acer tantum vulgo.3Sufficio accendo compono arcesso voluptates surculus demulceo. Denuncio tantum tertius angustus. Distinctio delectus iste pariatur." + ``` #### `domain-lorem-paragraphs-pair-paragraphCount-separator` @@ -9999,10 +8809,7 @@ Arca aro vinculum. Synagoga alias tracto ars conforto crudelis solitudo ascisco. - Command(s): `lorem.paragraphs(paragraphCount=4, separator="-")` - Preview data: ```csv -"Value" -"Culpo arcesso voluptatum antiquus suscipit. Vestrum nam advenio aer tabula tondeo expedita eaque. Odio decretum tunc sint volubilis casus reprehenderit odio nulla. -Addo consectetur fugit vesica spectaculum sperno curo alveus. Velit odio aegrus amplexus. Ancilla ubi congregatio stabilis. -Spoliatio taceo deporto temporibus adfectus ipsum. Cum tyrannus adhuc totam. Illo vae uredo sursum carbo absorbeo admoveo valeo titulus strues." + ``` #### `domain-lorem-paragraphs-pair-separator-paragraphCountMax` @@ -10010,10 +8817,7 @@ Spoliatio taceo deporto temporibus adfectus ipsum. Cum tyrannus adhuc totam. Ill - Command(s): `lorem.paragraphs(separator="-", paragraphCountMax=6)` - Preview data: ```csv -"Value" -"Aiunt amicitia animus decimus. Temeritas quis nemo. Tibi ubi optio absconditus aufero. -Careo volubilis arbitro. Accendo crapula desino canto odit doloribus valde libero debeo turpis. Aiunt crux virgo recusandae alveus vinitor speciosus unde abbas acidus. -Velut conicio temptatio armarium sint aspicio apostolus. Tolero claudeo congregatio credo vis ulterius. Repellendus consequatur molestiae avaritia sursum comptus carcer aperio." + ``` #### `domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin` @@ -10021,10 +8825,7 @@ Velut conicio temptatio armarium sint aspicio apostolus. Tolero claudeo congrega - Command(s): `lorem.paragraphs(paragraphCountMax=6, paragraphCountMin=7)` - Preview data: ```csv -"Value" -"Color crur suffragium veniam voluptas. Commodi angelus molestias suppono asper ait eum thymbra synagoga. Magnam utpote asper stips. -Veritas clamo coaegresco verus. Aveho blanditiis campana debeo vinum. Cito amitto speciosus caterva a comitatus volo. -Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter supplanto sollicito temporibus super. Exercitationem paens nulla abutor beatus quia defendo autus argumentum temeritas." + ``` #### `domain-lorem-sentence-base` @@ -10032,8 +8833,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence()` - Preview data: ```csv -"Value" -"Thymum curo rerum utrum." + ``` #### `domain-lorem-sentence-arg-min` @@ -10041,8 +8841,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(min=1)` - Preview data: ```csv -"Value" -"Appello." + ``` #### `domain-lorem-sentence-arg-max` @@ -10050,8 +8849,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(max=3)` - Preview data: ```csv -"Value" -"Ter textus admoneo acceptus deripio ullam succedo clam odit succurro." + ``` #### `domain-lorem-sentence-arg-wordCount` @@ -10059,8 +8857,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCount=4)` - Preview data: ```csv -"Value" -"Voluptas despecto admoneo aestivus auxilium adhuc aegre dicta." + ``` #### `domain-lorem-sentence-arg-wordCountMax` @@ -10068,8 +8865,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMax=5)` - Preview data: ```csv -"Value" -"Vivo accendo sint placeat supellex amoveo damnatio aegre." + ``` #### `domain-lorem-sentence-arg-wordCountMin` @@ -10077,8 +8873,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMin=6)` - Preview data: ```csv -"Value" -"Denuo torqueo id cohibeo deludo depono truculenter delectatio tolero." + ``` #### `domain-lorem-sentence-pair-min-max` @@ -10086,8 +8881,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(min=1, max=3)` - Preview data: ```csv -"Value" -"Summa." + ``` #### `domain-lorem-sentence-pair-max-wordCount` @@ -10095,8 +8889,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"Civis reprehenderit tripudio." + ``` #### `domain-lorem-sentence-pair-wordCount-wordCountMax` @@ -10104,8 +8897,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"Tego vilitas assumenda desidero." + ``` #### `domain-lorem-sentence-pair-wordCountMax-wordCountMin` @@ -10113,8 +8905,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentence(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"Pecto sequi accommodo aegrotatio." + ``` #### `domain-lorem-sentences-base` @@ -10122,8 +8913,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences()` - Preview data: ```csv -"Value" -"Virgo blandior adflicto. Adeo vos sortitus conventus ventito. Arca defessus tres argumentum amissio." + ``` #### `domain-lorem-sentences-arg-min` @@ -10131,8 +8921,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(min=1)` - Preview data: ```csv -"Value" -"Ullam coruscus alienus avaritia vulnero." + ``` #### `domain-lorem-sentences-arg-max` @@ -10140,8 +8929,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(max=3)` - Preview data: ```csv -"Value" -"Officiis angustus assentator cur sit.3Totam utilis tergiversatio clibanus auditor cunabula cena.3Umquam deporto caelum.3Vomito consequuntur soleo voluptates tamisium textilis deprecator absque ambitus demo.3Depono cunae tergum spectaculum quia expedita.3Thalassinus tyrannus molestias bellicus." + ``` #### `domain-lorem-sentences-arg-sentenceCount` @@ -10149,8 +8937,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCount=4)` - Preview data: ```csv -"Value" -"Vilis valens vacuus theatrum excepturi cras conservo vinculum. Termes antiquus aggero deserunt. Artificiose aestivus audax doloremque basium." + ``` #### `domain-lorem-sentences-arg-separator` @@ -10158,8 +8945,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(separator="-")` - Preview data: ```csv -"Value" -"Virgo cibus tres speculum vacuus omnis talio comprehendo earum. Demens ambitus minima advenio abeo. Usitas surculus veniam atrox carcer thorax corona. Taceo bos solutio tamquam admoveo villa cognomen tertius placeat. Causa alo bellum vestigium video ademptio vomica. Crudelis consectetur spectaculum tempus ullam." + ``` #### `domain-lorem-sentences-arg-sentenceCountMax` @@ -10167,8 +8953,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMax=6)` - Preview data: ```csv -"Value" -"Nemo ciminatio coruscus cognomen cum uredo adsidue sodalitas stipes cometes. Acerbitas turpis terebro sodalitas colligo deputo. Thermae truculenter absorbeo textor tyrannus arbustum debeo. Ducimus antepono solium arca tergo celebrer torqueo. Toties vesco cras stabilis tamisium infit summa beatus sublime coerceo." + ``` #### `domain-lorem-sentences-arg-sentenceCountMin` @@ -10176,8 +8961,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMin=7)` - Preview data: ```csv -"Value" -"Beneficium vita viduo clementia. Exercitationem tergiversatio appello. Commodi harum validus surculus venio enim cultellus claudeo. Illo tot trucido thymbra teneo laudantium sopor autem. Verbera amitto tertius vomito subseco tertius. Subvenio charisma velut." + ``` #### `domain-lorem-sentences-pair-min-max` @@ -10185,8 +8969,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(min=1, max=3)` - Preview data: ```csv -"Value" -"Aedificium amo demum vicinus tribuo." + ``` #### `domain-lorem-sentences-pair-max-sentenceCount` @@ -10194,8 +8977,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(max=3, sentenceCount=4)` - Preview data: ```csv -"Value" -"Caute carcer sumo textor.3Cariosus denuncio nostrum depulso pecto ad aduro.3Utilis defero tardus aequus taceo angustus beneficium carcer voluptatem volaticus.3Cras abbas avaritia." + ``` #### `domain-lorem-sentences-pair-sentenceCount-separator` @@ -10203,8 +8985,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCount=4, separator="-")` - Preview data: ```csv -"Value" -"Atrocitas arbitro desidero torrens atqui despecto vito dolore. Arto sol tendo. Adeo triduana facilis cum laboriosam amicitia. Voluptas surculus tabernus voluptatibus victus." + ``` #### `domain-lorem-sentences-pair-separator-sentenceCountMax` @@ -10212,8 +8993,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(separator="-", sentenceCountMax=6)` - Preview data: ```csv -"Value" -"Cattus animadverto urbs utrimque subiungo sint vulgivagus conqueror nostrum. Cibo coma adsidue aequus virtus considero dolore aetas commodo officia. Atavus adsuesco eaque degusto. Tepidus supellex attonbitus. Accommodo summopere iusto celo vivo amor vivo quidem." + ``` #### `domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin` @@ -10221,8 +9001,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.sentences(sentenceCountMax=6, sentenceCountMin=7)` - Preview data: ```csv -"Value" -"Carmen bestia angelus tergiversatio cunabula assumenda terror tamisium sed alias. Perferendis audio odit facere. Canonicus suscipit voluptas. Vito corroboro incidunt recusandae ultra civis repellendus." + ``` #### `domain-lorem-slug-base` @@ -10230,8 +9009,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug()` - Preview data: ```csv -"Value" -"vacuus-arcesso-volva" + ``` #### `domain-lorem-slug-arg-min` @@ -10239,8 +9017,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(min=1)` - Preview data: ```csv -"Value" -"vociferor" + ``` #### `domain-lorem-slug-arg-max` @@ -10248,8 +9025,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(max=3)` - Preview data: ```csv -"Value" -"assumenda-nam-capillus" + ``` #### `domain-lorem-slug-arg-wordCount` @@ -10257,8 +9033,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCount=4)` - Preview data: ```csv -"Value" -"vulariter-est-antea" + ``` #### `domain-lorem-slug-arg-wordCountMax` @@ -10266,8 +9041,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMax=5)` - Preview data: ```csv -"Value" -"adipisci-absque-acies" + ``` #### `domain-lorem-slug-arg-wordCountMin` @@ -10275,8 +9049,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMin=6)` - Preview data: ```csv -"Value" -"curatio-strenuus-voluntarius" + ``` #### `domain-lorem-slug-pair-min-max` @@ -10284,8 +9057,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(min=1, max=3)` - Preview data: ```csv -"Value" -"advoco" + ``` #### `domain-lorem-slug-pair-max-wordCount` @@ -10293,8 +9065,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"comitatus-spiculum-tandem" + ``` #### `domain-lorem-slug-pair-wordCount-wordCountMax` @@ -10302,8 +9073,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"clarus-dedico-totus" + ``` #### `domain-lorem-slug-pair-wordCountMax-wordCountMin` @@ -10311,8 +9081,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.slug(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"vita-celebrer-adinventitias" + ``` #### `domain-lorem-text-base` @@ -10320,10 +9089,7 @@ Absorbeo canonicus acquiro subnecto vito vacuus. Eveniet arcus appono viriliter - Command(s): `lorem.text()` - Preview data: ```csv -"Value" -"Calamitas tristis iste consectetur bos sed verbum capitulus. Civitas absorbeo stella cilicium delinquo odit admoneo vinco auctor cui. Adhuc consuasor sui ullus vilis tergum neque contra. -Balbus tempora cura cohibeo angelus corrigo. Audax crebro delinquo demum adfectus ulciscor textilis. Desidero decens ex vae arx curriculum nostrum attollo cervus. -Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. Vestigium speculum fuga aggredior suffragium cernuus occaecati super cunae error." + ``` #### `domain-lorem-word-base` @@ -10331,8 +9097,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word()` - Preview data: ```csv -"Value" -"careo" + ``` #### `domain-lorem-word-arg-min` @@ -10340,8 +9105,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(min=1)` - Preview data: ```csv -"Value" -"defluo" + ``` #### `domain-lorem-word-arg-max` @@ -10349,8 +9113,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(max=3)` - Preview data: ```csv -"Value" -"voluptates" + ``` #### `domain-lorem-word-arg-length` @@ -10358,8 +9121,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(length=4)` - Preview data: ```csv -"Value" -"nemo" + ``` #### `domain-lorem-word-arg-strategy` @@ -10367,8 +9129,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(strategy="lorem-word-strategy")` - Preview data: ```csv -"Value" -"id" + ``` #### `domain-lorem-word-pair-min-max` @@ -10376,8 +9137,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(min=1, max=3)` - Preview data: ```csv -"Value" -"vero" + ``` #### `domain-lorem-word-pair-max-length` @@ -10385,8 +9145,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(max=3, length=4)` - Preview data: ```csv -"Value" -"curo" + ``` #### `domain-lorem-word-pair-length-strategy` @@ -10394,8 +9153,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.word(length=4, strategy="lorem-word-strategy")` - Preview data: ```csv -"Value" -"vito" + ``` #### `domain-lorem-words-base` @@ -10403,8 +9161,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words()` - Preview data: ```csv -"Value" -"verus voluptates suppellex" + ``` #### `domain-lorem-words-arg-min` @@ -10412,8 +9169,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(min=1)` - Preview data: ```csv -"Value" -"tollo" + ``` #### `domain-lorem-words-arg-max` @@ -10421,8 +9177,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(max=3)` - Preview data: ```csv -"Value" -"illum triduana deficio" + ``` #### `domain-lorem-words-arg-wordCount` @@ -10430,8 +9185,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCount=4)` - Preview data: ```csv -"Value" -"optio cohaero uredo" + ``` #### `domain-lorem-words-arg-wordCountMax` @@ -10439,8 +9193,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMax=5)` - Preview data: ```csv -"Value" -"texo dolorum spargo" + ``` #### `domain-lorem-words-arg-wordCountMin` @@ -10448,8 +9201,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMin=6)` - Preview data: ```csv -"Value" -"defero vacuus impedit" + ``` #### `domain-lorem-words-pair-min-max` @@ -10457,8 +9209,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(min=1, max=3)` - Preview data: ```csv -"Value" -"cibus" + ``` #### `domain-lorem-words-pair-max-wordCount` @@ -10466,8 +9217,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(max=3, wordCount=4)` - Preview data: ```csv -"Value" -"mollitia abeo urbs" + ``` #### `domain-lorem-words-pair-wordCount-wordCountMax` @@ -10475,8 +9225,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCount=4, wordCountMax=5)` - Preview data: ```csv -"Value" -"sollicito tondeo et" + ``` #### `domain-lorem-words-pair-wordCountMax-wordCountMin` @@ -10484,8 +9233,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `lorem.words(wordCountMax=5, wordCountMin=6)` - Preview data: ```csv -"Value" -"depono cedo absum" + ``` #### `domain-music-album-base` @@ -10493,8 +9241,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.album()` - Preview data: ```csv -"Value" -"Majestic" + ``` #### `domain-music-artist-base` @@ -10502,8 +9249,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.artist()` - Preview data: ```csv -"Value" -"George Michael" + ``` #### `domain-music-genre-base` @@ -10511,8 +9257,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.genre()` - Preview data: ```csv -"Value" -"Latin" + ``` #### `domain-music-songName-base` @@ -10520,8 +9265,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `music.songName()` - Preview data: ```csv -"Value" -"You've Got a Friend" + ``` #### `domain-number-bigInt-base` @@ -10529,8 +9273,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.bigInt()` - Preview data: ```csv -"Value" -"571092089829729" + ``` #### `domain-number-bigInt-arg-value` @@ -10538,8 +9281,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.bigInt(value=true)` - Preview data: ```csv -"Value" -"586349396167377" + ``` #### `domain-number-binary-base` @@ -10547,8 +9289,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary()` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-binary-arg-max` @@ -10556,8 +9297,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(max=3)` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-binary-arg-min` @@ -10565,8 +9305,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-binary-pair-max-min` @@ -10574,8 +9313,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.binary(max=3, min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-base` @@ -10583,8 +9321,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float()` - Preview data: ```csv -"Value" -"0.3550653996448585" + ``` #### `domain-number-float-arg-fractionDigits` @@ -10592,8 +9329,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(fractionDigits=2)` - Preview data: ```csv -"Value" -"0.73" + ``` #### `domain-number-float-arg-max` @@ -10601,8 +9337,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(max=3)` - Preview data: ```csv -"Value" -"2.7132336805883557" + ``` #### `domain-number-float-arg-min` @@ -10610,8 +9345,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-arg-multipleOf` @@ -10619,8 +9353,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(multipleOf=0.5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-float-pair-fractionDigits-max` @@ -10628,8 +9361,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(fractionDigits=2, max=3)` - Preview data: ```csv -"Value" -"0.32" + ``` #### `domain-number-float-pair-max-min` @@ -10637,8 +9369,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(max=3, min=1)` - Preview data: ```csv -"Value" -"2.8150852265633652" + ``` #### `domain-number-float-pair-min-multipleOf` @@ -10646,8 +9377,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.float(min=1, multipleOf=0.5)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-hex-base` @@ -10655,8 +9385,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex()` - Preview data: ```csv -"Value" -"f" + ``` #### `domain-number-hex-arg-min` @@ -10664,8 +9393,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(min=1)` - Preview data: ```csv -"Value" -"b" + ``` #### `domain-number-hex-arg-max` @@ -10673,8 +9401,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-hex-pair-min-max` @@ -10682,8 +9409,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.hex(min=1, max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-int-base` @@ -10691,8 +9417,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int()` - Preview data: ```csv -"Value" -"1105340026189529" + ``` #### `domain-number-int-arg-min` @@ -10700,8 +9425,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(min=1)` - Preview data: ```csv -"Value" -"4151426716022040" + ``` #### `domain-number-int-arg-max` @@ -10709,8 +9433,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-int-arg-multipleOf` @@ -10718,8 +9441,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(multipleOf=4)` - Preview data: ```csv -"Value" -"3324814506500716" + ``` #### `domain-number-int-pair-min-max` @@ -10727,8 +9449,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(min=1, max=3)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-int-pair-max-multipleOf` @@ -10736,8 +9457,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.int(max=3, multipleOf=4)` - Preview data: ```csv -"Value" -"0" + ``` #### `domain-number-octal-base` @@ -10745,8 +9465,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal()` - Preview data: ```csv -"Value" -"7" + ``` #### `domain-number-octal-arg-max` @@ -10754,8 +9473,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(max=3)` - Preview data: ```csv -"Value" -"3" + ``` #### `domain-number-octal-arg-min` @@ -10763,8 +9481,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(min=1)` - Preview data: ```csv -"Value" -"6" + ``` #### `domain-number-octal-pair-max-min` @@ -10772,8 +9489,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.octal(max=3, min=1)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-number-romanNumeral-base` @@ -10781,8 +9497,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral()` - Preview data: ```csv -"Value" -"MMMCDXXI" + ``` #### `domain-number-romanNumeral-arg-min` @@ -10790,8 +9505,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(min=1)` - Preview data: ```csv -"Value" -"CCXCI" + ``` #### `domain-number-romanNumeral-arg-max` @@ -10799,8 +9513,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(max=3)` - Preview data: ```csv -"Value" -"I" + ``` #### `domain-number-romanNumeral-pair-min-max` @@ -10808,8 +9521,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `number.romanNumeral(min=1, max=3)` - Preview data: ```csv -"Value" -"II" + ``` #### `domain-person-bio-base` @@ -10817,8 +9529,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.bio()` - Preview data: ```csv -"Value" -"environmentalist" + ``` #### `domain-person-firstName-base` @@ -10826,8 +9537,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.firstName()` - Preview data: ```csv -"Value" -"Moses" + ``` #### `domain-person-firstName-arg-sex` @@ -10835,8 +9545,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.firstName(sex="male")` - Preview data: ```csv -"Value" -"Stephen" + ``` #### `domain-person-fullName-base` @@ -10844,8 +9553,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.fullName()` - Preview data: ```csv -"Value" -"Candace Champlin" + ``` #### `domain-person-gender-base` @@ -10853,8 +9561,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.gender()` - Preview data: ```csv -"Value" -"Female to male transgender man" + ``` #### `domain-person-jobArea-base` @@ -10862,8 +9569,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobArea()` - Preview data: ```csv -"Value" -"Directives" + ``` #### `domain-person-jobDescriptor-base` @@ -10871,8 +9577,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobDescriptor()` - Preview data: ```csv -"Value" -"International" + ``` #### `domain-person-jobTitle-base` @@ -10880,8 +9585,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobTitle()` - Preview data: ```csv -"Value" -"Human Accountability Producer" + ``` #### `domain-person-jobType-base` @@ -10889,8 +9593,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.jobType()` - Preview data: ```csv -"Value" -"Manager" + ``` #### `domain-person-lastName-base` @@ -10898,8 +9601,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.lastName()` - Preview data: ```csv -"Value" -"Pacocha" + ``` #### `domain-person-lastName-arg-sex` @@ -10907,8 +9609,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.lastName(sex="male")` - Preview data: ```csv -"Value" -"Krajcik" + ``` #### `domain-person-middleName-base` @@ -10916,8 +9617,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.middleName()` - Preview data: ```csv -"Value" -"Luke" + ``` #### `domain-person-middleName-arg-sex` @@ -10925,8 +9625,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.middleName(sex="male")` - Preview data: ```csv -"Value" -"Ezra" + ``` #### `domain-person-prefix-base` @@ -10934,8 +9633,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.prefix()` - Preview data: ```csv -"Value" -"Miss" + ``` #### `domain-person-prefix-arg-sex` @@ -10943,8 +9641,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.prefix(sex="male")` - Preview data: ```csv -"Value" -"Mr." + ``` #### `domain-person-sex-base` @@ -10952,8 +9649,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.sex()` - Preview data: ```csv -"Value" -"male" + ``` #### `domain-person-sexType-base` @@ -10961,8 +9657,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.sexType()` - Preview data: ```csv -"Value" -"male" + ``` #### `domain-person-suffix-base` @@ -10970,8 +9665,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.suffix()` - Preview data: ```csv -"Value" -"DVM" + ``` #### `domain-person-zodiacSign-base` @@ -10979,8 +9673,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `person.zodiacSign()` - Preview data: ```csv -"Value" -"Leo" + ``` #### `domain-phone-imei-base` @@ -10988,8 +9681,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.imei()` - Preview data: ```csv -"Value" -"79-903165-712789-0" + ``` #### `domain-phone-number-base` @@ -10997,8 +9689,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.number()` - Preview data: ```csv -"Value" -"1-329-484-4271 x034" + ``` #### `domain-phone-number-arg-style` @@ -11006,8 +9697,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `phone.number(style="international")` - Preview data: ```csv -"Value" -"+18882200058" + ``` #### `domain-string-alpha-base` @@ -11015,8 +9705,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha()` - Preview data: ```csv -"Value" -"l" + ``` #### `domain-string-alpha-arg-length` @@ -11024,8 +9713,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(length=4)` - Preview data: ```csv -"Value" -"eNHO" + ``` #### `domain-string-alpha-arg-casing` @@ -11033,8 +9721,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(casing="upper")` - Preview data: ```csv -"Value" -"J" + ``` #### `domain-string-alpha-arg-exclude` @@ -11042,8 +9729,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"Z" + ``` #### `domain-string-alpha-pair-length-casing` @@ -11051,8 +9737,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(length=4, casing="upper")` - Preview data: ```csv -"Value" -"XLKS" + ``` #### `domain-string-alpha-pair-casing-exclude` @@ -11060,8 +9745,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alpha(casing="upper", exclude=["A", "B"])` - Preview data: ```csv -"Value" -"F" + ``` #### `domain-string-alphanumeric-base` @@ -11069,8 +9753,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric()` - Preview data: ```csv -"Value" -"U" + ``` #### `domain-string-alphanumeric-arg-length` @@ -11078,8 +9761,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(length=4)` - Preview data: ```csv -"Value" -"LmDo" + ``` #### `domain-string-alphanumeric-arg-casing` @@ -11087,8 +9769,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(casing="upper")` - Preview data: ```csv -"Value" -"2" + ``` #### `domain-string-alphanumeric-arg-exclude` @@ -11096,8 +9777,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"N" + ``` #### `domain-string-alphanumeric-pair-length-casing` @@ -11105,8 +9785,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(length=4, casing="upper")` - Preview data: ```csv -"Value" -"IF7H" + ``` #### `domain-string-alphanumeric-pair-casing-exclude` @@ -11114,8 +9793,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.alphanumeric(casing="upper", exclude=["A", "B"])` - Preview data: ```csv -"Value" -"I" + ``` #### `domain-string-binary-base` @@ -11123,8 +9801,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary()` - Preview data: ```csv -"Value" -"0b1" + ``` #### `domain-string-binary-arg-length` @@ -11132,8 +9809,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(length=4)` - Preview data: ```csv -"Value" -"0b0001" + ``` #### `domain-string-binary-arg-prefix` @@ -11141,8 +9817,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(prefix="#")` - Preview data: ```csv -"Value" -"#1" + ``` #### `domain-string-binary-pair-length-prefix` @@ -11150,8 +9825,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.binary(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#0001" + ``` #### `domain-string-counterString-base` @@ -11159,48 +9833,39 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(1, 25, "*")` - Preview data: ```csv -"Value" -"2*4*6*8*11*" + ``` #### `domain-string-counterString-example-1` - Command(s): `string.counterString()` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"2*4*" + ``` #### `domain-string-counterString-example-2` - Command(s): `string.counterString(15)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"*3*5*7*9*12*15*" + ``` #### `domain-string-counterString-example-3` - Command(s): `string.counterString(min=5, max=12)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"2*4*6*" + ``` #### `domain-string-counterString-example-4` - Command(s): `string.counterString(min=12, max=12, delimiter="#")` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"#3#5#7#9#12#" + ``` #### `domain-string-counterString-arg-min` @@ -11208,8 +9873,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(min=5)` - Preview data: ```csv -"Value" -"*3*5*" + ``` #### `domain-string-counterString-arg-max` @@ -11217,8 +9881,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(max=12)` - Preview data: ```csv -"Value" -"2*4*6*8*" + ``` #### `domain-string-counterString-arg-delimiter` @@ -11226,8 +9889,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(delimiter="#")` - Preview data: ```csv -"Value" -"2#4#6#8#11#14#17#" + ``` #### `domain-string-counterString-pair-min-max` @@ -11235,8 +9897,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(min=5, max=12)` - Preview data: ```csv -"Value" -"*3*5*" + ``` #### `domain-string-counterString-pair-max-delimiter` @@ -11244,38 +9905,31 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.counterString(max=12, delimiter="#")` - Preview data: ```csv -"Value" -"#3#5#7#" + ``` #### `domain-string-fromCharacters-base` - Command(s): `string.fromCharacters("ABC123", 4)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"A3C3" + ``` #### `domain-string-fromCharacters-example-1` - Command(s): `string.fromCharacters("ABC123", 6)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"C1A22B" + ``` #### `domain-string-fromCharacters-example-2` - Command(s): `string.fromCharacters(characters=["A", "B", "C"], length=4)` -- UI preview parity: `exact` - Preview data: ```csv -"Value" -"CBAB" + ``` #### `domain-string-fromCharacters-arg-characters` @@ -11283,8 +9937,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123")` - Preview data: ```csv -"Value" -"B" + ``` #### `domain-string-fromCharacters-arg-length` @@ -11292,8 +9945,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123", length=4)` - Preview data: ```csv -"Value" -"2221" + ``` #### `domain-string-fromCharacters-pair-characters-length` @@ -11301,8 +9953,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.fromCharacters(characters="ABC123", length=4)` - Preview data: ```csv -"Value" -"2CBB" + ``` #### `domain-string-hexadecimal-base` @@ -11310,8 +9961,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal()` - Preview data: ```csv -"Value" -"0xC" + ``` #### `domain-string-hexadecimal-arg-casing` @@ -11319,8 +9969,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(casing="upper")` - Preview data: ```csv -"Value" -"0x8" + ``` #### `domain-string-hexadecimal-arg-length` @@ -11328,8 +9977,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(length=4)` - Preview data: ```csv -"Value" -"0xbAbc" + ``` #### `domain-string-hexadecimal-arg-prefix` @@ -11337,8 +9985,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(prefix="#")` - Preview data: ```csv -"Value" -"#E" + ``` #### `domain-string-hexadecimal-pair-casing-length` @@ -11346,8 +9993,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(casing="upper", length=4)` - Preview data: ```csv -"Value" -"0x8E8E" + ``` #### `domain-string-hexadecimal-pair-length-prefix` @@ -11355,8 +10001,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.hexadecimal(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#ffef" + ``` #### `domain-string-nanoid-base` @@ -11364,8 +10009,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.nanoid()` - Preview data: ```csv -"Value" -"NdoP5wwyLFTWcdq-2JUPT" + ``` #### `domain-string-nanoid-arg-length` @@ -11373,8 +10017,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.nanoid(length=4)` - Preview data: ```csv -"Value" -"emm-" + ``` #### `domain-string-numeric-base` @@ -11382,8 +10025,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric()` - Preview data: ```csv -"Value" -"8" + ``` #### `domain-string-numeric-arg-length` @@ -11391,8 +10033,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(length=4)` - Preview data: ```csv -"Value" -"2920" + ``` #### `domain-string-numeric-arg-allowLeadingZeros` @@ -11400,8 +10041,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(allowLeadingZeros=true)` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-string-numeric-arg-exclude` @@ -11409,8 +10049,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(exclude=["A", "B"])` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-string-numeric-pair-length-allowLeadingZeros` @@ -11418,8 +10057,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(length=4, allowLeadingZeros=true)` - Preview data: ```csv -"Value" -"8990" + ``` #### `domain-string-numeric-pair-allowLeadingZeros-exclude` @@ -11427,8 +10065,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.numeric(allowLeadingZeros=true, exclude=["A", "B"])` - Preview data: ```csv -"Value" -"6" + ``` #### `domain-string-octal-base` @@ -11436,8 +10073,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal()` - Preview data: ```csv -"Value" -"0o3" + ``` #### `domain-string-octal-arg-length` @@ -11445,8 +10081,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(length=4)` - Preview data: ```csv -"Value" -"0o5416" + ``` #### `domain-string-octal-arg-prefix` @@ -11454,8 +10089,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(prefix="#")` - Preview data: ```csv -"Value" -"#6" + ``` #### `domain-string-octal-pair-length-prefix` @@ -11463,8 +10097,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.octal(length=4, prefix="#")` - Preview data: ```csv -"Value" -"#2612" + ``` #### `domain-string-sample-base` @@ -11472,8 +10105,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.sample()` - Preview data: ```csv -"Value" -"#>'" + ``` #### `domain-string-ulid-base` @@ -11508,8 +10137,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.ulid()` - Preview data: ```csv -"Value" -"01KVATTXNN4MY648F8XPVTRQE9" + ``` #### `domain-string-ulid-arg-refDate` @@ -11517,8 +10145,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.ulid(refDate=2)` - Preview data: ```csv -"Value" -"00000000022P5BDQJ90BT5VFMX" + ``` #### `domain-string-uuid-base` @@ -11526,8 +10153,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `string.uuid()` - Preview data: ```csv -"Value" -"5188d2de-3f7b-4998-a61f-cb3e78b71bb8" + ``` #### `domain-system-commonFileExt-base` @@ -11535,8 +10161,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileExt()` - Preview data: ```csv -"Value" -"mpg" + ``` #### `domain-system-commonFileName-base` @@ -11544,8 +10169,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileName()` - Preview data: ```csv -"Value" -"because.html" + ``` #### `domain-system-commonFileName-arg-extension` @@ -11553,8 +10177,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileName(extension="system-commonFileName-extension")` - Preview data: ```csv -"Value" -"brush_oh.system-commonFileName-extension" + ``` #### `domain-system-commonFileType-base` @@ -11562,8 +10185,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.commonFileType()` - Preview data: ```csv -"Value" -"text" + ``` #### `domain-system-cron-base` @@ -11571,8 +10193,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron()` - Preview data: ```csv -"Value" -"* * * 8 ?" + ``` #### `domain-system-cron-arg-includeNonStandard` @@ -11580,8 +10201,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeNonStandard=true)` - Preview data: ```csv -"Value" -"22 6 14 7 1" + ``` #### `domain-system-cron-arg-includeYear` @@ -11589,8 +10209,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeYear=true)` - Preview data: ```csv -"Value" -"* 1 ? 9 5 *" + ``` #### `domain-system-cron-pair-includeNonStandard-includeYear` @@ -11598,8 +10217,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.cron(includeNonStandard=true, includeYear=true)` - Preview data: ```csv -"Value" -"@hourly" + ``` #### `domain-system-directoryPath-base` @@ -11607,8 +10225,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.directoryPath()` - Preview data: ```csv -"Value" -"/bin" + ``` #### `domain-system-fileExt-base` @@ -11616,8 +10233,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileExt()` - Preview data: ```csv -"Value" -"war" + ``` #### `domain-system-fileExt-arg-mimeType` @@ -11625,8 +10241,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileExt(mimeType="system-fileExt-mimeType")` - Preview data: ```csv -"Value" -"epub" + ``` #### `domain-system-fileName-base` @@ -11634,8 +10249,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileName()` - Preview data: ```csv -"Value" -"finally.otf" + ``` #### `domain-system-filePath-base` @@ -11643,8 +10257,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.filePath()` - Preview data: ```csv -"Value" -"/home/user/bah.epub" + ``` #### `domain-system-fileType-base` @@ -11652,8 +10265,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.fileType()` - Preview data: ```csv -"Value" -"application" + ``` #### `domain-system-mimeType-base` @@ -11661,8 +10273,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.mimeType()` - Preview data: ```csv -"Value" -"image/gif" + ``` #### `domain-system-networkInterface-base` @@ -11670,8 +10281,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.networkInterface()` - Preview data: ```csv -"Value" -"ens0d1" + ``` #### `domain-system-semver-base` @@ -11679,8 +10289,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `system.semver()` - Preview data: ```csv -"Value" -"6.20.15" + ``` #### `domain-vehicle-bicycle-base` @@ -11688,8 +10297,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.bicycle()` - Preview data: ```csv -"Value" -"Hybrid Bicycle" + ``` #### `domain-vehicle-color-base` @@ -11697,8 +10305,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.color()` - Preview data: ```csv -"Value" -"fuchsia" + ``` #### `domain-vehicle-fuel-base` @@ -11706,8 +10313,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.fuel()` - Preview data: ```csv -"Value" -"Electric" + ``` #### `domain-vehicle-manufacturer-base` @@ -11715,8 +10321,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.manufacturer()` - Preview data: ```csv -"Value" -"Chrysler" + ``` #### `domain-vehicle-model-base` @@ -11724,8 +10329,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.model()` - Preview data: ```csv -"Value" -"CTS" + ``` #### `domain-vehicle-type-base` @@ -11733,8 +10337,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.type()` - Preview data: ```csv -"Value" -"Convertible" + ``` #### `domain-vehicle-vehicle-base` @@ -11742,8 +10345,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vehicle()` - Preview data: ```csv -"Value" -"Smart Alpine" + ``` #### `domain-vehicle-vin-base` @@ -11751,8 +10353,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vin()` - Preview data: ```csv -"Value" -"928JZDANRWG098654" + ``` #### `domain-vehicle-vrm-base` @@ -11760,8 +10361,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `vehicle.vrm()` - Preview data: ```csv -"Value" -"RN16HVP" + ``` #### `domain-word-adjective-base` @@ -11769,8 +10369,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective()` - Preview data: ```csv -"Value" -"moist" + ``` #### `domain-word-adjective-arg-length` @@ -11778,8 +10377,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(length=4)` - Preview data: ```csv -"Value" -"zany" + ``` #### `domain-word-adjective-arg-max` @@ -11787,8 +10385,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(max=3)` - Preview data: ```csv -"Value" -"distorted" + ``` #### `domain-word-adjective-arg-strategy` @@ -11796,8 +10393,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(strategy="word-adjective-strategy")` - Preview data: ```csv -"Value" -"illiterate" + ``` #### `domain-word-adjective-pair-length-max` @@ -11805,8 +10401,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(length=4, max=3)` - Preview data: ```csv -"Value" -"live" + ``` #### `domain-word-adjective-pair-max-strategy` @@ -11814,8 +10409,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adjective(max=3, strategy="word-adjective-strategy")` - Preview data: ```csv -"Value" -"blue" + ``` #### `domain-word-adverb-base` @@ -11823,8 +10417,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb()` - Preview data: ```csv -"Value" -"certainly" + ``` #### `domain-word-adverb-arg-length` @@ -11832,8 +10425,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(length=4)` - Preview data: ```csv -"Value" -"very" + ``` #### `domain-word-adverb-arg-max` @@ -11841,8 +10433,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(max=3)` - Preview data: ```csv -"Value" -"swiftly" + ``` #### `domain-word-adverb-arg-strategy` @@ -11850,8 +10441,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(strategy="word-adverb-strategy")` - Preview data: ```csv -"Value" -"voluntarily" + ``` #### `domain-word-adverb-pair-length-max` @@ -11859,8 +10449,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(length=4, max=3)` - Preview data: ```csv -"Value" -"fast" + ``` #### `domain-word-adverb-pair-max-strategy` @@ -11868,8 +10457,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.adverb(max=3, strategy="word-adverb-strategy")` - Preview data: ```csv -"Value" -"majestically" + ``` #### `domain-word-conjunction-base` @@ -11877,8 +10465,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction()` - Preview data: ```csv -"Value" -"why" + ``` #### `domain-word-conjunction-arg-length` @@ -11886,8 +10473,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(length=4)` - Preview data: ```csv -"Value" -"what" + ``` #### `domain-word-conjunction-arg-max` @@ -11895,8 +10481,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(max=3)` - Preview data: ```csv -"Value" -"whoever" + ``` #### `domain-word-conjunction-arg-strategy` @@ -11904,8 +10489,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(strategy="word-conjunction-strategy")` - Preview data: ```csv -"Value" -"inasmuch" + ``` #### `domain-word-conjunction-pair-length-max` @@ -11913,8 +10497,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(length=4, max=3)` - Preview data: ```csv -"Value" -"once" + ``` #### `domain-word-conjunction-pair-max-strategy` @@ -11922,8 +10505,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.conjunction(max=3, strategy="word-conjunction-strategy")` - Preview data: ```csv -"Value" -"for" + ``` #### `domain-word-interjection-base` @@ -11931,8 +10513,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection()` - Preview data: ```csv -"Value" -"blah" + ``` #### `domain-word-interjection-arg-length` @@ -11940,8 +10521,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(length=4)` - Preview data: ```csv -"Value" -"gosh" + ``` #### `domain-word-interjection-arg-max` @@ -11949,8 +10529,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(max=3)` - Preview data: ```csv -"Value" -"ah" + ``` #### `domain-word-interjection-arg-strategy` @@ -11958,8 +10537,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(strategy="word-interjection-strategy")` - Preview data: ```csv -"Value" -"er" + ``` #### `domain-word-interjection-pair-length-max` @@ -11967,8 +10545,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(length=4, max=3)` - Preview data: ```csv -"Value" -"pish" + ``` #### `domain-word-interjection-pair-max-strategy` @@ -11976,8 +10553,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.interjection(max=3, strategy="word-interjection-strategy")` - Preview data: ```csv -"Value" -"whoa" + ``` #### `domain-word-noun-base` @@ -11985,8 +10561,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun()` - Preview data: ```csv -"Value" -"foodstuffs" + ``` #### `domain-word-noun-arg-length` @@ -11994,8 +10569,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(length=4)` - Preview data: ```csv -"Value" -"coal" + ``` #### `domain-word-noun-arg-max` @@ -12003,8 +10577,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(max=3)` - Preview data: ```csv -"Value" -"backbone" + ``` #### `domain-word-noun-arg-strategy` @@ -12012,8 +10585,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(strategy="word-noun-strategy")` - Preview data: ```csv -"Value" -"meander" + ``` #### `domain-word-noun-pair-length-max` @@ -12021,8 +10593,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(length=4, max=3)` - Preview data: ```csv -"Value" -"king" + ``` #### `domain-word-noun-pair-max-strategy` @@ -12030,8 +10601,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.noun(max=3, strategy="word-noun-strategy")` - Preview data: ```csv -"Value" -"numeric" + ``` #### `domain-word-preposition-base` @@ -12039,8 +10609,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition()` - Preview data: ```csv -"Value" -"times" + ``` #### `domain-word-preposition-arg-length` @@ -12048,8 +10617,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(length=4)` - Preview data: ```csv -"Value" -"with" + ``` #### `domain-word-preposition-arg-max` @@ -12057,8 +10625,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(max=3)` - Preview data: ```csv -"Value" -"a" + ``` #### `domain-word-preposition-arg-strategy` @@ -12066,8 +10633,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(strategy="word-preposition-strategy")` - Preview data: ```csv -"Value" -"than" + ``` #### `domain-word-preposition-pair-length-max` @@ -12075,8 +10641,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(length=4, max=3)` - Preview data: ```csv -"Value" -"plus" + ``` #### `domain-word-preposition-pair-max-strategy` @@ -12084,8 +10649,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.preposition(max=3, strategy="word-preposition-strategy")` - Preview data: ```csv -"Value" -"near" + ``` #### `domain-word-sample-base` @@ -12093,8 +10657,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample()` - Preview data: ```csv -"Value" -"microchip" + ``` #### `domain-word-sample-arg-length` @@ -12102,8 +10665,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(length=4)` - Preview data: ```csv -"Value" -"when" + ``` #### `domain-word-sample-arg-max` @@ -12111,8 +10673,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(max=3)` - Preview data: ```csv -"Value" -"aha" + ``` #### `domain-word-sample-arg-strategy` @@ -12120,8 +10681,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(strategy="word-sample-strategy")` - Preview data: ```csv -"Value" -"ew" + ``` #### `domain-word-sample-pair-length-max` @@ -12129,8 +10689,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(length=4, max=3)` - Preview data: ```csv -"Value" -"lamp" + ``` #### `domain-word-sample-pair-max-strategy` @@ -12138,8 +10697,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.sample(max=3, strategy="word-sample-strategy")` - Preview data: ```csv -"Value" -"an" + ``` #### `domain-word-verb-base` @@ -12147,8 +10705,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb()` - Preview data: ```csv -"Value" -"federate" + ``` #### `domain-word-verb-arg-length` @@ -12156,8 +10713,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(length=4)` - Preview data: ```csv -"Value" -"pant" + ``` #### `domain-word-verb-arg-max` @@ -12165,8 +10721,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(max=3)` - Preview data: ```csv -"Value" -"braid" + ``` #### `domain-word-verb-arg-strategy` @@ -12174,8 +10729,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(strategy="word-verb-strategy")` - Preview data: ```csv -"Value" -"prance" + ``` #### `domain-word-verb-pair-length-max` @@ -12183,8 +10737,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(length=4, max=3)` - Preview data: ```csv -"Value" -"come" + ``` #### `domain-word-verb-pair-max-strategy` @@ -12192,8 +10745,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.verb(max=3, strategy="word-verb-strategy")` - Preview data: ```csv -"Value" -"pant" + ``` #### `domain-word-words-base` @@ -12201,8 +10753,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words()` - Preview data: ```csv -"Value" -"mutate ack" + ``` #### `domain-word-words-arg-count` @@ -12210,8 +10761,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(count=2)` - Preview data: ```csv -"Value" -"instead conservative" + ``` #### `domain-word-words-arg-max` @@ -12219,8 +10769,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(max=3)` - Preview data: ```csv -"Value" -"yahoo" + ``` #### `domain-word-words-pair-count-max` @@ -12228,8 +10777,7 @@ Adicio voluptatibus non aut brevis est sponte arguo iure. Bos confido venustas. - Command(s): `word.words(count=2, max=3)` - Preview data: ```csv -"Value" -"brr whoever" + ``` @@ -12257,7 +10805,7 @@ Structural-only preview parity scenario count: **5** | Key | Count | | --- | ---: | | `base` | 4 | -| `custom` | 6 | +| `custom` | 3 | | `empty` | 2 | | `example` | 10 | | `pairwise` | 1 | @@ -12322,8 +10870,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Status" -"pending" + ``` #### `custom-enum-pairwise` @@ -12333,22 +10880,7 @@ Structural-only preview parity scenario count: **5** - Schema Rows: `Status: enum(active,inactive,pending)`, `Priority: enum(high,medium,low)` - Preview data: ```csv -"Status","Priority" -"inactive","medium" -"inactive","low" -``` -- Pairwise preview data: -```csv -"Status","Priority" -"active","high" -"active","medium" -"active","low" -"inactive","high" -"inactive","medium" -"inactive","low" -"pending","high" -"pending","medium" -"pending","low" + ``` #### `custom-literal-base` @@ -12357,8 +10889,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Status" -"Pending" + ``` #### `custom-literal-empty` @@ -12367,8 +10898,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Status" -"" + ``` #### `custom-regex-base` @@ -12377,8 +10907,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `structural` - Preview data: ```csv -"Code" -"VC23" + ``` #### `custom-regex-empty` @@ -12387,8 +10916,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Code" -"" + ``` #### `faker-helpers-arrayElement-base` @@ -12397,8 +10925,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"B" + ``` #### `faker-helpers-fake-base` @@ -12407,8 +10934,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `structural` - Preview data: ```csv -"Value" -"Douglas" + ``` #### `faker-helpers-fromRegExp-example-1` @@ -12417,8 +10943,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `structural` - Preview data: ```csv -"Value" -"PU71" + ``` #### `faker-helpers-mustache-base` @@ -12427,8 +10952,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"Ada" + ``` #### `faker-helpers-uniqueArray-example-1` @@ -12437,8 +10961,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `structural` - Preview data: ```csv -"Value" -"[""blue"",""green""]" + ``` #### `faker-helpers-weightedArrayElement-example-1` @@ -12447,8 +10970,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"sunny" + ``` #### `domain-airline-seat-example-1` @@ -12457,8 +10979,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"32C" + ``` #### `domain-autoIncrement-sequence-example-1` @@ -12467,8 +10988,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `structural` - Preview data: ```csv -"Value" -"1" + ``` #### `domain-commerce-price-example-1` @@ -12477,8 +10997,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"$3.69" + ``` #### `domain-date-birthdate-example-1` @@ -12487,8 +11006,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"1920-10-04T17:22:24.125Z" + ``` #### `domain-internet-password-example-1` @@ -12497,8 +11015,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"#wMJJrPMVo" + ``` #### `domain-literal-value-example-1` @@ -12507,8 +11024,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"Pending" + ``` #### `domain-string-counterString-example-1` @@ -12517,8 +11033,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"2*4*" + ``` #### `domain-string-fromCharacters-base` @@ -12527,7 +11042,7 @@ Structural-only preview parity scenario count: **5** - UI preview parity: `exact` - Preview data: ```csv -"Value" -"A3C3" + ``` + 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 index 77f9e52b..cca96317 100644 --- 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 @@ -2,7 +2,7 @@ "generatedAt": "2026-06-17T13:02:55.544Z", "coverageScenarios": [ { - "id": "custom-enum-base", + "id": "coverage:custom-enum-base", "sourceType": "enum", "command": "", "label": "enum", @@ -21,10 +21,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-enum-base" }, { - "id": "custom-enum-pairwise", + "id": "coverage:custom-enum-pairwise", "sourceType": "enum", "command": "", "label": "enum pairwise", @@ -50,10 +51,11 @@ "pairwiseEligible": true, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "pairwise"] + "origins": ["custom", "pairwise"], + "scenarioId": "custom-enum-pairwise" }, { - "id": "custom-literal-base", + "id": "coverage:custom-literal-base", "sourceType": "literal", "command": "", "label": "literal", @@ -72,10 +74,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-literal-base" }, { - "id": "custom-literal-empty", + "id": "coverage:custom-literal-empty", "sourceType": "literal", "command": "", "label": "literal empty", @@ -94,10 +97,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "empty"] + "origins": ["custom", "empty"], + "scenarioId": "custom-literal-empty" }, { - "id": "custom-regex-base", + "id": "coverage:custom-regex-base", "sourceType": "regex", "command": "", "label": "regex", @@ -116,10 +120,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-regex-base" }, { - "id": "custom-regex-empty", + "id": "coverage:custom-regex-empty", "sourceType": "regex", "command": "", "label": "regex empty", @@ -138,10 +143,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "empty"] + "origins": ["custom", "empty"], + "scenarioId": "custom-regex-empty" }, { - "id": "faker-helpers-arrayElement-base", + "id": "coverage:faker-helpers-arrayElement-base", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement", @@ -160,10 +166,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-arrayElement-base" }, { - "id": "faker-helpers-arrayElement-example-1", + "id": "coverage:faker-helpers-arrayElement-example-1", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement example 1", @@ -182,10 +189,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-arrayElement-example-1" }, { - "id": "faker-helpers-arrayElement-arg-array", + "id": "coverage:faker-helpers-arrayElement-arg-array", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement arg array", @@ -204,10 +212,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElement-arg-array" }, { - "id": "faker-helpers-arrayElements-base", + "id": "coverage:faker-helpers-arrayElements-base", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements", @@ -226,10 +235,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-arrayElements-base" }, { - "id": "faker-helpers-arrayElements-example-1", + "id": "coverage:faker-helpers-arrayElements-example-1", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements example 1", @@ -248,10 +258,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array", "count"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-arrayElements-example-1" }, { - "id": "faker-helpers-arrayElements-arg-array", + "id": "coverage:faker-helpers-arrayElements-arg-array", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements arg array", @@ -270,10 +281,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElements-arg-array" }, { - "id": "faker-helpers-arrayElements-arg-count", + "id": "coverage:faker-helpers-arrayElements-arg-count", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements arg count", @@ -292,10 +304,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElements-arg-count" }, { - "id": "faker-helpers-arrayElements-pair-array-count", + "id": "coverage:faker-helpers-arrayElements-pair-array-count", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements pair array/count", @@ -314,10 +327,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array", "count"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-arrayElements-pair-array-count" }, { - "id": "faker-helpers-fake-base", + "id": "coverage:faker-helpers-fake-base", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake", @@ -336,10 +350,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-fake-base" }, { - "id": "faker-helpers-fake-example-1", + "id": "coverage:faker-helpers-fake-example-1", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake example 1", @@ -358,10 +373,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-fake-example-1" }, { - "id": "faker-helpers-fake-arg-pattern", + "id": "coverage:faker-helpers-fake-arg-pattern", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake arg pattern", @@ -380,10 +396,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-fake-arg-pattern" }, { - "id": "faker-helpers-fromRegExp-base", + "id": "coverage:faker-helpers-fromRegExp-base", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp", @@ -402,10 +419,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-fromRegExp-base" }, { - "id": "faker-helpers-fromRegExp-example-1", + "id": "coverage:faker-helpers-fromRegExp-example-1", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp example 1", @@ -424,10 +442,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-fromRegExp-example-1" }, { - "id": "faker-helpers-fromRegExp-arg-pattern", + "id": "coverage:faker-helpers-fromRegExp-arg-pattern", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp arg pattern", @@ -446,10 +465,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-fromRegExp-arg-pattern" }, { - "id": "faker-helpers-maybe-base", + "id": "coverage:faker-helpers-maybe-base", "sourceType": "faker", "command": "helpers.maybe", "label": "helpers.maybe", @@ -468,10 +488,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-maybe-base" }, { - "id": "faker-helpers-maybe-example-1", + "id": "coverage:faker-helpers-maybe-example-1", "sourceType": "faker", "command": "helpers.maybe", "label": "helpers.maybe example 1", @@ -490,10 +511,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["callback", "options"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-maybe-example-1" }, { - "id": "faker-helpers-maybe-arg-callback", + "id": "coverage:faker-helpers-maybe-arg-callback", "sourceType": "faker", "command": "helpers.maybe", "label": "helpers.maybe arg callback", @@ -512,10 +534,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["callback"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-maybe-arg-callback" }, { - "id": "faker-helpers-maybe-arg-options", + "id": "coverage:faker-helpers-maybe-arg-options", "sourceType": "faker", "command": "helpers.maybe", "label": "helpers.maybe arg options", @@ -534,10 +557,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["options"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-maybe-arg-options" }, { - "id": "faker-helpers-maybe-pair-callback-options", + "id": "coverage:faker-helpers-maybe-pair-callback-options", "sourceType": "faker", "command": "helpers.maybe", "label": "helpers.maybe pair callback/options", @@ -556,10 +580,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["callback", "options"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-maybe-pair-callback-options" }, { - "id": "faker-helpers-multiple-base", + "id": "coverage:faker-helpers-multiple-base", "sourceType": "faker", "command": "helpers.multiple", "label": "helpers.multiple", @@ -578,10 +603,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-multiple-base" }, { - "id": "faker-helpers-multiple-example-1", + "id": "coverage:faker-helpers-multiple-example-1", "sourceType": "faker", "command": "helpers.multiple", "label": "helpers.multiple example 1", @@ -600,10 +626,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["method", "options"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-multiple-example-1" }, { - "id": "faker-helpers-multiple-arg-method", + "id": "coverage:faker-helpers-multiple-arg-method", "sourceType": "faker", "command": "helpers.multiple", "label": "helpers.multiple arg method", @@ -622,10 +649,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["method"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-multiple-arg-method" }, { - "id": "faker-helpers-multiple-arg-options", + "id": "coverage:faker-helpers-multiple-arg-options", "sourceType": "faker", "command": "helpers.multiple", "label": "helpers.multiple arg options", @@ -644,10 +672,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["options"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-multiple-arg-options" }, { - "id": "faker-helpers-multiple-pair-method-options", + "id": "coverage:faker-helpers-multiple-pair-method-options", "sourceType": "faker", "command": "helpers.multiple", "label": "helpers.multiple pair method/options", @@ -666,10 +695,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["method", "options"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-multiple-pair-method-options" }, { - "id": "faker-helpers-mustache-base", + "id": "coverage:faker-helpers-mustache-base", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache", @@ -688,10 +718,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-mustache-base" }, { - "id": "faker-helpers-mustache-example-1", + "id": "coverage:faker-helpers-mustache-example-1", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache example 1", @@ -710,10 +741,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text", "data"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-mustache-example-1" }, { - "id": "faker-helpers-mustache-arg-text", + "id": "coverage:faker-helpers-mustache-arg-text", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache arg text", @@ -732,10 +764,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-mustache-arg-text" }, { - "id": "faker-helpers-mustache-arg-data", + "id": "coverage:faker-helpers-mustache-arg-data", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache arg data", @@ -754,10 +787,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["data"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-mustache-arg-data" }, { - "id": "faker-helpers-mustache-pair-text-data", + "id": "coverage:faker-helpers-mustache-pair-text-data", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache pair text/data", @@ -776,10 +810,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text", "data"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-mustache-pair-text-data" }, { - "id": "faker-helpers-rangeToNumber-base", + "id": "coverage:faker-helpers-rangeToNumber-base", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber", @@ -798,10 +833,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-rangeToNumber-base" }, { - "id": "faker-helpers-rangeToNumber-example-1", + "id": "coverage:faker-helpers-rangeToNumber-example-1", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber example 1", @@ -820,10 +856,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["numberOrRange"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-rangeToNumber-example-1" }, { - "id": "faker-helpers-rangeToNumber-arg-numberOrRange", + "id": "coverage:faker-helpers-rangeToNumber-arg-numberOrRange", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber arg numberOrRange", @@ -842,10 +879,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["numberOrRange"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-rangeToNumber-arg-numberOrRange" }, { - "id": "faker-helpers-replaceCreditCardSymbols-base", + "id": "coverage:faker-helpers-replaceCreditCardSymbols-base", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols", @@ -864,10 +902,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-base" }, { - "id": "faker-helpers-replaceCreditCardSymbols-example-1", + "id": "coverage:faker-helpers-replaceCreditCardSymbols-example-1", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols example 1", @@ -886,10 +925,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string", "symbol"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-1" }, { - "id": "faker-helpers-replaceCreditCardSymbols-arg-string", + "id": "coverage:faker-helpers-replaceCreditCardSymbols-arg-string", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols arg string", @@ -908,10 +948,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-string" }, { - "id": "faker-helpers-replaceCreditCardSymbols-arg-symbol", + "id": "coverage:faker-helpers-replaceCreditCardSymbols-arg-symbol", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols arg symbol", @@ -930,10 +971,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-symbol" }, { - "id": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol", + "id": "coverage:faker-helpers-replaceCreditCardSymbols-pair-string-symbol", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols pair string/symbol", @@ -952,10 +994,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol" }, { - "id": "faker-helpers-replaceSymbols-base", + "id": "coverage:faker-helpers-replaceSymbols-base", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols", @@ -974,10 +1017,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-replaceSymbols-base" }, { - "id": "faker-helpers-replaceSymbols-example-1", + "id": "coverage:faker-helpers-replaceSymbols-example-1", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols example 1", @@ -996,10 +1040,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-replaceSymbols-example-1" }, { - "id": "faker-helpers-replaceSymbols-arg-string", + "id": "coverage:faker-helpers-replaceSymbols-arg-string", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols arg string", @@ -1018,10 +1063,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceSymbols-arg-string" }, { - "id": "faker-helpers-shuffle-base", + "id": "coverage:faker-helpers-shuffle-base", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle", @@ -1040,10 +1086,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-shuffle-base" }, { - "id": "faker-helpers-shuffle-example-1", + "id": "coverage:faker-helpers-shuffle-example-1", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle example 1", @@ -1062,10 +1109,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-shuffle-example-1" }, { - "id": "faker-helpers-shuffle-arg-array", + "id": "coverage:faker-helpers-shuffle-arg-array", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle arg array", @@ -1084,10 +1132,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-shuffle-arg-array" }, { - "id": "faker-helpers-slugify-base", + "id": "coverage:faker-helpers-slugify-base", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify", @@ -1106,10 +1155,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-slugify-base" }, { - "id": "faker-helpers-slugify-example-1", + "id": "coverage:faker-helpers-slugify-example-1", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify example 1", @@ -1128,10 +1178,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-slugify-example-1" }, { - "id": "faker-helpers-slugify-arg-string", + "id": "coverage:faker-helpers-slugify-arg-string", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify arg string", @@ -1150,10 +1201,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-slugify-arg-string" }, { - "id": "faker-helpers-uniqueArray-base", + "id": "coverage:faker-helpers-uniqueArray-base", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray", @@ -1172,10 +1224,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-uniqueArray-base" }, { - "id": "faker-helpers-uniqueArray-example-1", + "id": "coverage:faker-helpers-uniqueArray-example-1", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray example 1", @@ -1194,10 +1247,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-uniqueArray-example-1" }, { - "id": "faker-helpers-uniqueArray-arg-source", + "id": "coverage:faker-helpers-uniqueArray-arg-source", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray arg source", @@ -1216,10 +1270,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-uniqueArray-arg-source" }, { - "id": "faker-helpers-uniqueArray-arg-length", + "id": "coverage:faker-helpers-uniqueArray-arg-length", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray arg length", @@ -1238,10 +1293,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-uniqueArray-arg-length" }, { - "id": "faker-helpers-uniqueArray-pair-source-length", + "id": "coverage:faker-helpers-uniqueArray-pair-source-length", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray pair source/length", @@ -1260,10 +1316,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-uniqueArray-pair-source-length" }, { - "id": "faker-helpers-weightedArrayElement-base", + "id": "coverage:faker-helpers-weightedArrayElement-base", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement", @@ -1282,10 +1339,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-weightedArrayElement-base" }, { - "id": "faker-helpers-weightedArrayElement-example-1", + "id": "coverage:faker-helpers-weightedArrayElement-example-1", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement example 1", @@ -1304,10 +1362,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-weightedArrayElement-example-1" }, { - "id": "faker-helpers-weightedArrayElement-arg-array", + "id": "coverage:faker-helpers-weightedArrayElement-arg-array", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement arg array", @@ -1326,10 +1385,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-weightedArrayElement-arg-array" }, { - "id": "domain-airline-aircraftType-base", + "id": "coverage:domain-airline-aircraftType-base", "sourceType": "domain", "command": "airline.aircraftType", "label": "airline.aircraftType", @@ -1348,10 +1408,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-aircraftType-base" }, { - "id": "domain-airline-flightNumber-base", + "id": "coverage:domain-airline-flightNumber-base", "sourceType": "domain", "command": "airline.flightNumber", "label": "airline.flightNumber", @@ -1370,10 +1431,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-flightNumber-base" }, { - "id": "domain-airline-iataCode-base", + "id": "coverage:domain-airline-iataCode-base", "sourceType": "domain", "command": "airline.iataCode", "label": "airline.iataCode", @@ -1392,10 +1454,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-iataCode-base" }, { - "id": "domain-airline-name-base", + "id": "coverage:domain-airline-name-base", "sourceType": "domain", "command": "airline.name", "label": "airline.name", @@ -1414,10 +1477,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-name-base" }, { - "id": "domain-airline-recordLocator-base", + "id": "coverage:domain-airline-recordLocator-base", "sourceType": "domain", "command": "airline.recordLocator", "label": "airline.recordLocator", @@ -1436,10 +1500,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-recordLocator-base" }, { - "id": "domain-airline-seat-base", + "id": "coverage:domain-airline-seat-base", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat", @@ -1458,10 +1523,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-seat-base" }, { - "id": "domain-airline-seat-example-1", + "id": "coverage:domain-airline-seat-example-1", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat example 1", @@ -1480,10 +1546,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-airline-seat-example-1" }, { - "id": "domain-airline-seat-example-2", + "id": "coverage:domain-airline-seat-example-2", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat example 2", @@ -1502,10 +1569,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-airline-seat-example-2" }, { - "id": "domain-airline-seat-arg-aircraftType", + "id": "coverage:domain-airline-seat-arg-aircraftType", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat arg aircraftType", @@ -1524,10 +1592,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-airline-seat-arg-aircraftType" }, { - "id": "domain-airplane-iataTypeCode-base", + "id": "coverage:domain-airplane-iataTypeCode-base", "sourceType": "domain", "command": "airplane.iataTypeCode", "label": "airplane.iataTypeCode", @@ -1546,10 +1615,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airplane-iataTypeCode-base" }, { - "id": "domain-airplane-name-base", + "id": "coverage:domain-airplane-name-base", "sourceType": "domain", "command": "airplane.name", "label": "airplane.name", @@ -1568,10 +1638,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airplane-name-base" }, { - "id": "domain-airport-iataCode-base", + "id": "coverage:domain-airport-iataCode-base", "sourceType": "domain", "command": "airport.iataCode", "label": "airport.iataCode", @@ -1590,10 +1661,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airport-iataCode-base" }, { - "id": "domain-airport-name-base", + "id": "coverage:domain-airport-name-base", "sourceType": "domain", "command": "airport.name", "label": "airport.name", @@ -1612,10 +1684,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airport-name-base" }, { - "id": "domain-animal-bear-base", + "id": "coverage:domain-animal-bear-base", "sourceType": "domain", "command": "animal.bear", "label": "animal.bear", @@ -1634,10 +1707,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-bear-base" }, { - "id": "domain-animal-bird-base", + "id": "coverage:domain-animal-bird-base", "sourceType": "domain", "command": "animal.bird", "label": "animal.bird", @@ -1656,10 +1730,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-bird-base" }, { - "id": "domain-animal-cat-base", + "id": "coverage:domain-animal-cat-base", "sourceType": "domain", "command": "animal.cat", "label": "animal.cat", @@ -1678,10 +1753,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cat-base" }, { - "id": "domain-animal-cetacean-base", + "id": "coverage:domain-animal-cetacean-base", "sourceType": "domain", "command": "animal.cetacean", "label": "animal.cetacean", @@ -1700,10 +1776,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cetacean-base" }, { - "id": "domain-animal-cow-base", + "id": "coverage:domain-animal-cow-base", "sourceType": "domain", "command": "animal.cow", "label": "animal.cow", @@ -1722,10 +1799,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cow-base" }, { - "id": "domain-animal-crocodilia-base", + "id": "coverage:domain-animal-crocodilia-base", "sourceType": "domain", "command": "animal.crocodilia", "label": "animal.crocodilia", @@ -1744,10 +1822,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-crocodilia-base" }, { - "id": "domain-animal-dog-base", + "id": "coverage:domain-animal-dog-base", "sourceType": "domain", "command": "animal.dog", "label": "animal.dog", @@ -1766,10 +1845,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-dog-base" }, { - "id": "domain-animal-fish-base", + "id": "coverage:domain-animal-fish-base", "sourceType": "domain", "command": "animal.fish", "label": "animal.fish", @@ -1788,10 +1868,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-fish-base" }, { - "id": "domain-animal-horse-base", + "id": "coverage:domain-animal-horse-base", "sourceType": "domain", "command": "animal.horse", "label": "animal.horse", @@ -1810,10 +1891,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-horse-base" }, { - "id": "domain-animal-insect-base", + "id": "coverage:domain-animal-insect-base", "sourceType": "domain", "command": "animal.insect", "label": "animal.insect", @@ -1832,10 +1914,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-insect-base" }, { - "id": "domain-animal-lion-base", + "id": "coverage:domain-animal-lion-base", "sourceType": "domain", "command": "animal.lion", "label": "animal.lion", @@ -1854,10 +1937,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-lion-base" }, { - "id": "domain-animal-petName-base", + "id": "coverage:domain-animal-petName-base", "sourceType": "domain", "command": "animal.petName", "label": "animal.petName", @@ -1876,10 +1960,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-petName-base" }, { - "id": "domain-animal-rabbit-base", + "id": "coverage:domain-animal-rabbit-base", "sourceType": "domain", "command": "animal.rabbit", "label": "animal.rabbit", @@ -1898,10 +1983,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-rabbit-base" }, { - "id": "domain-animal-rodent-base", + "id": "coverage:domain-animal-rodent-base", "sourceType": "domain", "command": "animal.rodent", "label": "animal.rodent", @@ -1920,10 +2006,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-rodent-base" }, { - "id": "domain-animal-snake-base", + "id": "coverage:domain-animal-snake-base", "sourceType": "domain", "command": "animal.snake", "label": "animal.snake", @@ -1942,10 +2029,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-snake-base" }, { - "id": "domain-animal-type-base", + "id": "coverage:domain-animal-type-base", "sourceType": "domain", "command": "animal.type", "label": "animal.type", @@ -1964,10 +2052,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-type-base" }, { - "id": "domain-autoIncrement-sequence-base", + "id": "coverage:domain-autoIncrement-sequence-base", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence", @@ -1986,10 +2075,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-autoIncrement-sequence-base" }, { - "id": "domain-autoIncrement-sequence-example-1", + "id": "coverage:domain-autoIncrement-sequence-example-1", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 1", @@ -2008,10 +2098,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-1" }, { - "id": "domain-autoIncrement-sequence-example-2", + "id": "coverage:domain-autoIncrement-sequence-example-2", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 2", @@ -2030,10 +2121,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-2" }, { - "id": "domain-autoIncrement-sequence-example-3", + "id": "coverage:domain-autoIncrement-sequence-example-3", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 3", @@ -2052,10 +2144,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-3" }, { - "id": "domain-autoIncrement-sequence-arg-start", + "id": "coverage:domain-autoIncrement-sequence-arg-start", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg start", @@ -2074,10 +2167,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-start" }, { - "id": "domain-autoIncrement-sequence-arg-step", + "id": "coverage:domain-autoIncrement-sequence-arg-step", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg step", @@ -2096,10 +2190,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-step" }, { - "id": "domain-autoIncrement-sequence-arg-prefix", + "id": "coverage:domain-autoIncrement-sequence-arg-prefix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg prefix", @@ -2118,10 +2213,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-prefix" }, { - "id": "domain-autoIncrement-sequence-arg-suffix", + "id": "coverage:domain-autoIncrement-sequence-arg-suffix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg suffix", @@ -2140,10 +2236,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["suffix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-suffix" }, { - "id": "domain-autoIncrement-sequence-arg-zeropadding", + "id": "coverage:domain-autoIncrement-sequence-arg-zeropadding", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg zeropadding", @@ -2162,10 +2259,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["zeropadding"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-zeropadding" }, { - "id": "domain-autoIncrement-sequence-pair-start-step", + "id": "coverage:domain-autoIncrement-sequence-pair-start-step", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair start/step", @@ -2184,10 +2282,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-start-step" }, { - "id": "domain-autoIncrement-sequence-pair-step-prefix", + "id": "coverage:domain-autoIncrement-sequence-pair-step-prefix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair step/prefix", @@ -2206,10 +2305,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-step-prefix" }, { - "id": "domain-autoIncrement-sequence-pair-prefix-suffix", + "id": "coverage:domain-autoIncrement-sequence-pair-prefix-suffix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair prefix/suffix", @@ -2228,10 +2328,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix", "suffix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-prefix-suffix" }, { - "id": "domain-autoIncrement-sequence-pair-suffix-zeropadding", + "id": "coverage:domain-autoIncrement-sequence-pair-suffix-zeropadding", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair suffix/zeropadding", @@ -2250,10 +2351,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["suffix", "zeropadding"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-suffix-zeropadding" }, { - "id": "domain-autoIncrement-timestamp-base", + "id": "coverage:domain-autoIncrement-timestamp-base", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp", @@ -2272,10 +2374,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-autoIncrement-timestamp-base" }, { - "id": "domain-autoIncrement-timestamp-example-1", + "id": "coverage:domain-autoIncrement-timestamp-example-1", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 1", @@ -2294,10 +2397,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-1" }, { - "id": "domain-autoIncrement-timestamp-example-2", + "id": "coverage:domain-autoIncrement-timestamp-example-2", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 2", @@ -2316,10 +2420,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-2" }, { - "id": "domain-autoIncrement-timestamp-example-3", + "id": "coverage:domain-autoIncrement-timestamp-example-3", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 3", @@ -2338,10 +2443,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-3" }, { - "id": "domain-autoIncrement-timestamp-arg-start", + "id": "coverage:domain-autoIncrement-timestamp-arg-start", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg start", @@ -2360,10 +2466,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-start" }, { - "id": "domain-autoIncrement-timestamp-arg-step", + "id": "coverage:domain-autoIncrement-timestamp-arg-step", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg step", @@ -2382,10 +2489,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-step" }, { - "id": "domain-autoIncrement-timestamp-arg-type", + "id": "coverage:domain-autoIncrement-timestamp-arg-type", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg type", @@ -2404,10 +2512,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["type"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-type" }, { - "id": "domain-autoIncrement-timestamp-arg-outputFormat", + "id": "coverage:domain-autoIncrement-timestamp-arg-outputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg outputFormat", @@ -2426,10 +2535,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["outputFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-outputFormat" }, { - "id": "domain-autoIncrement-timestamp-arg-inputFormat", + "id": "coverage:domain-autoIncrement-timestamp-arg-inputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg inputFormat", @@ -2448,10 +2558,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["inputFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-inputFormat" }, { - "id": "domain-autoIncrement-timestamp-pair-start-step", + "id": "coverage:domain-autoIncrement-timestamp-pair-start-step", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair start/step", @@ -2470,10 +2581,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-start-step" }, { - "id": "domain-autoIncrement-timestamp-pair-step-type", + "id": "coverage:domain-autoIncrement-timestamp-pair-step-type", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair step/type", @@ -2492,10 +2604,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step", "type"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-step-type" }, { - "id": "domain-autoIncrement-timestamp-pair-type-outputFormat", + "id": "coverage:domain-autoIncrement-timestamp-pair-type-outputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair type/outputFormat", @@ -2514,10 +2627,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["type", "outputFormat"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-type-outputFormat" }, { - "id": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", + "id": "coverage:domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair outputFormat/inputFormat", @@ -2536,10 +2650,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["outputFormat", "inputFormat"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat" }, { - "id": "domain-book-author-base", + "id": "coverage:domain-book-author-base", "sourceType": "domain", "command": "book.author", "label": "book.author", @@ -2558,10 +2673,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-author-base" }, { - "id": "domain-book-format-base", + "id": "coverage:domain-book-format-base", "sourceType": "domain", "command": "book.format", "label": "book.format", @@ -2580,10 +2696,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-format-base" }, { - "id": "domain-book-genre-base", + "id": "coverage:domain-book-genre-base", "sourceType": "domain", "command": "book.genre", "label": "book.genre", @@ -2602,10 +2719,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-genre-base" }, { - "id": "domain-book-publisher-base", + "id": "coverage:domain-book-publisher-base", "sourceType": "domain", "command": "book.publisher", "label": "book.publisher", @@ -2624,10 +2742,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-publisher-base" }, { - "id": "domain-book-series-base", + "id": "coverage:domain-book-series-base", "sourceType": "domain", "command": "book.series", "label": "book.series", @@ -2646,10 +2765,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-series-base" }, { - "id": "domain-book-title-base", + "id": "coverage:domain-book-title-base", "sourceType": "domain", "command": "book.title", "label": "book.title", @@ -2668,10 +2788,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-title-base" }, { - "id": "domain-chemicalElement-atomicNumber-base", + "id": "coverage:domain-chemicalElement-atomicNumber-base", "sourceType": "domain", "command": "chemicalElement.atomicNumber", "label": "chemicalElement.atomicNumber", @@ -2690,10 +2811,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-atomicNumber-base" }, { - "id": "domain-chemicalElement-name-base", + "id": "coverage:domain-chemicalElement-name-base", "sourceType": "domain", "command": "chemicalElement.name", "label": "chemicalElement.name", @@ -2712,10 +2834,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-name-base" }, { - "id": "domain-chemicalElement-symbol-base", + "id": "coverage:domain-chemicalElement-symbol-base", "sourceType": "domain", "command": "chemicalElement.symbol", "label": "chemicalElement.symbol", @@ -2734,10 +2857,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-symbol-base" }, { - "id": "domain-color-cssSupportedFunction-base", + "id": "coverage:domain-color-cssSupportedFunction-base", "sourceType": "domain", "command": "color.cssSupportedFunction", "label": "color.cssSupportedFunction", @@ -2756,10 +2880,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-cssSupportedFunction-base" }, { - "id": "domain-color-cssSupportedSpace-base", + "id": "coverage:domain-color-cssSupportedSpace-base", "sourceType": "domain", "command": "color.cssSupportedSpace", "label": "color.cssSupportedSpace", @@ -2778,10 +2903,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-cssSupportedSpace-base" }, { - "id": "domain-color-human-base", + "id": "coverage:domain-color-human-base", "sourceType": "domain", "command": "color.human", "label": "color.human", @@ -2800,10 +2926,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-human-base" }, { - "id": "domain-color-rgb-base", + "id": "coverage:domain-color-rgb-base", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb", @@ -2822,10 +2949,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-rgb-base" }, { - "id": "domain-color-rgb-arg-casing", + "id": "coverage:domain-color-rgb-arg-casing", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg casing", @@ -2844,10 +2972,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-casing" }, { - "id": "domain-color-rgb-arg-format", + "id": "coverage:domain-color-rgb-arg-format", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg format", @@ -2866,10 +2995,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["format"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-format" }, { - "id": "domain-color-rgb-arg-includeAlpha", + "id": "coverage:domain-color-rgb-arg-includeAlpha", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg includeAlpha", @@ -2888,10 +3018,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeAlpha"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-includeAlpha" }, { - "id": "domain-color-rgb-arg-prefix", + "id": "coverage:domain-color-rgb-arg-prefix", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg prefix", @@ -2910,10 +3041,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-prefix" }, { - "id": "domain-color-rgb-pair-casing-format", + "id": "coverage:domain-color-rgb-pair-casing-format", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair casing/format", @@ -2932,10 +3064,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "format"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-casing-format" }, { - "id": "domain-color-rgb-pair-format-includeAlpha", + "id": "coverage:domain-color-rgb-pair-format-includeAlpha", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair format/includeAlpha", @@ -2954,10 +3087,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-format-includeAlpha" }, { - "id": "domain-color-rgb-pair-includeAlpha-prefix", + "id": "coverage:domain-color-rgb-pair-includeAlpha-prefix", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair includeAlpha/prefix", @@ -2976,10 +3110,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeAlpha", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-includeAlpha-prefix" }, { - "id": "domain-color-space-base", + "id": "coverage:domain-color-space-base", "sourceType": "domain", "command": "color.space", "label": "color.space", @@ -2998,10 +3133,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-space-base" }, { - "id": "domain-commerce-department-base", + "id": "coverage:domain-commerce-department-base", "sourceType": "domain", "command": "commerce.department", "label": "commerce.department", @@ -3020,10 +3156,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-department-base" }, { - "id": "domain-commerce-isbn-base", + "id": "coverage:domain-commerce-isbn-base", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn", @@ -3042,10 +3179,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-isbn-base" }, { - "id": "domain-commerce-isbn-arg-separator", + "id": "coverage:domain-commerce-isbn-arg-separator", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn arg separator", @@ -3064,10 +3202,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-isbn-arg-separator" }, { - "id": "domain-commerce-isbn-arg-variant", + "id": "coverage:domain-commerce-isbn-arg-variant", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn arg variant", @@ -3086,10 +3225,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["variant"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-isbn-arg-variant" }, { - "id": "domain-commerce-isbn-pair-separator-variant", + "id": "coverage:domain-commerce-isbn-pair-separator-variant", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn pair separator/variant", @@ -3108,10 +3248,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "variant"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-isbn-pair-separator-variant" }, { - "id": "domain-commerce-price-base", + "id": "coverage:domain-commerce-price-base", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price", @@ -3130,10 +3271,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-price-base" }, { - "id": "domain-commerce-price-example-1", + "id": "coverage:domain-commerce-price-example-1", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price example 1", @@ -3152,10 +3294,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-commerce-price-example-1" }, { - "id": "domain-commerce-price-arg-dec", + "id": "coverage:domain-commerce-price-arg-dec", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg dec", @@ -3174,10 +3317,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-dec" }, { - "id": "domain-commerce-price-arg-max", + "id": "coverage:domain-commerce-price-arg-max", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg max", @@ -3196,10 +3340,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-max" }, { - "id": "domain-commerce-price-arg-min", + "id": "coverage:domain-commerce-price-arg-min", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg min", @@ -3218,10 +3363,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-min" }, { - "id": "domain-commerce-price-arg-symbol", + "id": "coverage:domain-commerce-price-arg-symbol", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg symbol", @@ -3240,10 +3386,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-symbol" }, { - "id": "domain-commerce-price-pair-dec-max", + "id": "coverage:domain-commerce-price-pair-dec-max", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair dec/max", @@ -3262,10 +3409,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-dec-max" }, { - "id": "domain-commerce-price-pair-max-min", + "id": "coverage:domain-commerce-price-pair-max-min", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair max/min", @@ -3284,10 +3432,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-max-min" }, { - "id": "domain-commerce-price-pair-min-symbol", + "id": "coverage:domain-commerce-price-pair-min-symbol", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair min/symbol", @@ -3306,10 +3455,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-min-symbol" }, { - "id": "domain-commerce-product-base", + "id": "coverage:domain-commerce-product-base", "sourceType": "domain", "command": "commerce.product", "label": "commerce.product", @@ -3328,10 +3478,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-product-base" }, { - "id": "domain-commerce-productAdjective-base", + "id": "coverage:domain-commerce-productAdjective-base", "sourceType": "domain", "command": "commerce.productAdjective", "label": "commerce.productAdjective", @@ -3350,10 +3501,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productAdjective-base" }, { - "id": "domain-commerce-productDescription-base", + "id": "coverage:domain-commerce-productDescription-base", "sourceType": "domain", "command": "commerce.productDescription", "label": "commerce.productDescription", @@ -3372,10 +3524,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productDescription-base" }, { - "id": "domain-commerce-productMaterial-base", + "id": "coverage:domain-commerce-productMaterial-base", "sourceType": "domain", "command": "commerce.productMaterial", "label": "commerce.productMaterial", @@ -3394,10 +3547,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productMaterial-base" }, { - "id": "domain-commerce-productName-base", + "id": "coverage:domain-commerce-productName-base", "sourceType": "domain", "command": "commerce.productName", "label": "commerce.productName", @@ -3416,10 +3570,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productName-base" }, { - "id": "domain-commerce-upc-base", + "id": "coverage:domain-commerce-upc-base", "sourceType": "domain", "command": "commerce.upc", "label": "commerce.upc", @@ -3438,10 +3593,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-upc-base" }, { - "id": "domain-commerce-upc-arg-prefix", + "id": "coverage:domain-commerce-upc-arg-prefix", "sourceType": "domain", "command": "commerce.upc", "label": "commerce.upc arg prefix", @@ -3460,10 +3616,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-upc-arg-prefix" }, { - "id": "domain-company-buzzAdjective-base", + "id": "coverage:domain-company-buzzAdjective-base", "sourceType": "domain", "command": "company.buzzAdjective", "label": "company.buzzAdjective", @@ -3482,10 +3639,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzAdjective-base" }, { - "id": "domain-company-buzzNoun-base", + "id": "coverage:domain-company-buzzNoun-base", "sourceType": "domain", "command": "company.buzzNoun", "label": "company.buzzNoun", @@ -3504,10 +3662,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzNoun-base" }, { - "id": "domain-company-buzzPhrase-base", + "id": "coverage:domain-company-buzzPhrase-base", "sourceType": "domain", "command": "company.buzzPhrase", "label": "company.buzzPhrase", @@ -3526,10 +3685,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzPhrase-base" }, { - "id": "domain-company-buzzVerb-base", + "id": "coverage:domain-company-buzzVerb-base", "sourceType": "domain", "command": "company.buzzVerb", "label": "company.buzzVerb", @@ -3548,10 +3708,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzVerb-base" }, { - "id": "domain-company-catchPhrase-base", + "id": "coverage:domain-company-catchPhrase-base", "sourceType": "domain", "command": "company.catchPhrase", "label": "company.catchPhrase", @@ -3570,10 +3731,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhrase-base" }, { - "id": "domain-company-catchPhraseAdjective-base", + "id": "coverage:domain-company-catchPhraseAdjective-base", "sourceType": "domain", "command": "company.catchPhraseAdjective", "label": "company.catchPhraseAdjective", @@ -3592,10 +3754,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseAdjective-base" }, { - "id": "domain-company-catchPhraseDescriptor-base", + "id": "coverage:domain-company-catchPhraseDescriptor-base", "sourceType": "domain", "command": "company.catchPhraseDescriptor", "label": "company.catchPhraseDescriptor", @@ -3614,10 +3777,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseDescriptor-base" }, { - "id": "domain-company-catchPhraseNoun-base", + "id": "coverage:domain-company-catchPhraseNoun-base", "sourceType": "domain", "command": "company.catchPhraseNoun", "label": "company.catchPhraseNoun", @@ -3636,10 +3800,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseNoun-base" }, { - "id": "domain-company-name-base", + "id": "coverage:domain-company-name-base", "sourceType": "domain", "command": "company.name", "label": "company.name", @@ -3658,10 +3823,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-name-base" }, { - "id": "domain-database-collation-base", + "id": "coverage:domain-database-collation-base", "sourceType": "domain", "command": "database.collation", "label": "database.collation", @@ -3680,10 +3846,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-collation-base" }, { - "id": "domain-database-column-base", + "id": "coverage:domain-database-column-base", "sourceType": "domain", "command": "database.column", "label": "database.column", @@ -3702,10 +3869,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-column-base" }, { - "id": "domain-database-engine-base", + "id": "coverage:domain-database-engine-base", "sourceType": "domain", "command": "database.engine", "label": "database.engine", @@ -3724,10 +3892,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-engine-base" }, { - "id": "domain-database-mongodbObjectId-base", + "id": "coverage:domain-database-mongodbObjectId-base", "sourceType": "domain", "command": "database.mongodbObjectId", "label": "database.mongodbObjectId", @@ -3746,10 +3915,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-mongodbObjectId-base" }, { - "id": "domain-database-type-base", + "id": "coverage:domain-database-type-base", "sourceType": "domain", "command": "database.type", "label": "database.type", @@ -3768,10 +3938,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-type-base" }, { - "id": "domain-datatype-boolean-base", + "id": "coverage:domain-datatype-boolean-base", "sourceType": "domain", "command": "datatype.boolean", "label": "datatype.boolean", @@ -3790,10 +3961,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-datatype-boolean-base" }, { - "id": "domain-datatype-boolean-arg-probability", + "id": "coverage:domain-datatype-boolean-arg-probability", "sourceType": "domain", "command": "datatype.boolean", "label": "datatype.boolean arg probability", @@ -3812,10 +3984,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["probability"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-datatype-boolean-arg-probability" }, { - "id": "domain-datatype-enum-base", + "id": "coverage:domain-datatype-enum-base", "sourceType": "domain", "command": "datatype.enum", "label": "datatype.enum", @@ -3834,10 +4007,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-datatype-enum-base" }, { - "id": "domain-datatype-enum-arg-values", + "id": "coverage:domain-datatype-enum-arg-values", "sourceType": "domain", "command": "datatype.enum", "label": "datatype.enum arg values", @@ -3856,10 +4030,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["values"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-datatype-enum-arg-values" }, { - "id": "domain-date-anytime-base", + "id": "coverage:domain-date-anytime-base", "sourceType": "domain", "command": "date.anytime", "label": "date.anytime", @@ -3878,10 +4053,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-anytime-base" }, { - "id": "domain-date-anytime-arg-refDate", + "id": "coverage:domain-date-anytime-arg-refDate", "sourceType": "domain", "command": "date.anytime", "label": "date.anytime arg refDate", @@ -3900,10 +4076,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-anytime-arg-refDate" }, { - "id": "domain-date-between-base", + "id": "coverage:domain-date-between-base", "sourceType": "domain", "command": "date.between", "label": "date.between", @@ -3922,10 +4099,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-between-base" }, { - "id": "domain-date-between-arg-from", + "id": "coverage:domain-date-between-arg-from", "sourceType": "domain", "command": "date.between", "label": "date.between arg from", @@ -3944,10 +4122,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["from"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-between-arg-from" }, { - "id": "domain-date-between-arg-to", + "id": "coverage:domain-date-between-arg-to", "sourceType": "domain", "command": "date.between", "label": "date.between arg to", @@ -3966,10 +4145,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["to"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-between-arg-to" }, { - "id": "domain-date-between-pair-from-to", + "id": "coverage:domain-date-between-pair-from-to", "sourceType": "domain", "command": "date.between", "label": "date.between pair from/to", @@ -3988,10 +4168,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["from", "to"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-between-pair-from-to" }, { - "id": "domain-date-birthdate-base", + "id": "coverage:domain-date-birthdate-base", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate", @@ -4010,10 +4191,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-birthdate-base" }, { - "id": "domain-date-birthdate-example-1", + "id": "coverage:domain-date-birthdate-example-1", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate example 1", @@ -4032,10 +4214,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-date-birthdate-example-1" }, { - "id": "domain-date-birthdate-arg-refDate", + "id": "coverage:domain-date-birthdate-arg-refDate", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg refDate", @@ -4054,10 +4237,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-refDate" }, { - "id": "domain-date-birthdate-arg-max", + "id": "coverage:domain-date-birthdate-arg-max", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg max", @@ -4076,10 +4260,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-max" }, { - "id": "domain-date-birthdate-arg-min", + "id": "coverage:domain-date-birthdate-arg-min", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg min", @@ -4098,10 +4283,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-min" }, { - "id": "domain-date-birthdate-arg-mode", + "id": "coverage:domain-date-birthdate-arg-mode", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg mode", @@ -4120,10 +4306,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["mode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-mode" }, { - "id": "domain-date-birthdate-pair-refDate-max", + "id": "coverage:domain-date-birthdate-pair-refDate-max", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair refDate/max", @@ -4142,10 +4329,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-refDate-max" }, { - "id": "domain-date-birthdate-pair-max-min", + "id": "coverage:domain-date-birthdate-pair-max-min", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair max/min", @@ -4164,10 +4352,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-max-min" }, { - "id": "domain-date-birthdate-pair-min-mode", + "id": "coverage:domain-date-birthdate-pair-min-mode", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair min/mode", @@ -4186,10 +4375,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "mode"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-min-mode" }, { - "id": "domain-date-future-base", + "id": "coverage:domain-date-future-base", "sourceType": "domain", "command": "date.future", "label": "date.future", @@ -4208,10 +4398,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-future-base" }, { - "id": "domain-date-future-arg-refDate", + "id": "coverage:domain-date-future-arg-refDate", "sourceType": "domain", "command": "date.future", "label": "date.future arg refDate", @@ -4230,10 +4421,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-future-arg-refDate" }, { - "id": "domain-date-future-arg-years", + "id": "coverage:domain-date-future-arg-years", "sourceType": "domain", "command": "date.future", "label": "date.future arg years", @@ -4252,10 +4444,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["years"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-future-arg-years" }, { - "id": "domain-date-future-pair-refDate-years", + "id": "coverage:domain-date-future-pair-refDate-years", "sourceType": "domain", "command": "date.future", "label": "date.future pair refDate/years", @@ -4274,10 +4467,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "years"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-future-pair-refDate-years" }, { - "id": "domain-date-month-base", + "id": "coverage:domain-date-month-base", "sourceType": "domain", "command": "date.month", "label": "date.month", @@ -4296,10 +4490,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-month-base" }, { - "id": "domain-date-month-arg-abbreviated", + "id": "coverage:domain-date-month-arg-abbreviated", "sourceType": "domain", "command": "date.month", "label": "date.month arg abbreviated", @@ -4318,10 +4513,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-month-arg-abbreviated" }, { - "id": "domain-date-month-arg-context", + "id": "coverage:domain-date-month-arg-context", "sourceType": "domain", "command": "date.month", "label": "date.month arg context", @@ -4340,10 +4536,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["context"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-month-arg-context" }, { - "id": "domain-date-month-pair-abbreviated-context", + "id": "coverage:domain-date-month-pair-abbreviated-context", "sourceType": "domain", "command": "date.month", "label": "date.month pair abbreviated/context", @@ -4362,10 +4559,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-month-pair-abbreviated-context" }, { - "id": "domain-date-past-base", + "id": "coverage:domain-date-past-base", "sourceType": "domain", "command": "date.past", "label": "date.past", @@ -4384,10 +4582,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-past-base" }, { - "id": "domain-date-past-arg-refDate", + "id": "coverage:domain-date-past-arg-refDate", "sourceType": "domain", "command": "date.past", "label": "date.past arg refDate", @@ -4406,10 +4605,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-past-arg-refDate" }, { - "id": "domain-date-past-arg-years", + "id": "coverage:domain-date-past-arg-years", "sourceType": "domain", "command": "date.past", "label": "date.past arg years", @@ -4428,10 +4628,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["years"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-past-arg-years" }, { - "id": "domain-date-past-pair-refDate-years", + "id": "coverage:domain-date-past-pair-refDate-years", "sourceType": "domain", "command": "date.past", "label": "date.past pair refDate/years", @@ -4450,10 +4651,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "years"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-past-pair-refDate-years" }, { - "id": "domain-date-recent-base", + "id": "coverage:domain-date-recent-base", "sourceType": "domain", "command": "date.recent", "label": "date.recent", @@ -4472,10 +4674,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-recent-base" }, { - "id": "domain-date-recent-arg-days", + "id": "coverage:domain-date-recent-arg-days", "sourceType": "domain", "command": "date.recent", "label": "date.recent arg days", @@ -4494,10 +4697,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-recent-arg-days" }, { - "id": "domain-date-recent-arg-refDate", + "id": "coverage:domain-date-recent-arg-refDate", "sourceType": "domain", "command": "date.recent", "label": "date.recent arg refDate", @@ -4516,10 +4720,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-recent-arg-refDate" }, { - "id": "domain-date-recent-pair-days-refDate", + "id": "coverage:domain-date-recent-pair-days-refDate", "sourceType": "domain", "command": "date.recent", "label": "date.recent pair days/refDate", @@ -4538,10 +4743,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-recent-pair-days-refDate" }, { - "id": "domain-date-soon-base", + "id": "coverage:domain-date-soon-base", "sourceType": "domain", "command": "date.soon", "label": "date.soon", @@ -4560,10 +4766,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-soon-base" }, { - "id": "domain-date-soon-arg-days", + "id": "coverage:domain-date-soon-arg-days", "sourceType": "domain", "command": "date.soon", "label": "date.soon arg days", @@ -4582,10 +4789,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-soon-arg-days" }, { - "id": "domain-date-soon-arg-refDate", + "id": "coverage:domain-date-soon-arg-refDate", "sourceType": "domain", "command": "date.soon", "label": "date.soon arg refDate", @@ -4604,10 +4812,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-soon-arg-refDate" }, { - "id": "domain-date-soon-pair-days-refDate", + "id": "coverage:domain-date-soon-pair-days-refDate", "sourceType": "domain", "command": "date.soon", "label": "date.soon pair days/refDate", @@ -4626,10 +4835,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-soon-pair-days-refDate" }, { - "id": "domain-date-timeZone-base", + "id": "coverage:domain-date-timeZone-base", "sourceType": "domain", "command": "date.timeZone", "label": "date.timeZone", @@ -4648,10 +4858,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-timeZone-base" }, { - "id": "domain-date-weekday-base", + "id": "coverage:domain-date-weekday-base", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday", @@ -4670,10 +4881,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-weekday-base" }, { - "id": "domain-date-weekday-arg-abbreviated", + "id": "coverage:domain-date-weekday-arg-abbreviated", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday arg abbreviated", @@ -4692,10 +4904,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-weekday-arg-abbreviated" }, { - "id": "domain-date-weekday-arg-context", + "id": "coverage:domain-date-weekday-arg-context", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday arg context", @@ -4714,10 +4927,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["context"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-weekday-arg-context" }, { - "id": "domain-date-weekday-pair-abbreviated-context", + "id": "coverage:domain-date-weekday-pair-abbreviated-context", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday pair abbreviated/context", @@ -4736,10 +4950,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-weekday-pair-abbreviated-context" }, { - "id": "domain-finance-accountName-base", + "id": "coverage:domain-finance-accountName-base", "sourceType": "domain", "command": "finance.accountName", "label": "finance.accountName", @@ -4758,10 +4973,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-accountName-base" }, { - "id": "domain-finance-accountNumber-base", + "id": "coverage:domain-finance-accountNumber-base", "sourceType": "domain", "command": "finance.accountNumber", "label": "finance.accountNumber", @@ -4780,10 +4996,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-accountNumber-base" }, { - "id": "domain-finance-accountNumber-arg-length", + "id": "coverage:domain-finance-accountNumber-arg-length", "sourceType": "domain", "command": "finance.accountNumber", "label": "finance.accountNumber arg length", @@ -4802,10 +5019,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-accountNumber-arg-length" }, { - "id": "domain-finance-amount-base", + "id": "coverage:domain-finance-amount-base", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount", @@ -4824,10 +5042,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-amount-base" }, { - "id": "domain-finance-amount-arg-autoFormat", + "id": "coverage:domain-finance-amount-arg-autoFormat", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg autoFormat", @@ -4846,10 +5065,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["autoFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-autoFormat" }, { - "id": "domain-finance-amount-arg-dec", + "id": "coverage:domain-finance-amount-arg-dec", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg dec", @@ -4868,10 +5088,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-dec" }, { - "id": "domain-finance-amount-arg-max", + "id": "coverage:domain-finance-amount-arg-max", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg max", @@ -4890,10 +5111,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-max" }, { - "id": "domain-finance-amount-arg-min", + "id": "coverage:domain-finance-amount-arg-min", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg min", @@ -4912,10 +5134,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-min" }, { - "id": "domain-finance-amount-arg-symbol", + "id": "coverage:domain-finance-amount-arg-symbol", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg symbol", @@ -4934,10 +5157,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-symbol" }, { - "id": "domain-finance-amount-pair-autoFormat-dec", + "id": "coverage:domain-finance-amount-pair-autoFormat-dec", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair autoFormat/dec", @@ -4956,10 +5180,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["autoFormat", "dec"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-autoFormat-dec" }, { - "id": "domain-finance-amount-pair-dec-max", + "id": "coverage:domain-finance-amount-pair-dec-max", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair dec/max", @@ -4978,10 +5203,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-dec-max" }, { - "id": "domain-finance-amount-pair-max-min", + "id": "coverage:domain-finance-amount-pair-max-min", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair max/min", @@ -5000,10 +5226,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-max-min" }, { - "id": "domain-finance-amount-pair-min-symbol", + "id": "coverage:domain-finance-amount-pair-min-symbol", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair min/symbol", @@ -5022,10 +5249,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-min-symbol" }, { - "id": "domain-finance-bic-base", + "id": "coverage:domain-finance-bic-base", "sourceType": "domain", "command": "finance.bic", "label": "finance.bic", @@ -5044,10 +5272,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-bic-base" }, { - "id": "domain-finance-bic-arg-includeBranchCode", + "id": "coverage:domain-finance-bic-arg-includeBranchCode", "sourceType": "domain", "command": "finance.bic", "label": "finance.bic arg includeBranchCode", @@ -5066,10 +5295,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeBranchCode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-bic-arg-includeBranchCode" }, { - "id": "domain-finance-bitcoinAddress-base", + "id": "coverage:domain-finance-bitcoinAddress-base", "sourceType": "domain", "command": "finance.bitcoinAddress", "label": "finance.bitcoinAddress", @@ -5088,10 +5318,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-bitcoinAddress-base" }, { - "id": "domain-finance-creditCardCVV-base", + "id": "coverage:domain-finance-creditCardCVV-base", "sourceType": "domain", "command": "finance.creditCardCVV", "label": "finance.creditCardCVV", @@ -5110,10 +5341,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardCVV-base" }, { - "id": "domain-finance-creditCardIssuer-base", + "id": "coverage:domain-finance-creditCardIssuer-base", "sourceType": "domain", "command": "finance.creditCardIssuer", "label": "finance.creditCardIssuer", @@ -5132,10 +5364,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardIssuer-base" }, { - "id": "domain-finance-creditCardNumber-base", + "id": "coverage:domain-finance-creditCardNumber-base", "sourceType": "domain", "command": "finance.creditCardNumber", "label": "finance.creditCardNumber", @@ -5154,10 +5387,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardNumber-base" }, { - "id": "domain-finance-creditCardNumber-arg-issuer", + "id": "coverage:domain-finance-creditCardNumber-arg-issuer", "sourceType": "domain", "command": "finance.creditCardNumber", "label": "finance.creditCardNumber arg issuer", @@ -5176,10 +5410,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["issuer"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-creditCardNumber-arg-issuer" }, { - "id": "domain-finance-currencyCode-base", + "id": "coverage:domain-finance-currencyCode-base", "sourceType": "domain", "command": "finance.currencyCode", "label": "finance.currencyCode", @@ -5198,10 +5433,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyCode-base" }, { - "id": "domain-finance-currencyName-base", + "id": "coverage:domain-finance-currencyName-base", "sourceType": "domain", "command": "finance.currencyName", "label": "finance.currencyName", @@ -5220,10 +5456,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyName-base" }, { - "id": "domain-finance-currencyNumericCode-base", + "id": "coverage:domain-finance-currencyNumericCode-base", "sourceType": "domain", "command": "finance.currencyNumericCode", "label": "finance.currencyNumericCode", @@ -5242,10 +5479,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyNumericCode-base" }, { - "id": "domain-finance-currencySymbol-base", + "id": "coverage:domain-finance-currencySymbol-base", "sourceType": "domain", "command": "finance.currencySymbol", "label": "finance.currencySymbol", @@ -5264,10 +5502,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencySymbol-base" }, { - "id": "domain-finance-ethereumAddress-base", + "id": "coverage:domain-finance-ethereumAddress-base", "sourceType": "domain", "command": "finance.ethereumAddress", "label": "finance.ethereumAddress", @@ -5286,10 +5525,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-ethereumAddress-base" }, { - "id": "domain-finance-iban-base", + "id": "coverage:domain-finance-iban-base", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban", @@ -5308,10 +5548,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-iban-base" }, { - "id": "domain-finance-iban-arg-countryCode", + "id": "coverage:domain-finance-iban-arg-countryCode", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban arg countryCode", @@ -5330,10 +5571,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["countryCode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-iban-arg-countryCode" }, { - "id": "domain-finance-iban-arg-formatted", + "id": "coverage:domain-finance-iban-arg-formatted", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban arg formatted", @@ -5352,10 +5594,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["formatted"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-iban-arg-formatted" }, { - "id": "domain-finance-iban-pair-countryCode-formatted", + "id": "coverage:domain-finance-iban-pair-countryCode-formatted", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban pair countryCode/formatted", @@ -5374,10 +5617,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["countryCode", "formatted"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-iban-pair-countryCode-formatted" }, { - "id": "domain-finance-litecoinAddress-base", + "id": "coverage:domain-finance-litecoinAddress-base", "sourceType": "domain", "command": "finance.litecoinAddress", "label": "finance.litecoinAddress", @@ -5396,10 +5640,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-litecoinAddress-base" }, { - "id": "domain-finance-pin-base", + "id": "coverage:domain-finance-pin-base", "sourceType": "domain", "command": "finance.pin", "label": "finance.pin", @@ -5418,10 +5663,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-pin-base" }, { - "id": "domain-finance-pin-arg-length", + "id": "coverage:domain-finance-pin-arg-length", "sourceType": "domain", "command": "finance.pin", "label": "finance.pin arg length", @@ -5440,10 +5686,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-pin-arg-length" }, { - "id": "domain-finance-routingNumber-base", + "id": "coverage:domain-finance-routingNumber-base", "sourceType": "domain", "command": "finance.routingNumber", "label": "finance.routingNumber", @@ -5462,10 +5709,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-routingNumber-base" }, { - "id": "domain-finance-transactionDescription-base", + "id": "coverage:domain-finance-transactionDescription-base", "sourceType": "domain", "command": "finance.transactionDescription", "label": "finance.transactionDescription", @@ -5484,10 +5732,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-transactionDescription-base" }, { - "id": "domain-finance-transactionType-base", + "id": "coverage:domain-finance-transactionType-base", "sourceType": "domain", "command": "finance.transactionType", "label": "finance.transactionType", @@ -5506,10 +5755,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-transactionType-base" }, { - "id": "domain-food-adjective-base", + "id": "coverage:domain-food-adjective-base", "sourceType": "domain", "command": "food.adjective", "label": "food.adjective", @@ -5528,10 +5778,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-adjective-base" }, { - "id": "domain-food-description-base", + "id": "coverage:domain-food-description-base", "sourceType": "domain", "command": "food.description", "label": "food.description", @@ -5550,10 +5801,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-description-base" }, { - "id": "domain-food-dish-base", + "id": "coverage:domain-food-dish-base", "sourceType": "domain", "command": "food.dish", "label": "food.dish", @@ -5572,10 +5824,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-dish-base" }, { - "id": "domain-food-ethnicCategory-base", + "id": "coverage:domain-food-ethnicCategory-base", "sourceType": "domain", "command": "food.ethnicCategory", "label": "food.ethnicCategory", @@ -5594,10 +5847,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-ethnicCategory-base" }, { - "id": "domain-food-fruit-base", + "id": "coverage:domain-food-fruit-base", "sourceType": "domain", "command": "food.fruit", "label": "food.fruit", @@ -5616,10 +5870,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-fruit-base" }, { - "id": "domain-food-ingredient-base", + "id": "coverage:domain-food-ingredient-base", "sourceType": "domain", "command": "food.ingredient", "label": "food.ingredient", @@ -5638,10 +5893,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-ingredient-base" }, { - "id": "domain-food-meat-base", + "id": "coverage:domain-food-meat-base", "sourceType": "domain", "command": "food.meat", "label": "food.meat", @@ -5660,10 +5916,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-meat-base" }, { - "id": "domain-food-spice-base", + "id": "coverage:domain-food-spice-base", "sourceType": "domain", "command": "food.spice", "label": "food.spice", @@ -5682,10 +5939,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-spice-base" }, { - "id": "domain-food-vegetable-base", + "id": "coverage:domain-food-vegetable-base", "sourceType": "domain", "command": "food.vegetable", "label": "food.vegetable", @@ -5704,10 +5962,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-vegetable-base" }, { - "id": "domain-git-branch-base", + "id": "coverage:domain-git-branch-base", "sourceType": "domain", "command": "git.branch", "label": "git.branch", @@ -5726,10 +5985,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-branch-base" }, { - "id": "domain-git-commitDate-base", + "id": "coverage:domain-git-commitDate-base", "sourceType": "domain", "command": "git.commitDate", "label": "git.commitDate", @@ -5748,10 +6008,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitDate-base" }, { - "id": "domain-git-commitEntry-base", + "id": "coverage:domain-git-commitEntry-base", "sourceType": "domain", "command": "git.commitEntry", "label": "git.commitEntry", @@ -5770,10 +6031,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitEntry-base" }, { - "id": "domain-git-commitMessage-base", + "id": "coverage:domain-git-commitMessage-base", "sourceType": "domain", "command": "git.commitMessage", "label": "git.commitMessage", @@ -5792,10 +6054,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitMessage-base" }, { - "id": "domain-git-commitSha-base", + "id": "coverage:domain-git-commitSha-base", "sourceType": "domain", "command": "git.commitSha", "label": "git.commitSha", @@ -5814,10 +6077,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitSha-base" }, { - "id": "domain-hacker-abbreviation-base", + "id": "coverage:domain-hacker-abbreviation-base", "sourceType": "domain", "command": "hacker.abbreviation", "label": "hacker.abbreviation", @@ -5836,10 +6100,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-abbreviation-base" }, { - "id": "domain-hacker-adjective-base", + "id": "coverage:domain-hacker-adjective-base", "sourceType": "domain", "command": "hacker.adjective", "label": "hacker.adjective", @@ -5858,10 +6123,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-adjective-base" }, { - "id": "domain-hacker-ingverb-base", + "id": "coverage:domain-hacker-ingverb-base", "sourceType": "domain", "command": "hacker.ingverb", "label": "hacker.ingverb", @@ -5880,10 +6146,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-ingverb-base" }, { - "id": "domain-hacker-noun-base", + "id": "coverage:domain-hacker-noun-base", "sourceType": "domain", "command": "hacker.noun", "label": "hacker.noun", @@ -5902,10 +6169,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-noun-base" }, { - "id": "domain-hacker-phrase-base", + "id": "coverage:domain-hacker-phrase-base", "sourceType": "domain", "command": "hacker.phrase", "label": "hacker.phrase", @@ -5924,10 +6192,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-phrase-base" }, { - "id": "domain-hacker-verb-base", + "id": "coverage:domain-hacker-verb-base", "sourceType": "domain", "command": "hacker.verb", "label": "hacker.verb", @@ -5946,10 +6215,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-verb-base" }, { - "id": "domain-image-avatar-base", + "id": "coverage:domain-image-avatar-base", "sourceType": "domain", "command": "image.avatar", "label": "image.avatar", @@ -5968,10 +6238,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-avatar-base" }, { - "id": "domain-image-avatarGitHub-base", + "id": "coverage:domain-image-avatarGitHub-base", "sourceType": "domain", "command": "image.avatarGitHub", "label": "image.avatarGitHub", @@ -5990,10 +6261,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-avatarGitHub-base" }, { - "id": "domain-image-dataUri-base", + "id": "coverage:domain-image-dataUri-base", "sourceType": "domain", "command": "image.dataUri", "label": "image.dataUri", @@ -6012,10 +6284,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-dataUri-base" }, { - "id": "domain-image-personPortrait-base", + "id": "coverage:domain-image-personPortrait-base", "sourceType": "domain", "command": "image.personPortrait", "label": "image.personPortrait", @@ -6034,10 +6307,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-personPortrait-base" }, { - "id": "domain-image-url-base", + "id": "coverage:domain-image-url-base", "sourceType": "domain", "command": "image.url", "label": "image.url", @@ -6056,10 +6330,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-url-base" }, { - "id": "domain-image-url-arg-height", + "id": "coverage:domain-image-url-arg-height", "sourceType": "domain", "command": "image.url", "label": "image.url arg height", @@ -6078,10 +6353,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["height"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-image-url-arg-height" }, { - "id": "domain-image-url-arg-width", + "id": "coverage:domain-image-url-arg-width", "sourceType": "domain", "command": "image.url", "label": "image.url arg width", @@ -6100,10 +6376,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["width"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-image-url-arg-width" }, { - "id": "domain-image-url-pair-height-width", + "id": "coverage:domain-image-url-pair-height-width", "sourceType": "domain", "command": "image.url", "label": "image.url pair height/width", @@ -6122,10 +6399,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["height", "width"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-image-url-pair-height-width" }, { - "id": "domain-image-urlLoremFlickr-base", + "id": "coverage:domain-image-urlLoremFlickr-base", "sourceType": "domain", "command": "image.urlLoremFlickr", "label": "image.urlLoremFlickr", @@ -6144,10 +6422,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-urlLoremFlickr-base" }, { - "id": "domain-image-urlPicsumPhotos-base", + "id": "coverage:domain-image-urlPicsumPhotos-base", "sourceType": "domain", "command": "image.urlPicsumPhotos", "label": "image.urlPicsumPhotos", @@ -6166,10 +6445,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-urlPicsumPhotos-base" }, { - "id": "domain-internet-displayName-base", + "id": "coverage:domain-internet-displayName-base", "sourceType": "domain", "command": "internet.displayName", "label": "internet.displayName", @@ -6188,10 +6468,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-displayName-base" }, { - "id": "domain-internet-domainName-base", + "id": "coverage:domain-internet-domainName-base", "sourceType": "domain", "command": "internet.domainName", "label": "internet.domainName", @@ -6210,10 +6491,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainName-base" }, { - "id": "domain-internet-domainSuffix-base", + "id": "coverage:domain-internet-domainSuffix-base", "sourceType": "domain", "command": "internet.domainSuffix", "label": "internet.domainSuffix", @@ -6232,10 +6514,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainSuffix-base" }, { - "id": "domain-internet-domainWord-base", + "id": "coverage:domain-internet-domainWord-base", "sourceType": "domain", "command": "internet.domainWord", "label": "internet.domainWord", @@ -6254,10 +6537,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainWord-base" }, { - "id": "domain-internet-email-base", + "id": "coverage:domain-internet-email-base", "sourceType": "domain", "command": "internet.email", "label": "internet.email", @@ -6276,10 +6560,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-email-base" }, { - "id": "domain-internet-email-arg-allowSpecialCharacters", + "id": "coverage:domain-internet-email-arg-allowSpecialCharacters", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg allowSpecialCharacters", @@ -6298,10 +6583,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowSpecialCharacters"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-allowSpecialCharacters" }, { - "id": "domain-internet-email-arg-firstName", + "id": "coverage:domain-internet-email-arg-firstName", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg firstName", @@ -6320,10 +6606,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-firstName" }, { - "id": "domain-internet-email-arg-lastName", + "id": "coverage:domain-internet-email-arg-lastName", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg lastName", @@ -6342,10 +6629,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-lastName" }, { - "id": "domain-internet-email-arg-provider", + "id": "coverage:domain-internet-email-arg-provider", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg provider", @@ -6364,10 +6652,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["provider"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-provider" }, { - "id": "domain-internet-email-pair-allowSpecialCharacters-firstName", + "id": "coverage:domain-internet-email-pair-allowSpecialCharacters-firstName", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair allowSpecialCharacters/firstName", @@ -6386,10 +6675,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowSpecialCharacters", "firstName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-allowSpecialCharacters-firstName" }, { - "id": "domain-internet-email-pair-firstName-lastName", + "id": "coverage:domain-internet-email-pair-firstName-lastName", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair firstName/lastName", @@ -6408,10 +6698,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-firstName-lastName" }, { - "id": "domain-internet-email-pair-lastName-provider", + "id": "coverage:domain-internet-email-pair-lastName-provider", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair lastName/provider", @@ -6430,10 +6721,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName", "provider"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-lastName-provider" }, { - "id": "domain-internet-emoji-base", + "id": "coverage:domain-internet-emoji-base", "sourceType": "domain", "command": "internet.emoji", "label": "internet.emoji", @@ -6452,10 +6744,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-emoji-base" }, { - "id": "domain-internet-emoji-arg-types", + "id": "coverage:domain-internet-emoji-arg-types", "sourceType": "domain", "command": "internet.emoji", "label": "internet.emoji arg types", @@ -6474,10 +6767,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["types"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-emoji-arg-types" }, { - "id": "domain-internet-exampleEmail-base", + "id": "coverage:domain-internet-exampleEmail-base", "sourceType": "domain", "command": "internet.exampleEmail", "label": "internet.exampleEmail", @@ -6496,10 +6790,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-exampleEmail-base" }, { - "id": "domain-internet-httpMethod-base", + "id": "coverage:domain-internet-httpMethod-base", "sourceType": "domain", "command": "internet.httpMethod", "label": "internet.httpMethod", @@ -6518,10 +6813,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-httpMethod-base" }, { - "id": "domain-internet-httpStatusCode-base", + "id": "coverage:domain-internet-httpStatusCode-base", "sourceType": "domain", "command": "internet.httpStatusCode", "label": "internet.httpStatusCode", @@ -6540,10 +6836,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-httpStatusCode-base" }, { - "id": "domain-internet-ip-base", + "id": "coverage:domain-internet-ip-base", "sourceType": "domain", "command": "internet.ip", "label": "internet.ip", @@ -6562,10 +6859,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ip-base" }, { - "id": "domain-internet-ipv4-base", + "id": "coverage:domain-internet-ipv4-base", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4", @@ -6584,10 +6882,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ipv4-base" }, { - "id": "domain-internet-ipv4-arg-cidrBlock", + "id": "coverage:domain-internet-ipv4-arg-cidrBlock", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 arg cidrBlock", @@ -6606,10 +6905,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["cidrBlock"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-ipv4-arg-cidrBlock" }, { - "id": "domain-internet-ipv4-arg-network", + "id": "coverage:domain-internet-ipv4-arg-network", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 arg network", @@ -6628,10 +6928,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["network"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-ipv4-arg-network" }, { - "id": "domain-internet-ipv4-pair-cidrBlock-network", + "id": "coverage:domain-internet-ipv4-pair-cidrBlock-network", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 pair cidrBlock/network", @@ -6650,10 +6951,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["cidrBlock", "network"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-ipv4-pair-cidrBlock-network" }, { - "id": "domain-internet-ipv6-base", + "id": "coverage:domain-internet-ipv6-base", "sourceType": "domain", "command": "internet.ipv6", "label": "internet.ipv6", @@ -6672,10 +6974,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ipv6-base" }, { - "id": "domain-internet-jwt-base", + "id": "coverage:domain-internet-jwt-base", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt", @@ -6694,10 +6997,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-jwt-base" }, { - "id": "domain-internet-jwt-arg-header", + "id": "coverage:domain-internet-jwt-arg-header", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg header", @@ -6716,10 +7020,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["header"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-header" }, { - "id": "domain-internet-jwt-arg-payload", + "id": "coverage:domain-internet-jwt-arg-payload", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg payload", @@ -6738,10 +7043,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["payload"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-payload" }, { - "id": "domain-internet-jwt-arg-refDate", + "id": "coverage:domain-internet-jwt-arg-refDate", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg refDate", @@ -6760,10 +7066,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-refDate" }, { - "id": "domain-internet-jwt-pair-header-payload", + "id": "coverage:domain-internet-jwt-pair-header-payload", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt pair header/payload", @@ -6782,10 +7089,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["header", "payload"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-jwt-pair-header-payload" }, { - "id": "domain-internet-jwt-pair-payload-refDate", + "id": "coverage:domain-internet-jwt-pair-payload-refDate", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt pair payload/refDate", @@ -6804,10 +7112,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["payload", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-jwt-pair-payload-refDate" }, { - "id": "domain-internet-jwtAlgorithm-base", + "id": "coverage:domain-internet-jwtAlgorithm-base", "sourceType": "domain", "command": "internet.jwtAlgorithm", "label": "internet.jwtAlgorithm", @@ -6826,10 +7135,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-jwtAlgorithm-base" }, { - "id": "domain-internet-mac-base", + "id": "coverage:domain-internet-mac-base", "sourceType": "domain", "command": "internet.mac", "label": "internet.mac", @@ -6848,10 +7158,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-mac-base" }, { - "id": "domain-internet-mac-arg-separator", + "id": "coverage:domain-internet-mac-arg-separator", "sourceType": "domain", "command": "internet.mac", "label": "internet.mac arg separator", @@ -6870,10 +7181,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-mac-arg-separator" }, { - "id": "domain-internet-password-base", + "id": "coverage:domain-internet-password-base", "sourceType": "domain", "command": "internet.password", "label": "internet.password", @@ -6892,10 +7204,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-password-base" }, { - "id": "domain-internet-password-example-1", + "id": "coverage:domain-internet-password-example-1", "sourceType": "domain", "command": "internet.password", "label": "internet.password example 1", @@ -6914,10 +7227,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-internet-password-example-1" }, { - "id": "domain-internet-password-arg-length", + "id": "coverage:domain-internet-password-arg-length", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg length", @@ -6936,10 +7250,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-length" }, { - "id": "domain-internet-password-arg-memorable", + "id": "coverage:domain-internet-password-arg-memorable", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg memorable", @@ -6958,10 +7273,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["memorable"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-memorable" }, { - "id": "domain-internet-password-arg-pattern", + "id": "coverage:domain-internet-password-arg-pattern", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg pattern", @@ -6980,10 +7296,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-pattern" }, { - "id": "domain-internet-password-arg-prefix", + "id": "coverage:domain-internet-password-arg-prefix", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg prefix", @@ -7002,10 +7319,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-prefix" }, { - "id": "domain-internet-password-pair-length-memorable", + "id": "coverage:domain-internet-password-pair-length-memorable", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair length/memorable", @@ -7024,10 +7342,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "memorable"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-length-memorable" }, { - "id": "domain-internet-password-pair-memorable-pattern", + "id": "coverage:domain-internet-password-pair-memorable-pattern", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair memorable/pattern", @@ -7046,10 +7365,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["memorable", "pattern"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-memorable-pattern" }, { - "id": "domain-internet-password-pair-pattern-prefix", + "id": "coverage:domain-internet-password-pair-pattern-prefix", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair pattern/prefix", @@ -7068,10 +7388,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-pattern-prefix" }, { - "id": "domain-internet-port-base", + "id": "coverage:domain-internet-port-base", "sourceType": "domain", "command": "internet.port", "label": "internet.port", @@ -7090,10 +7411,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-port-base" }, { - "id": "domain-internet-protocol-base", + "id": "coverage:domain-internet-protocol-base", "sourceType": "domain", "command": "internet.protocol", "label": "internet.protocol", @@ -7112,10 +7434,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-protocol-base" }, { - "id": "domain-internet-url-base", + "id": "coverage:domain-internet-url-base", "sourceType": "domain", "command": "internet.url", "label": "internet.url", @@ -7134,10 +7457,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-url-base" }, { - "id": "domain-internet-url-arg-appendSlash", + "id": "coverage:domain-internet-url-arg-appendSlash", "sourceType": "domain", "command": "internet.url", "label": "internet.url arg appendSlash", @@ -7156,10 +7480,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["appendSlash"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-url-arg-appendSlash" }, { - "id": "domain-internet-url-arg-protocol", + "id": "coverage:domain-internet-url-arg-protocol", "sourceType": "domain", "command": "internet.url", "label": "internet.url arg protocol", @@ -7178,10 +7503,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["protocol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-url-arg-protocol" }, { - "id": "domain-internet-url-pair-appendSlash-protocol", + "id": "coverage:domain-internet-url-pair-appendSlash-protocol", "sourceType": "domain", "command": "internet.url", "label": "internet.url pair appendSlash/protocol", @@ -7200,10 +7526,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["appendSlash", "protocol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-url-pair-appendSlash-protocol" }, { - "id": "domain-internet-userAgent-base", + "id": "coverage:domain-internet-userAgent-base", "sourceType": "domain", "command": "internet.userAgent", "label": "internet.userAgent", @@ -7222,10 +7549,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-userAgent-base" }, { - "id": "domain-internet-username-base", + "id": "coverage:domain-internet-username-base", "sourceType": "domain", "command": "internet.username", "label": "internet.username", @@ -7244,10 +7572,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-username-base" }, { - "id": "domain-internet-username-arg-firstName", + "id": "coverage:domain-internet-username-arg-firstName", "sourceType": "domain", "command": "internet.username", "label": "internet.username arg firstName", @@ -7266,10 +7595,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-username-arg-firstName" }, { - "id": "domain-internet-username-arg-lastName", + "id": "coverage:domain-internet-username-arg-lastName", "sourceType": "domain", "command": "internet.username", "label": "internet.username arg lastName", @@ -7288,10 +7618,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-username-arg-lastName" }, { - "id": "domain-internet-username-pair-firstName-lastName", + "id": "coverage:domain-internet-username-pair-firstName-lastName", "sourceType": "domain", "command": "internet.username", "label": "internet.username pair firstName/lastName", @@ -7310,10 +7641,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-username-pair-firstName-lastName" }, { - "id": "domain-literal-value-base", + "id": "coverage:domain-literal-value-base", "sourceType": "domain", "command": "literal.value", "label": "literal.value", @@ -7332,10 +7664,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-literal-value-base" }, { - "id": "domain-literal-value-example-1", + "id": "coverage:domain-literal-value-example-1", "sourceType": "domain", "command": "literal.value", "label": "literal.value example 1", @@ -7354,10 +7687,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-literal-value-example-1" }, { - "id": "domain-literal-value-example-2", + "id": "coverage:domain-literal-value-example-2", "sourceType": "domain", "command": "literal.value", "label": "literal.value example 2", @@ -7376,10 +7710,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-literal-value-example-2" }, { - "id": "domain-literal-value-arg-value", + "id": "coverage:domain-literal-value-arg-value", "sourceType": "domain", "command": "literal.value", "label": "literal.value arg value", @@ -7398,10 +7733,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-literal-value-arg-value" }, { - "id": "domain-location-buildingNumber-base", + "id": "coverage:domain-location-buildingNumber-base", "sourceType": "domain", "command": "location.buildingNumber", "label": "location.buildingNumber", @@ -7420,10 +7756,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-buildingNumber-base" }, { - "id": "domain-location-cardinalDirection-base", + "id": "coverage:domain-location-cardinalDirection-base", "sourceType": "domain", "command": "location.cardinalDirection", "label": "location.cardinalDirection", @@ -7442,10 +7779,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-cardinalDirection-base" }, { - "id": "domain-location-city-base", + "id": "coverage:domain-location-city-base", "sourceType": "domain", "command": "location.city", "label": "location.city", @@ -7464,10 +7802,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-city-base" }, { - "id": "domain-location-continent-base", + "id": "coverage:domain-location-continent-base", "sourceType": "domain", "command": "location.continent", "label": "location.continent", @@ -7486,10 +7825,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-continent-base" }, { - "id": "domain-location-country-base", + "id": "coverage:domain-location-country-base", "sourceType": "domain", "command": "location.country", "label": "location.country", @@ -7508,10 +7848,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-country-base" }, { - "id": "domain-location-countryCode-base", + "id": "coverage:domain-location-countryCode-base", "sourceType": "domain", "command": "location.countryCode", "label": "location.countryCode", @@ -7530,10 +7871,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-countryCode-base" }, { - "id": "domain-location-county-base", + "id": "coverage:domain-location-county-base", "sourceType": "domain", "command": "location.county", "label": "location.county", @@ -7552,10 +7894,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-county-base" }, { - "id": "domain-location-direction-base", + "id": "coverage:domain-location-direction-base", "sourceType": "domain", "command": "location.direction", "label": "location.direction", @@ -7574,10 +7917,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-direction-base" }, { - "id": "domain-location-direction-arg-abbreviated", + "id": "coverage:domain-location-direction-arg-abbreviated", "sourceType": "domain", "command": "location.direction", "label": "location.direction arg abbreviated", @@ -7596,10 +7940,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-direction-arg-abbreviated" }, { - "id": "domain-location-latitude-base", + "id": "coverage:domain-location-latitude-base", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude", @@ -7618,10 +7963,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-latitude-base" }, { - "id": "domain-location-latitude-arg-min", + "id": "coverage:domain-location-latitude-arg-min", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg min", @@ -7640,10 +7986,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-min" }, { - "id": "domain-location-latitude-arg-max", + "id": "coverage:domain-location-latitude-arg-max", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg max", @@ -7662,10 +8009,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-max" }, { - "id": "domain-location-latitude-arg-precision", + "id": "coverage:domain-location-latitude-arg-precision", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg precision", @@ -7684,10 +8032,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["precision"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-precision" }, { - "id": "domain-location-latitude-pair-min-max", + "id": "coverage:domain-location-latitude-pair-min-max", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude pair min/max", @@ -7706,10 +8055,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-latitude-pair-min-max" }, { - "id": "domain-location-latitude-pair-max-precision", + "id": "coverage:domain-location-latitude-pair-max-precision", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude pair max/precision", @@ -7728,10 +8078,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "precision"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-latitude-pair-max-precision" }, { - "id": "domain-location-longitude-base", + "id": "coverage:domain-location-longitude-base", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude", @@ -7750,10 +8101,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-longitude-base" }, { - "id": "domain-location-longitude-arg-min", + "id": "coverage:domain-location-longitude-arg-min", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg min", @@ -7772,10 +8124,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-min" }, { - "id": "domain-location-longitude-arg-max", + "id": "coverage:domain-location-longitude-arg-max", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg max", @@ -7794,10 +8147,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-max" }, { - "id": "domain-location-longitude-arg-precision", + "id": "coverage:domain-location-longitude-arg-precision", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg precision", @@ -7816,10 +8170,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["precision"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-precision" }, { - "id": "domain-location-longitude-pair-min-max", + "id": "coverage:domain-location-longitude-pair-min-max", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude pair min/max", @@ -7838,10 +8193,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-longitude-pair-min-max" }, { - "id": "domain-location-longitude-pair-max-precision", + "id": "coverage:domain-location-longitude-pair-max-precision", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude pair max/precision", @@ -7860,10 +8216,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "precision"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-longitude-pair-max-precision" }, { - "id": "domain-location-ordinalDirection-base", + "id": "coverage:domain-location-ordinalDirection-base", "sourceType": "domain", "command": "location.ordinalDirection", "label": "location.ordinalDirection", @@ -7882,10 +8239,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-ordinalDirection-base" }, { - "id": "domain-location-secondaryAddress-base", + "id": "coverage:domain-location-secondaryAddress-base", "sourceType": "domain", "command": "location.secondaryAddress", "label": "location.secondaryAddress", @@ -7904,10 +8262,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-secondaryAddress-base" }, { - "id": "domain-location-state-base", + "id": "coverage:domain-location-state-base", "sourceType": "domain", "command": "location.state", "label": "location.state", @@ -7926,10 +8285,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-state-base" }, { - "id": "domain-location-state-arg-abbreviated", + "id": "coverage:domain-location-state-arg-abbreviated", "sourceType": "domain", "command": "location.state", "label": "location.state arg abbreviated", @@ -7948,10 +8308,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-state-arg-abbreviated" }, { - "id": "domain-location-street-base", + "id": "coverage:domain-location-street-base", "sourceType": "domain", "command": "location.street", "label": "location.street", @@ -7970,10 +8331,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-street-base" }, { - "id": "domain-location-streetAddress-base", + "id": "coverage:domain-location-streetAddress-base", "sourceType": "domain", "command": "location.streetAddress", "label": "location.streetAddress", @@ -7992,10 +8354,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-streetAddress-base" }, { - "id": "domain-location-streetAddress-arg-useFullAddress", + "id": "coverage:domain-location-streetAddress-arg-useFullAddress", "sourceType": "domain", "command": "location.streetAddress", "label": "location.streetAddress arg useFullAddress", @@ -8014,10 +8377,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["useFullAddress"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-streetAddress-arg-useFullAddress" }, { - "id": "domain-location-timeZone-base", + "id": "coverage:domain-location-timeZone-base", "sourceType": "domain", "command": "location.timeZone", "label": "location.timeZone", @@ -8036,10 +8400,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-timeZone-base" }, { - "id": "domain-location-zipCode-base", + "id": "coverage:domain-location-zipCode-base", "sourceType": "domain", "command": "location.zipCode", "label": "location.zipCode", @@ -8058,10 +8423,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-zipCode-base" }, { - "id": "domain-lorem-lines-base", + "id": "coverage:domain-lorem-lines-base", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines", @@ -8080,10 +8446,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-lines-base" }, { - "id": "domain-lorem-lines-arg-min", + "id": "coverage:domain-lorem-lines-arg-min", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg min", @@ -8102,10 +8469,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-min" }, { - "id": "domain-lorem-lines-arg-max", + "id": "coverage:domain-lorem-lines-arg-max", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg max", @@ -8124,10 +8492,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-max" }, { - "id": "domain-lorem-lines-arg-lineCount", + "id": "coverage:domain-lorem-lines-arg-lineCount", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCount", @@ -8146,10 +8515,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCount" }, { - "id": "domain-lorem-lines-arg-lineCountMax", + "id": "coverage:domain-lorem-lines-arg-lineCountMax", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCountMax", @@ -8168,10 +8538,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCountMax" }, { - "id": "domain-lorem-lines-arg-lineCountMin", + "id": "coverage:domain-lorem-lines-arg-lineCountMin", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCountMin", @@ -8190,10 +8561,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCountMin" }, { - "id": "domain-lorem-lines-pair-min-max", + "id": "coverage:domain-lorem-lines-pair-min-max", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair min/max", @@ -8212,10 +8584,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-min-max" }, { - "id": "domain-lorem-lines-pair-max-lineCount", + "id": "coverage:domain-lorem-lines-pair-max-lineCount", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair max/lineCount", @@ -8234,10 +8607,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "lineCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-max-lineCount" }, { - "id": "domain-lorem-lines-pair-lineCount-lineCountMax", + "id": "coverage:domain-lorem-lines-pair-lineCount-lineCountMax", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair lineCount/lineCountMax", @@ -8256,10 +8630,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCount", "lineCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-lineCount-lineCountMax" }, { - "id": "domain-lorem-lines-pair-lineCountMax-lineCountMin", + "id": "coverage:domain-lorem-lines-pair-lineCountMax-lineCountMin", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair lineCountMax/lineCountMin", @@ -8278,10 +8653,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMax", "lineCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-lineCountMax-lineCountMin" }, { - "id": "domain-lorem-paragraph-base", + "id": "coverage:domain-lorem-paragraph-base", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph", @@ -8300,10 +8676,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-paragraph-base" }, { - "id": "domain-lorem-paragraph-arg-min", + "id": "coverage:domain-lorem-paragraph-arg-min", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg min", @@ -8322,10 +8699,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-min" }, { - "id": "domain-lorem-paragraph-arg-max", + "id": "coverage:domain-lorem-paragraph-arg-max", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg max", @@ -8344,10 +8722,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-max" }, { - "id": "domain-lorem-paragraph-arg-sentenceCount", + "id": "coverage:domain-lorem-paragraph-arg-sentenceCount", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCount", @@ -8366,10 +8745,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCount" }, { - "id": "domain-lorem-paragraph-arg-sentenceCountMax", + "id": "coverage:domain-lorem-paragraph-arg-sentenceCountMax", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCountMax", @@ -8388,10 +8768,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMax" }, { - "id": "domain-lorem-paragraph-arg-sentenceCountMin", + "id": "coverage:domain-lorem-paragraph-arg-sentenceCountMin", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCountMin", @@ -8410,10 +8791,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMin" }, { - "id": "domain-lorem-paragraph-pair-min-max", + "id": "coverage:domain-lorem-paragraph-pair-min-max", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair min/max", @@ -8432,10 +8814,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-min-max" }, { - "id": "domain-lorem-paragraph-pair-max-sentenceCount", + "id": "coverage:domain-lorem-paragraph-pair-max-sentenceCount", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair max/sentenceCount", @@ -8454,10 +8837,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-max-sentenceCount" }, { - "id": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", + "id": "coverage:domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair sentenceCount/sentenceCountMax", @@ -8476,10 +8860,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount", "sentenceCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax" }, { - "id": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", + "id": "coverage:domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair sentenceCountMax/sentenceCountMin", @@ -8498,10 +8883,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin" }, { - "id": "domain-lorem-paragraphs-base", + "id": "coverage:domain-lorem-paragraphs-base", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs", @@ -8520,10 +8906,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-paragraphs-base" }, { - "id": "domain-lorem-paragraphs-arg-min", + "id": "coverage:domain-lorem-paragraphs-arg-min", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg min", @@ -8542,10 +8929,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-min" }, { - "id": "domain-lorem-paragraphs-arg-max", + "id": "coverage:domain-lorem-paragraphs-arg-max", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg max", @@ -8564,10 +8952,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-max" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCount", + "id": "coverage:domain-lorem-paragraphs-arg-paragraphCount", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCount", @@ -8586,10 +8975,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCount" }, { - "id": "domain-lorem-paragraphs-arg-separator", + "id": "coverage:domain-lorem-paragraphs-arg-separator", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg separator", @@ -8608,10 +8998,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-separator" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCountMax", + "id": "coverage:domain-lorem-paragraphs-arg-paragraphCountMax", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCountMax", @@ -8630,10 +9021,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMax" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCountMin", + "id": "coverage:domain-lorem-paragraphs-arg-paragraphCountMin", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCountMin", @@ -8652,10 +9044,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMin" }, { - "id": "domain-lorem-paragraphs-pair-min-max", + "id": "coverage:domain-lorem-paragraphs-pair-min-max", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair min/max", @@ -8674,10 +9067,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-min-max" }, { - "id": "domain-lorem-paragraphs-pair-max-paragraphCount", + "id": "coverage:domain-lorem-paragraphs-pair-max-paragraphCount", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair max/paragraphCount", @@ -8696,10 +9090,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "paragraphCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-max-paragraphCount" }, { - "id": "domain-lorem-paragraphs-pair-paragraphCount-separator", + "id": "coverage:domain-lorem-paragraphs-pair-paragraphCount-separator", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair paragraphCount/separator", @@ -8718,10 +9113,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCount", "separator"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-paragraphCount-separator" }, { - "id": "domain-lorem-paragraphs-pair-separator-paragraphCountMax", + "id": "coverage:domain-lorem-paragraphs-pair-separator-paragraphCountMax", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair separator/paragraphCountMax", @@ -8740,10 +9136,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "paragraphCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-separator-paragraphCountMax" }, { - "id": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", + "id": "coverage:domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair paragraphCountMax/paragraphCountMin", @@ -8762,10 +9159,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMax", "paragraphCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin" }, { - "id": "domain-lorem-sentence-base", + "id": "coverage:domain-lorem-sentence-base", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence", @@ -8784,10 +9182,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-sentence-base" }, { - "id": "domain-lorem-sentence-arg-min", + "id": "coverage:domain-lorem-sentence-arg-min", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg min", @@ -8806,10 +9205,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-min" }, { - "id": "domain-lorem-sentence-arg-max", + "id": "coverage:domain-lorem-sentence-arg-max", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg max", @@ -8828,10 +9228,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-max" }, { - "id": "domain-lorem-sentence-arg-wordCount", + "id": "coverage:domain-lorem-sentence-arg-wordCount", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCount", @@ -8850,10 +9251,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCount" }, { - "id": "domain-lorem-sentence-arg-wordCountMax", + "id": "coverage:domain-lorem-sentence-arg-wordCountMax", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCountMax", @@ -8872,10 +9274,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCountMax" }, { - "id": "domain-lorem-sentence-arg-wordCountMin", + "id": "coverage:domain-lorem-sentence-arg-wordCountMin", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCountMin", @@ -8894,10 +9297,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCountMin" }, { - "id": "domain-lorem-sentence-pair-min-max", + "id": "coverage:domain-lorem-sentence-pair-min-max", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair min/max", @@ -8916,10 +9320,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-min-max" }, { - "id": "domain-lorem-sentence-pair-max-wordCount", + "id": "coverage:domain-lorem-sentence-pair-max-wordCount", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair max/wordCount", @@ -8938,10 +9343,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-max-wordCount" }, { - "id": "domain-lorem-sentence-pair-wordCount-wordCountMax", + "id": "coverage:domain-lorem-sentence-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair wordCount/wordCountMax", @@ -8960,10 +9366,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-sentence-pair-wordCountMax-wordCountMin", + "id": "coverage:domain-lorem-sentence-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair wordCountMax/wordCountMin", @@ -8982,10 +9389,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-wordCountMax-wordCountMin" }, { - "id": "domain-lorem-sentences-base", + "id": "coverage:domain-lorem-sentences-base", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences", @@ -9004,10 +9412,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-sentences-base" }, { - "id": "domain-lorem-sentences-arg-min", + "id": "coverage:domain-lorem-sentences-arg-min", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg min", @@ -9026,10 +9435,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-min" }, { - "id": "domain-lorem-sentences-arg-max", + "id": "coverage:domain-lorem-sentences-arg-max", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg max", @@ -9048,10 +9458,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-max" }, { - "id": "domain-lorem-sentences-arg-sentenceCount", + "id": "coverage:domain-lorem-sentences-arg-sentenceCount", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCount", @@ -9070,10 +9481,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCount" }, { - "id": "domain-lorem-sentences-arg-separator", + "id": "coverage:domain-lorem-sentences-arg-separator", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg separator", @@ -9092,10 +9504,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-separator" }, { - "id": "domain-lorem-sentences-arg-sentenceCountMax", + "id": "coverage:domain-lorem-sentences-arg-sentenceCountMax", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCountMax", @@ -9114,10 +9527,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCountMax" }, { - "id": "domain-lorem-sentences-arg-sentenceCountMin", + "id": "coverage:domain-lorem-sentences-arg-sentenceCountMin", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCountMin", @@ -9136,10 +9550,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCountMin" }, { - "id": "domain-lorem-sentences-pair-min-max", + "id": "coverage:domain-lorem-sentences-pair-min-max", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair min/max", @@ -9158,10 +9573,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-min-max" }, { - "id": "domain-lorem-sentences-pair-max-sentenceCount", + "id": "coverage:domain-lorem-sentences-pair-max-sentenceCount", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair max/sentenceCount", @@ -9180,10 +9596,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-max-sentenceCount" }, { - "id": "domain-lorem-sentences-pair-sentenceCount-separator", + "id": "coverage:domain-lorem-sentences-pair-sentenceCount-separator", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair sentenceCount/separator", @@ -9202,10 +9619,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount", "separator"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-sentenceCount-separator" }, { - "id": "domain-lorem-sentences-pair-separator-sentenceCountMax", + "id": "coverage:domain-lorem-sentences-pair-separator-sentenceCountMax", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair separator/sentenceCountMax", @@ -9224,10 +9642,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "sentenceCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-separator-sentenceCountMax" }, { - "id": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", + "id": "coverage:domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair sentenceCountMax/sentenceCountMin", @@ -9246,10 +9665,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin" }, { - "id": "domain-lorem-slug-base", + "id": "coverage:domain-lorem-slug-base", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug", @@ -9268,10 +9688,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-slug-base" }, { - "id": "domain-lorem-slug-arg-min", + "id": "coverage:domain-lorem-slug-arg-min", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg min", @@ -9290,10 +9711,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-min" }, { - "id": "domain-lorem-slug-arg-max", + "id": "coverage:domain-lorem-slug-arg-max", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg max", @@ -9312,10 +9734,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-max" }, { - "id": "domain-lorem-slug-arg-wordCount", + "id": "coverage:domain-lorem-slug-arg-wordCount", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCount", @@ -9334,10 +9757,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCount" }, { - "id": "domain-lorem-slug-arg-wordCountMax", + "id": "coverage:domain-lorem-slug-arg-wordCountMax", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCountMax", @@ -9356,10 +9780,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCountMax" }, { - "id": "domain-lorem-slug-arg-wordCountMin", + "id": "coverage:domain-lorem-slug-arg-wordCountMin", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCountMin", @@ -9378,10 +9803,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCountMin" }, { - "id": "domain-lorem-slug-pair-min-max", + "id": "coverage:domain-lorem-slug-pair-min-max", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair min/max", @@ -9400,10 +9826,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-min-max" }, { - "id": "domain-lorem-slug-pair-max-wordCount", + "id": "coverage:domain-lorem-slug-pair-max-wordCount", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair max/wordCount", @@ -9422,10 +9849,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-max-wordCount" }, { - "id": "domain-lorem-slug-pair-wordCount-wordCountMax", + "id": "coverage:domain-lorem-slug-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair wordCount/wordCountMax", @@ -9444,10 +9872,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-slug-pair-wordCountMax-wordCountMin", + "id": "coverage:domain-lorem-slug-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair wordCountMax/wordCountMin", @@ -9466,10 +9895,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-wordCountMax-wordCountMin" }, { - "id": "domain-lorem-text-base", + "id": "coverage:domain-lorem-text-base", "sourceType": "domain", "command": "lorem.text", "label": "lorem.text", @@ -9488,10 +9918,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-text-base" }, { - "id": "domain-lorem-word-base", + "id": "coverage:domain-lorem-word-base", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word", @@ -9510,10 +9941,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-word-base" }, { - "id": "domain-lorem-word-arg-min", + "id": "coverage:domain-lorem-word-arg-min", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg min", @@ -9532,10 +9964,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-min" }, { - "id": "domain-lorem-word-arg-max", + "id": "coverage:domain-lorem-word-arg-max", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg max", @@ -9554,10 +9987,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-max" }, { - "id": "domain-lorem-word-arg-length", + "id": "coverage:domain-lorem-word-arg-length", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg length", @@ -9576,10 +10010,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-length" }, { - "id": "domain-lorem-word-arg-strategy", + "id": "coverage:domain-lorem-word-arg-strategy", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg strategy", @@ -9598,10 +10033,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-strategy" }, { - "id": "domain-lorem-word-pair-min-max", + "id": "coverage:domain-lorem-word-pair-min-max", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair min/max", @@ -9620,10 +10056,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-min-max" }, { - "id": "domain-lorem-word-pair-max-length", + "id": "coverage:domain-lorem-word-pair-max-length", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair max/length", @@ -9642,10 +10079,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-max-length" }, { - "id": "domain-lorem-word-pair-length-strategy", + "id": "coverage:domain-lorem-word-pair-length-strategy", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair length/strategy", @@ -9664,10 +10102,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-length-strategy" }, { - "id": "domain-lorem-words-base", + "id": "coverage:domain-lorem-words-base", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words", @@ -9686,10 +10125,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-words-base" }, { - "id": "domain-lorem-words-arg-min", + "id": "coverage:domain-lorem-words-arg-min", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg min", @@ -9708,10 +10148,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-min" }, { - "id": "domain-lorem-words-arg-max", + "id": "coverage:domain-lorem-words-arg-max", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg max", @@ -9730,10 +10171,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-max" }, { - "id": "domain-lorem-words-arg-wordCount", + "id": "coverage:domain-lorem-words-arg-wordCount", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCount", @@ -9752,10 +10194,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCount" }, { - "id": "domain-lorem-words-arg-wordCountMax", + "id": "coverage:domain-lorem-words-arg-wordCountMax", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCountMax", @@ -9774,10 +10217,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCountMax" }, { - "id": "domain-lorem-words-arg-wordCountMin", + "id": "coverage:domain-lorem-words-arg-wordCountMin", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCountMin", @@ -9796,10 +10240,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCountMin" }, { - "id": "domain-lorem-words-pair-min-max", + "id": "coverage:domain-lorem-words-pair-min-max", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair min/max", @@ -9818,10 +10263,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-min-max" }, { - "id": "domain-lorem-words-pair-max-wordCount", + "id": "coverage:domain-lorem-words-pair-max-wordCount", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair max/wordCount", @@ -9840,10 +10286,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-max-wordCount" }, { - "id": "domain-lorem-words-pair-wordCount-wordCountMax", + "id": "coverage:domain-lorem-words-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair wordCount/wordCountMax", @@ -9862,10 +10309,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-words-pair-wordCountMax-wordCountMin", + "id": "coverage:domain-lorem-words-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair wordCountMax/wordCountMin", @@ -9884,10 +10332,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-wordCountMax-wordCountMin" }, { - "id": "domain-music-album-base", + "id": "coverage:domain-music-album-base", "sourceType": "domain", "command": "music.album", "label": "music.album", @@ -9906,10 +10355,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-album-base" }, { - "id": "domain-music-artist-base", + "id": "coverage:domain-music-artist-base", "sourceType": "domain", "command": "music.artist", "label": "music.artist", @@ -9928,10 +10378,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-artist-base" }, { - "id": "domain-music-genre-base", + "id": "coverage:domain-music-genre-base", "sourceType": "domain", "command": "music.genre", "label": "music.genre", @@ -9950,10 +10401,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-genre-base" }, { - "id": "domain-music-songName-base", + "id": "coverage:domain-music-songName-base", "sourceType": "domain", "command": "music.songName", "label": "music.songName", @@ -9972,10 +10424,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-songName-base" }, { - "id": "domain-number-bigInt-base", + "id": "coverage:domain-number-bigInt-base", "sourceType": "domain", "command": "number.bigInt", "label": "number.bigInt", @@ -9994,10 +10447,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-bigInt-base" }, { - "id": "domain-number-bigInt-arg-value", + "id": "coverage:domain-number-bigInt-arg-value", "sourceType": "domain", "command": "number.bigInt", "label": "number.bigInt arg value", @@ -10016,10 +10470,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-bigInt-arg-value" }, { - "id": "domain-number-binary-base", + "id": "coverage:domain-number-binary-base", "sourceType": "domain", "command": "number.binary", "label": "number.binary", @@ -10038,10 +10493,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-binary-base" }, { - "id": "domain-number-binary-arg-max", + "id": "coverage:domain-number-binary-arg-max", "sourceType": "domain", "command": "number.binary", "label": "number.binary arg max", @@ -10060,10 +10516,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-binary-arg-max" }, { - "id": "domain-number-binary-arg-min", + "id": "coverage:domain-number-binary-arg-min", "sourceType": "domain", "command": "number.binary", "label": "number.binary arg min", @@ -10082,10 +10539,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-binary-arg-min" }, { - "id": "domain-number-binary-pair-max-min", + "id": "coverage:domain-number-binary-pair-max-min", "sourceType": "domain", "command": "number.binary", "label": "number.binary pair max/min", @@ -10104,10 +10562,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-binary-pair-max-min" }, { - "id": "domain-number-float-base", + "id": "coverage:domain-number-float-base", "sourceType": "domain", "command": "number.float", "label": "number.float", @@ -10126,10 +10585,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-float-base" }, { - "id": "domain-number-float-arg-fractionDigits", + "id": "coverage:domain-number-float-arg-fractionDigits", "sourceType": "domain", "command": "number.float", "label": "number.float arg fractionDigits", @@ -10148,10 +10608,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["fractionDigits"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-fractionDigits" }, { - "id": "domain-number-float-arg-max", + "id": "coverage:domain-number-float-arg-max", "sourceType": "domain", "command": "number.float", "label": "number.float arg max", @@ -10170,10 +10631,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-max" }, { - "id": "domain-number-float-arg-min", + "id": "coverage:domain-number-float-arg-min", "sourceType": "domain", "command": "number.float", "label": "number.float arg min", @@ -10192,10 +10654,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-min" }, { - "id": "domain-number-float-arg-multipleOf", + "id": "coverage:domain-number-float-arg-multipleOf", "sourceType": "domain", "command": "number.float", "label": "number.float arg multipleOf", @@ -10214,10 +10677,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["multipleOf"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-multipleOf" }, { - "id": "domain-number-float-pair-fractionDigits-max", + "id": "coverage:domain-number-float-pair-fractionDigits-max", "sourceType": "domain", "command": "number.float", "label": "number.float pair fractionDigits/max", @@ -10236,10 +10700,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["fractionDigits", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-fractionDigits-max" }, { - "id": "domain-number-float-pair-max-min", + "id": "coverage:domain-number-float-pair-max-min", "sourceType": "domain", "command": "number.float", "label": "number.float pair max/min", @@ -10258,10 +10723,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-max-min" }, { - "id": "domain-number-float-pair-min-multipleOf", + "id": "coverage:domain-number-float-pair-min-multipleOf", "sourceType": "domain", "command": "number.float", "label": "number.float pair min/multipleOf", @@ -10280,10 +10746,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "multipleOf"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-min-multipleOf" }, { - "id": "domain-number-hex-base", + "id": "coverage:domain-number-hex-base", "sourceType": "domain", "command": "number.hex", "label": "number.hex", @@ -10302,10 +10769,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-hex-base" }, { - "id": "domain-number-hex-arg-min", + "id": "coverage:domain-number-hex-arg-min", "sourceType": "domain", "command": "number.hex", "label": "number.hex arg min", @@ -10324,10 +10792,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-hex-arg-min" }, { - "id": "domain-number-hex-arg-max", + "id": "coverage:domain-number-hex-arg-max", "sourceType": "domain", "command": "number.hex", "label": "number.hex arg max", @@ -10346,10 +10815,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-hex-arg-max" }, { - "id": "domain-number-hex-pair-min-max", + "id": "coverage:domain-number-hex-pair-min-max", "sourceType": "domain", "command": "number.hex", "label": "number.hex pair min/max", @@ -10368,10 +10838,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-hex-pair-min-max" }, { - "id": "domain-number-int-base", + "id": "coverage:domain-number-int-base", "sourceType": "domain", "command": "number.int", "label": "number.int", @@ -10390,10 +10861,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-int-base" }, { - "id": "domain-number-int-arg-min", + "id": "coverage:domain-number-int-arg-min", "sourceType": "domain", "command": "number.int", "label": "number.int arg min", @@ -10412,10 +10884,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-min" }, { - "id": "domain-number-int-arg-max", + "id": "coverage:domain-number-int-arg-max", "sourceType": "domain", "command": "number.int", "label": "number.int arg max", @@ -10434,10 +10907,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-max" }, { - "id": "domain-number-int-arg-multipleOf", + "id": "coverage:domain-number-int-arg-multipleOf", "sourceType": "domain", "command": "number.int", "label": "number.int arg multipleOf", @@ -10456,10 +10930,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["multipleOf"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-multipleOf" }, { - "id": "domain-number-int-pair-min-max", + "id": "coverage:domain-number-int-pair-min-max", "sourceType": "domain", "command": "number.int", "label": "number.int pair min/max", @@ -10478,10 +10953,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-int-pair-min-max" }, { - "id": "domain-number-int-pair-max-multipleOf", + "id": "coverage:domain-number-int-pair-max-multipleOf", "sourceType": "domain", "command": "number.int", "label": "number.int pair max/multipleOf", @@ -10500,10 +10976,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "multipleOf"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-int-pair-max-multipleOf" }, { - "id": "domain-number-octal-base", + "id": "coverage:domain-number-octal-base", "sourceType": "domain", "command": "number.octal", "label": "number.octal", @@ -10522,10 +10999,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-octal-base" }, { - "id": "domain-number-octal-arg-max", + "id": "coverage:domain-number-octal-arg-max", "sourceType": "domain", "command": "number.octal", "label": "number.octal arg max", @@ -10544,10 +11022,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-octal-arg-max" }, { - "id": "domain-number-octal-arg-min", + "id": "coverage:domain-number-octal-arg-min", "sourceType": "domain", "command": "number.octal", "label": "number.octal arg min", @@ -10566,10 +11045,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-octal-arg-min" }, { - "id": "domain-number-octal-pair-max-min", + "id": "coverage:domain-number-octal-pair-max-min", "sourceType": "domain", "command": "number.octal", "label": "number.octal pair max/min", @@ -10588,10 +11068,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-octal-pair-max-min" }, { - "id": "domain-number-romanNumeral-base", + "id": "coverage:domain-number-romanNumeral-base", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral", @@ -10610,10 +11091,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-romanNumeral-base" }, { - "id": "domain-number-romanNumeral-arg-min", + "id": "coverage:domain-number-romanNumeral-arg-min", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral arg min", @@ -10632,10 +11114,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-romanNumeral-arg-min" }, { - "id": "domain-number-romanNumeral-arg-max", + "id": "coverage:domain-number-romanNumeral-arg-max", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral arg max", @@ -10654,10 +11137,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-romanNumeral-arg-max" }, { - "id": "domain-number-romanNumeral-pair-min-max", + "id": "coverage:domain-number-romanNumeral-pair-min-max", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral pair min/max", @@ -10676,10 +11160,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-romanNumeral-pair-min-max" }, { - "id": "domain-person-bio-base", + "id": "coverage:domain-person-bio-base", "sourceType": "domain", "command": "person.bio", "label": "person.bio", @@ -10698,10 +11183,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-bio-base" }, { - "id": "domain-person-firstName-base", + "id": "coverage:domain-person-firstName-base", "sourceType": "domain", "command": "person.firstName", "label": "person.firstName", @@ -10720,10 +11206,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-firstName-base" }, { - "id": "domain-person-firstName-arg-sex", + "id": "coverage:domain-person-firstName-arg-sex", "sourceType": "domain", "command": "person.firstName", "label": "person.firstName arg sex", @@ -10742,10 +11229,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-firstName-arg-sex" }, { - "id": "domain-person-fullName-base", + "id": "coverage:domain-person-fullName-base", "sourceType": "domain", "command": "person.fullName", "label": "person.fullName", @@ -10764,10 +11252,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-fullName-base" }, { - "id": "domain-person-gender-base", + "id": "coverage:domain-person-gender-base", "sourceType": "domain", "command": "person.gender", "label": "person.gender", @@ -10786,10 +11275,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-gender-base" }, { - "id": "domain-person-jobArea-base", + "id": "coverage:domain-person-jobArea-base", "sourceType": "domain", "command": "person.jobArea", "label": "person.jobArea", @@ -10808,10 +11298,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobArea-base" }, { - "id": "domain-person-jobDescriptor-base", + "id": "coverage:domain-person-jobDescriptor-base", "sourceType": "domain", "command": "person.jobDescriptor", "label": "person.jobDescriptor", @@ -10830,10 +11321,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobDescriptor-base" }, { - "id": "domain-person-jobTitle-base", + "id": "coverage:domain-person-jobTitle-base", "sourceType": "domain", "command": "person.jobTitle", "label": "person.jobTitle", @@ -10852,10 +11344,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobTitle-base" }, { - "id": "domain-person-jobType-base", + "id": "coverage:domain-person-jobType-base", "sourceType": "domain", "command": "person.jobType", "label": "person.jobType", @@ -10874,10 +11367,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobType-base" }, { - "id": "domain-person-lastName-base", + "id": "coverage:domain-person-lastName-base", "sourceType": "domain", "command": "person.lastName", "label": "person.lastName", @@ -10896,10 +11390,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-lastName-base" }, { - "id": "domain-person-lastName-arg-sex", + "id": "coverage:domain-person-lastName-arg-sex", "sourceType": "domain", "command": "person.lastName", "label": "person.lastName arg sex", @@ -10918,10 +11413,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-lastName-arg-sex" }, { - "id": "domain-person-middleName-base", + "id": "coverage:domain-person-middleName-base", "sourceType": "domain", "command": "person.middleName", "label": "person.middleName", @@ -10940,10 +11436,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-middleName-base" }, { - "id": "domain-person-middleName-arg-sex", + "id": "coverage:domain-person-middleName-arg-sex", "sourceType": "domain", "command": "person.middleName", "label": "person.middleName arg sex", @@ -10962,10 +11459,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-middleName-arg-sex" }, { - "id": "domain-person-prefix-base", + "id": "coverage:domain-person-prefix-base", "sourceType": "domain", "command": "person.prefix", "label": "person.prefix", @@ -10984,10 +11482,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-prefix-base" }, { - "id": "domain-person-prefix-arg-sex", + "id": "coverage:domain-person-prefix-arg-sex", "sourceType": "domain", "command": "person.prefix", "label": "person.prefix arg sex", @@ -11006,10 +11505,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-prefix-arg-sex" }, { - "id": "domain-person-sex-base", + "id": "coverage:domain-person-sex-base", "sourceType": "domain", "command": "person.sex", "label": "person.sex", @@ -11028,10 +11528,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-sex-base" }, { - "id": "domain-person-sexType-base", + "id": "coverage:domain-person-sexType-base", "sourceType": "domain", "command": "person.sexType", "label": "person.sexType", @@ -11050,10 +11551,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-sexType-base" }, { - "id": "domain-person-suffix-base", + "id": "coverage:domain-person-suffix-base", "sourceType": "domain", "command": "person.suffix", "label": "person.suffix", @@ -11072,10 +11574,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-suffix-base" }, { - "id": "domain-person-zodiacSign-base", + "id": "coverage:domain-person-zodiacSign-base", "sourceType": "domain", "command": "person.zodiacSign", "label": "person.zodiacSign", @@ -11094,10 +11597,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-zodiacSign-base" }, { - "id": "domain-phone-imei-base", + "id": "coverage:domain-phone-imei-base", "sourceType": "domain", "command": "phone.imei", "label": "phone.imei", @@ -11116,10 +11620,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-phone-imei-base" }, { - "id": "domain-phone-number-base", + "id": "coverage:domain-phone-number-base", "sourceType": "domain", "command": "phone.number", "label": "phone.number", @@ -11138,10 +11643,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-phone-number-base" }, { - "id": "domain-phone-number-arg-style", + "id": "coverage:domain-phone-number-arg-style", "sourceType": "domain", "command": "phone.number", "label": "phone.number arg style", @@ -11160,10 +11666,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["style"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-phone-number-arg-style" }, { - "id": "domain-string-alpha-base", + "id": "coverage:domain-string-alpha-base", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha", @@ -11182,10 +11689,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-alpha-base" }, { - "id": "domain-string-alpha-arg-length", + "id": "coverage:domain-string-alpha-arg-length", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg length", @@ -11204,10 +11712,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-length" }, { - "id": "domain-string-alpha-arg-casing", + "id": "coverage:domain-string-alpha-arg-casing", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg casing", @@ -11226,10 +11735,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-casing" }, { - "id": "domain-string-alpha-arg-exclude", + "id": "coverage:domain-string-alpha-arg-exclude", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg exclude", @@ -11248,10 +11758,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-exclude" }, { - "id": "domain-string-alpha-pair-length-casing", + "id": "coverage:domain-string-alpha-pair-length-casing", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha pair length/casing", @@ -11270,10 +11781,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "casing"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alpha-pair-length-casing" }, { - "id": "domain-string-alpha-pair-casing-exclude", + "id": "coverage:domain-string-alpha-pair-casing-exclude", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha pair casing/exclude", @@ -11292,10 +11804,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alpha-pair-casing-exclude" }, { - "id": "domain-string-alphanumeric-base", + "id": "coverage:domain-string-alphanumeric-base", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric", @@ -11314,10 +11827,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-alphanumeric-base" }, { - "id": "domain-string-alphanumeric-arg-length", + "id": "coverage:domain-string-alphanumeric-arg-length", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg length", @@ -11336,10 +11850,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-length" }, { - "id": "domain-string-alphanumeric-arg-casing", + "id": "coverage:domain-string-alphanumeric-arg-casing", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg casing", @@ -11358,10 +11873,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-casing" }, { - "id": "domain-string-alphanumeric-arg-exclude", + "id": "coverage:domain-string-alphanumeric-arg-exclude", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg exclude", @@ -11380,10 +11896,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-exclude" }, { - "id": "domain-string-alphanumeric-pair-length-casing", + "id": "coverage:domain-string-alphanumeric-pair-length-casing", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric pair length/casing", @@ -11402,10 +11919,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "casing"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alphanumeric-pair-length-casing" }, { - "id": "domain-string-alphanumeric-pair-casing-exclude", + "id": "coverage:domain-string-alphanumeric-pair-casing-exclude", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric pair casing/exclude", @@ -11424,10 +11942,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alphanumeric-pair-casing-exclude" }, { - "id": "domain-string-binary-base", + "id": "coverage:domain-string-binary-base", "sourceType": "domain", "command": "string.binary", "label": "string.binary", @@ -11446,10 +11965,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-binary-base" }, { - "id": "domain-string-binary-arg-length", + "id": "coverage:domain-string-binary-arg-length", "sourceType": "domain", "command": "string.binary", "label": "string.binary arg length", @@ -11468,10 +11988,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-binary-arg-length" }, { - "id": "domain-string-binary-arg-prefix", + "id": "coverage:domain-string-binary-arg-prefix", "sourceType": "domain", "command": "string.binary", "label": "string.binary arg prefix", @@ -11490,10 +12011,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-binary-arg-prefix" }, { - "id": "domain-string-binary-pair-length-prefix", + "id": "coverage:domain-string-binary-pair-length-prefix", "sourceType": "domain", "command": "string.binary", "label": "string.binary pair length/prefix", @@ -11512,10 +12034,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-binary-pair-length-prefix" }, { - "id": "domain-string-counterString-base", + "id": "coverage:domain-string-counterString-base", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString", @@ -11534,10 +12057,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-counterString-base" }, { - "id": "domain-string-counterString-example-1", + "id": "coverage:domain-string-counterString-example-1", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 1", @@ -11556,10 +12080,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-1" }, { - "id": "domain-string-counterString-example-2", + "id": "coverage:domain-string-counterString-example-2", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 2", @@ -11578,10 +12103,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-2" }, { - "id": "domain-string-counterString-example-3", + "id": "coverage:domain-string-counterString-example-3", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 3", @@ -11600,10 +12126,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-3" }, { - "id": "domain-string-counterString-example-4", + "id": "coverage:domain-string-counterString-example-4", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 4", @@ -11622,10 +12149,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-4" }, { - "id": "domain-string-counterString-arg-min", + "id": "coverage:domain-string-counterString-arg-min", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg min", @@ -11644,10 +12172,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-min" }, { - "id": "domain-string-counterString-arg-max", + "id": "coverage:domain-string-counterString-arg-max", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg max", @@ -11666,10 +12195,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-max" }, { - "id": "domain-string-counterString-arg-delimiter", + "id": "coverage:domain-string-counterString-arg-delimiter", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg delimiter", @@ -11688,10 +12218,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["delimiter"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-delimiter" }, { - "id": "domain-string-counterString-pair-min-max", + "id": "coverage:domain-string-counterString-pair-min-max", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString pair min/max", @@ -11710,10 +12241,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-counterString-pair-min-max" }, { - "id": "domain-string-counterString-pair-max-delimiter", + "id": "coverage:domain-string-counterString-pair-max-delimiter", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString pair max/delimiter", @@ -11732,10 +12264,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "delimiter"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-counterString-pair-max-delimiter" }, { - "id": "domain-string-fromCharacters-base", + "id": "coverage:domain-string-fromCharacters-base", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters", @@ -11754,10 +12287,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-fromCharacters-base" }, { - "id": "domain-string-fromCharacters-example-1", + "id": "coverage:domain-string-fromCharacters-example-1", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters example 1", @@ -11776,10 +12310,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-fromCharacters-example-1" }, { - "id": "domain-string-fromCharacters-example-2", + "id": "coverage:domain-string-fromCharacters-example-2", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters example 2", @@ -11798,10 +12333,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-fromCharacters-example-2" }, { - "id": "domain-string-fromCharacters-arg-characters", + "id": "coverage:domain-string-fromCharacters-arg-characters", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters arg characters", @@ -11820,10 +12356,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-fromCharacters-arg-characters" }, { - "id": "domain-string-fromCharacters-arg-length", + "id": "coverage:domain-string-fromCharacters-arg-length", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters arg length", @@ -11842,10 +12379,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-fromCharacters-arg-length" }, { - "id": "domain-string-fromCharacters-pair-characters-length", + "id": "coverage:domain-string-fromCharacters-pair-characters-length", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters pair characters/length", @@ -11864,10 +12402,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-fromCharacters-pair-characters-length" }, { - "id": "domain-string-hexadecimal-base", + "id": "coverage:domain-string-hexadecimal-base", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal", @@ -11886,10 +12425,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-hexadecimal-base" }, { - "id": "domain-string-hexadecimal-arg-casing", + "id": "coverage:domain-string-hexadecimal-arg-casing", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg casing", @@ -11908,10 +12448,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-casing" }, { - "id": "domain-string-hexadecimal-arg-length", + "id": "coverage:domain-string-hexadecimal-arg-length", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg length", @@ -11930,10 +12471,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-length" }, { - "id": "domain-string-hexadecimal-arg-prefix", + "id": "coverage:domain-string-hexadecimal-arg-prefix", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg prefix", @@ -11952,10 +12494,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-prefix" }, { - "id": "domain-string-hexadecimal-pair-casing-length", + "id": "coverage:domain-string-hexadecimal-pair-casing-length", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal pair casing/length", @@ -11974,10 +12517,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-hexadecimal-pair-casing-length" }, { - "id": "domain-string-hexadecimal-pair-length-prefix", + "id": "coverage:domain-string-hexadecimal-pair-length-prefix", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal pair length/prefix", @@ -11996,10 +12540,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-hexadecimal-pair-length-prefix" }, { - "id": "domain-string-nanoid-base", + "id": "coverage:domain-string-nanoid-base", "sourceType": "domain", "command": "string.nanoid", "label": "string.nanoid", @@ -12018,10 +12563,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-nanoid-base" }, { - "id": "domain-string-nanoid-arg-length", + "id": "coverage:domain-string-nanoid-arg-length", "sourceType": "domain", "command": "string.nanoid", "label": "string.nanoid arg length", @@ -12040,10 +12586,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-nanoid-arg-length" }, { - "id": "domain-string-numeric-base", + "id": "coverage:domain-string-numeric-base", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric", @@ -12062,10 +12609,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-numeric-base" }, { - "id": "domain-string-numeric-arg-length", + "id": "coverage:domain-string-numeric-arg-length", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg length", @@ -12084,10 +12632,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-length" }, { - "id": "domain-string-numeric-arg-allowLeadingZeros", + "id": "coverage:domain-string-numeric-arg-allowLeadingZeros", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg allowLeadingZeros", @@ -12106,10 +12655,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowLeadingZeros"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-allowLeadingZeros" }, { - "id": "domain-string-numeric-arg-exclude", + "id": "coverage:domain-string-numeric-arg-exclude", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg exclude", @@ -12128,10 +12678,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-exclude" }, { - "id": "domain-string-numeric-pair-length-allowLeadingZeros", + "id": "coverage:domain-string-numeric-pair-length-allowLeadingZeros", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric pair length/allowLeadingZeros", @@ -12150,10 +12701,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "allowLeadingZeros"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-numeric-pair-length-allowLeadingZeros" }, { - "id": "domain-string-numeric-pair-allowLeadingZeros-exclude", + "id": "coverage:domain-string-numeric-pair-allowLeadingZeros-exclude", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric pair allowLeadingZeros/exclude", @@ -12172,10 +12724,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowLeadingZeros", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-numeric-pair-allowLeadingZeros-exclude" }, { - "id": "domain-string-octal-base", + "id": "coverage:domain-string-octal-base", "sourceType": "domain", "command": "string.octal", "label": "string.octal", @@ -12194,10 +12747,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-octal-base" }, { - "id": "domain-string-octal-arg-length", + "id": "coverage:domain-string-octal-arg-length", "sourceType": "domain", "command": "string.octal", "label": "string.octal arg length", @@ -12216,10 +12770,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-octal-arg-length" }, { - "id": "domain-string-octal-arg-prefix", + "id": "coverage:domain-string-octal-arg-prefix", "sourceType": "domain", "command": "string.octal", "label": "string.octal arg prefix", @@ -12238,10 +12793,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-octal-arg-prefix" }, { - "id": "domain-string-octal-pair-length-prefix", + "id": "coverage:domain-string-octal-pair-length-prefix", "sourceType": "domain", "command": "string.octal", "label": "string.octal pair length/prefix", @@ -12260,10 +12816,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-octal-pair-length-prefix" }, { - "id": "domain-string-sample-base", + "id": "coverage:domain-string-sample-base", "sourceType": "domain", "command": "string.sample", "label": "string.sample", @@ -12282,10 +12839,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-sample-base" }, { - "id": "domain-string-sample-arg-length", + "id": "coverage:domain-string-sample-arg-length", "sourceType": "domain", "command": "string.sample", "label": "string.sample arg length", @@ -12304,10 +12862,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-sample-arg-length" }, { - "id": "domain-string-symbol-base", + "id": "coverage:domain-string-symbol-base", "sourceType": "domain", "command": "string.symbol", "label": "string.symbol", @@ -12326,10 +12885,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-symbol-base" }, { - "id": "domain-string-symbol-arg-length", + "id": "coverage:domain-string-symbol-arg-length", "sourceType": "domain", "command": "string.symbol", "label": "string.symbol arg length", @@ -12348,10 +12908,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-symbol-arg-length" }, { - "id": "domain-string-ulid-base", + "id": "coverage:domain-string-ulid-base", "sourceType": "domain", "command": "string.ulid", "label": "string.ulid", @@ -12370,10 +12931,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-ulid-base" }, { - "id": "domain-string-ulid-arg-refDate", + "id": "coverage:domain-string-ulid-arg-refDate", "sourceType": "domain", "command": "string.ulid", "label": "string.ulid arg refDate", @@ -12392,10 +12954,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-ulid-arg-refDate" }, { - "id": "domain-string-uuid-base", + "id": "coverage:domain-string-uuid-base", "sourceType": "domain", "command": "string.uuid", "label": "string.uuid", @@ -12414,10 +12977,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-uuid-base" }, { - "id": "domain-system-commonFileExt-base", + "id": "coverage:domain-system-commonFileExt-base", "sourceType": "domain", "command": "system.commonFileExt", "label": "system.commonFileExt", @@ -12436,10 +13000,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileExt-base" }, { - "id": "domain-system-commonFileName-base", + "id": "coverage:domain-system-commonFileName-base", "sourceType": "domain", "command": "system.commonFileName", "label": "system.commonFileName", @@ -12458,10 +13023,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileName-base" }, { - "id": "domain-system-commonFileName-arg-extension", + "id": "coverage:domain-system-commonFileName-arg-extension", "sourceType": "domain", "command": "system.commonFileName", "label": "system.commonFileName arg extension", @@ -12480,10 +13046,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["extension"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-commonFileName-arg-extension" }, { - "id": "domain-system-commonFileType-base", + "id": "coverage:domain-system-commonFileType-base", "sourceType": "domain", "command": "system.commonFileType", "label": "system.commonFileType", @@ -12502,10 +13069,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileType-base" }, { - "id": "domain-system-cron-base", + "id": "coverage:domain-system-cron-base", "sourceType": "domain", "command": "system.cron", "label": "system.cron", @@ -12524,10 +13092,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-cron-base" }, { - "id": "domain-system-cron-arg-includeNonStandard", + "id": "coverage:domain-system-cron-arg-includeNonStandard", "sourceType": "domain", "command": "system.cron", "label": "system.cron arg includeNonStandard", @@ -12546,10 +13115,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeNonStandard"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-cron-arg-includeNonStandard" }, { - "id": "domain-system-cron-arg-includeYear", + "id": "coverage:domain-system-cron-arg-includeYear", "sourceType": "domain", "command": "system.cron", "label": "system.cron arg includeYear", @@ -12568,10 +13138,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeYear"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-cron-arg-includeYear" }, { - "id": "domain-system-cron-pair-includeNonStandard-includeYear", + "id": "coverage:domain-system-cron-pair-includeNonStandard-includeYear", "sourceType": "domain", "command": "system.cron", "label": "system.cron pair includeNonStandard/includeYear", @@ -12590,10 +13161,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-system-cron-pair-includeNonStandard-includeYear" }, { - "id": "domain-system-directoryPath-base", + "id": "coverage:domain-system-directoryPath-base", "sourceType": "domain", "command": "system.directoryPath", "label": "system.directoryPath", @@ -12612,10 +13184,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-directoryPath-base" }, { - "id": "domain-system-fileExt-base", + "id": "coverage:domain-system-fileExt-base", "sourceType": "domain", "command": "system.fileExt", "label": "system.fileExt", @@ -12634,10 +13207,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileExt-base" }, { - "id": "domain-system-fileExt-arg-mimeType", + "id": "coverage:domain-system-fileExt-arg-mimeType", "sourceType": "domain", "command": "system.fileExt", "label": "system.fileExt arg mimeType", @@ -12656,10 +13230,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["mimeType"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-fileExt-arg-mimeType" }, { - "id": "domain-system-fileName-base", + "id": "coverage:domain-system-fileName-base", "sourceType": "domain", "command": "system.fileName", "label": "system.fileName", @@ -12678,10 +13253,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileName-base" }, { - "id": "domain-system-filePath-base", + "id": "coverage:domain-system-filePath-base", "sourceType": "domain", "command": "system.filePath", "label": "system.filePath", @@ -12700,10 +13276,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-filePath-base" }, { - "id": "domain-system-fileType-base", + "id": "coverage:domain-system-fileType-base", "sourceType": "domain", "command": "system.fileType", "label": "system.fileType", @@ -12722,10 +13299,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileType-base" }, { - "id": "domain-system-mimeType-base", + "id": "coverage:domain-system-mimeType-base", "sourceType": "domain", "command": "system.mimeType", "label": "system.mimeType", @@ -12744,10 +13322,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-mimeType-base" }, { - "id": "domain-system-networkInterface-base", + "id": "coverage:domain-system-networkInterface-base", "sourceType": "domain", "command": "system.networkInterface", "label": "system.networkInterface", @@ -12766,10 +13345,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-networkInterface-base" }, { - "id": "domain-system-semver-base", + "id": "coverage:domain-system-semver-base", "sourceType": "domain", "command": "system.semver", "label": "system.semver", @@ -12788,10 +13368,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-semver-base" }, { - "id": "domain-vehicle-bicycle-base", + "id": "coverage:domain-vehicle-bicycle-base", "sourceType": "domain", "command": "vehicle.bicycle", "label": "vehicle.bicycle", @@ -12810,10 +13391,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-bicycle-base" }, { - "id": "domain-vehicle-color-base", + "id": "coverage:domain-vehicle-color-base", "sourceType": "domain", "command": "vehicle.color", "label": "vehicle.color", @@ -12832,10 +13414,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-color-base" }, { - "id": "domain-vehicle-fuel-base", + "id": "coverage:domain-vehicle-fuel-base", "sourceType": "domain", "command": "vehicle.fuel", "label": "vehicle.fuel", @@ -12854,10 +13437,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-fuel-base" }, { - "id": "domain-vehicle-manufacturer-base", + "id": "coverage:domain-vehicle-manufacturer-base", "sourceType": "domain", "command": "vehicle.manufacturer", "label": "vehicle.manufacturer", @@ -12876,10 +13460,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-manufacturer-base" }, { - "id": "domain-vehicle-model-base", + "id": "coverage:domain-vehicle-model-base", "sourceType": "domain", "command": "vehicle.model", "label": "vehicle.model", @@ -12898,10 +13483,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-model-base" }, { - "id": "domain-vehicle-type-base", + "id": "coverage:domain-vehicle-type-base", "sourceType": "domain", "command": "vehicle.type", "label": "vehicle.type", @@ -12920,10 +13506,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-type-base" }, { - "id": "domain-vehicle-vehicle-base", + "id": "coverage:domain-vehicle-vehicle-base", "sourceType": "domain", "command": "vehicle.vehicle", "label": "vehicle.vehicle", @@ -12942,10 +13529,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vehicle-base" }, { - "id": "domain-vehicle-vin-base", + "id": "coverage:domain-vehicle-vin-base", "sourceType": "domain", "command": "vehicle.vin", "label": "vehicle.vin", @@ -12964,10 +13552,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vin-base" }, { - "id": "domain-vehicle-vrm-base", + "id": "coverage:domain-vehicle-vrm-base", "sourceType": "domain", "command": "vehicle.vrm", "label": "vehicle.vrm", @@ -12986,10 +13575,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vrm-base" }, { - "id": "domain-word-adjective-base", + "id": "coverage:domain-word-adjective-base", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective", @@ -13008,10 +13598,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-adjective-base" }, { - "id": "domain-word-adjective-arg-length", + "id": "coverage:domain-word-adjective-arg-length", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg length", @@ -13030,10 +13621,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-length" }, { - "id": "domain-word-adjective-arg-max", + "id": "coverage:domain-word-adjective-arg-max", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg max", @@ -13052,10 +13644,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-max" }, { - "id": "domain-word-adjective-arg-strategy", + "id": "coverage:domain-word-adjective-arg-strategy", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg strategy", @@ -13074,10 +13667,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-strategy" }, { - "id": "domain-word-adjective-pair-length-max", + "id": "coverage:domain-word-adjective-pair-length-max", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective pair length/max", @@ -13096,10 +13690,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adjective-pair-length-max" }, { - "id": "domain-word-adjective-pair-max-strategy", + "id": "coverage:domain-word-adjective-pair-max-strategy", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective pair max/strategy", @@ -13118,10 +13713,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adjective-pair-max-strategy" }, { - "id": "domain-word-adverb-base", + "id": "coverage:domain-word-adverb-base", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb", @@ -13140,10 +13736,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-adverb-base" }, { - "id": "domain-word-adverb-arg-length", + "id": "coverage:domain-word-adverb-arg-length", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg length", @@ -13162,10 +13759,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-length" }, { - "id": "domain-word-adverb-arg-max", + "id": "coverage:domain-word-adverb-arg-max", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg max", @@ -13184,10 +13782,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-max" }, { - "id": "domain-word-adverb-arg-strategy", + "id": "coverage:domain-word-adverb-arg-strategy", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg strategy", @@ -13206,10 +13805,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-strategy" }, { - "id": "domain-word-adverb-pair-length-max", + "id": "coverage:domain-word-adverb-pair-length-max", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb pair length/max", @@ -13228,10 +13828,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adverb-pair-length-max" }, { - "id": "domain-word-adverb-pair-max-strategy", + "id": "coverage:domain-word-adverb-pair-max-strategy", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb pair max/strategy", @@ -13250,10 +13851,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adverb-pair-max-strategy" }, { - "id": "domain-word-conjunction-base", + "id": "coverage:domain-word-conjunction-base", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction", @@ -13272,10 +13874,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-conjunction-base" }, { - "id": "domain-word-conjunction-arg-length", + "id": "coverage:domain-word-conjunction-arg-length", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg length", @@ -13294,10 +13897,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-length" }, { - "id": "domain-word-conjunction-arg-max", + "id": "coverage:domain-word-conjunction-arg-max", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg max", @@ -13316,10 +13920,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-max" }, { - "id": "domain-word-conjunction-arg-strategy", + "id": "coverage:domain-word-conjunction-arg-strategy", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg strategy", @@ -13338,10 +13943,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-strategy" }, { - "id": "domain-word-conjunction-pair-length-max", + "id": "coverage:domain-word-conjunction-pair-length-max", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction pair length/max", @@ -13360,10 +13966,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-conjunction-pair-length-max" }, { - "id": "domain-word-conjunction-pair-max-strategy", + "id": "coverage:domain-word-conjunction-pair-max-strategy", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction pair max/strategy", @@ -13382,10 +13989,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-conjunction-pair-max-strategy" }, { - "id": "domain-word-interjection-base", + "id": "coverage:domain-word-interjection-base", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection", @@ -13404,10 +14012,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-interjection-base" }, { - "id": "domain-word-interjection-arg-length", + "id": "coverage:domain-word-interjection-arg-length", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg length", @@ -13426,10 +14035,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-length" }, { - "id": "domain-word-interjection-arg-max", + "id": "coverage:domain-word-interjection-arg-max", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg max", @@ -13448,10 +14058,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-max" }, { - "id": "domain-word-interjection-arg-strategy", + "id": "coverage:domain-word-interjection-arg-strategy", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg strategy", @@ -13470,10 +14081,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-strategy" }, { - "id": "domain-word-interjection-pair-length-max", + "id": "coverage:domain-word-interjection-pair-length-max", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection pair length/max", @@ -13492,10 +14104,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-interjection-pair-length-max" }, { - "id": "domain-word-interjection-pair-max-strategy", + "id": "coverage:domain-word-interjection-pair-max-strategy", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection pair max/strategy", @@ -13514,10 +14127,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-interjection-pair-max-strategy" }, { - "id": "domain-word-noun-base", + "id": "coverage:domain-word-noun-base", "sourceType": "domain", "command": "word.noun", "label": "word.noun", @@ -13536,10 +14150,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-noun-base" }, { - "id": "domain-word-noun-arg-length", + "id": "coverage:domain-word-noun-arg-length", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg length", @@ -13558,10 +14173,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-length" }, { - "id": "domain-word-noun-arg-max", + "id": "coverage:domain-word-noun-arg-max", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg max", @@ -13580,10 +14196,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-max" }, { - "id": "domain-word-noun-arg-strategy", + "id": "coverage:domain-word-noun-arg-strategy", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg strategy", @@ -13602,10 +14219,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-strategy" }, { - "id": "domain-word-noun-pair-length-max", + "id": "coverage:domain-word-noun-pair-length-max", "sourceType": "domain", "command": "word.noun", "label": "word.noun pair length/max", @@ -13624,10 +14242,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-noun-pair-length-max" }, { - "id": "domain-word-noun-pair-max-strategy", + "id": "coverage:domain-word-noun-pair-max-strategy", "sourceType": "domain", "command": "word.noun", "label": "word.noun pair max/strategy", @@ -13646,10 +14265,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-noun-pair-max-strategy" }, { - "id": "domain-word-preposition-base", + "id": "coverage:domain-word-preposition-base", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition", @@ -13668,10 +14288,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-preposition-base" }, { - "id": "domain-word-preposition-arg-length", + "id": "coverage:domain-word-preposition-arg-length", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg length", @@ -13690,10 +14311,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-length" }, { - "id": "domain-word-preposition-arg-max", + "id": "coverage:domain-word-preposition-arg-max", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg max", @@ -13712,10 +14334,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-max" }, { - "id": "domain-word-preposition-arg-strategy", + "id": "coverage:domain-word-preposition-arg-strategy", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg strategy", @@ -13734,10 +14357,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-strategy" }, { - "id": "domain-word-preposition-pair-length-max", + "id": "coverage:domain-word-preposition-pair-length-max", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition pair length/max", @@ -13756,10 +14380,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-preposition-pair-length-max" }, { - "id": "domain-word-preposition-pair-max-strategy", + "id": "coverage:domain-word-preposition-pair-max-strategy", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition pair max/strategy", @@ -13778,10 +14403,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-preposition-pair-max-strategy" }, { - "id": "domain-word-sample-base", + "id": "coverage:domain-word-sample-base", "sourceType": "domain", "command": "word.sample", "label": "word.sample", @@ -13800,10 +14426,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-sample-base" }, { - "id": "domain-word-sample-arg-length", + "id": "coverage:domain-word-sample-arg-length", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg length", @@ -13822,10 +14449,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-length" }, { - "id": "domain-word-sample-arg-max", + "id": "coverage:domain-word-sample-arg-max", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg max", @@ -13844,10 +14472,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-max" }, { - "id": "domain-word-sample-arg-strategy", + "id": "coverage:domain-word-sample-arg-strategy", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg strategy", @@ -13866,10 +14495,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-strategy" }, { - "id": "domain-word-sample-pair-length-max", + "id": "coverage:domain-word-sample-pair-length-max", "sourceType": "domain", "command": "word.sample", "label": "word.sample pair length/max", @@ -13888,10 +14518,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-sample-pair-length-max" }, { - "id": "domain-word-sample-pair-max-strategy", + "id": "coverage:domain-word-sample-pair-max-strategy", "sourceType": "domain", "command": "word.sample", "label": "word.sample pair max/strategy", @@ -13910,10 +14541,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-sample-pair-max-strategy" }, { - "id": "domain-word-verb-base", + "id": "coverage:domain-word-verb-base", "sourceType": "domain", "command": "word.verb", "label": "word.verb", @@ -13932,10 +14564,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-verb-base" }, { - "id": "domain-word-verb-arg-length", + "id": "coverage:domain-word-verb-arg-length", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg length", @@ -13954,10 +14587,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-length" }, { - "id": "domain-word-verb-arg-max", + "id": "coverage:domain-word-verb-arg-max", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg max", @@ -13976,10 +14610,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-max" }, { - "id": "domain-word-verb-arg-strategy", + "id": "coverage:domain-word-verb-arg-strategy", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg strategy", @@ -13998,10 +14633,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-strategy" }, { - "id": "domain-word-verb-pair-length-max", + "id": "coverage:domain-word-verb-pair-length-max", "sourceType": "domain", "command": "word.verb", "label": "word.verb pair length/max", @@ -14020,10 +14656,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-verb-pair-length-max" }, { - "id": "domain-word-verb-pair-max-strategy", + "id": "coverage:domain-word-verb-pair-max-strategy", "sourceType": "domain", "command": "word.verb", "label": "word.verb pair max/strategy", @@ -14042,10 +14679,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-verb-pair-max-strategy" }, { - "id": "domain-word-words-base", + "id": "coverage:domain-word-words-base", "sourceType": "domain", "command": "word.words", "label": "word.words", @@ -14064,10 +14702,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-words-base" }, { - "id": "domain-word-words-arg-count", + "id": "coverage:domain-word-words-arg-count", "sourceType": "domain", "command": "word.words", "label": "word.words arg count", @@ -14086,10 +14725,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-words-arg-count" }, { - "id": "domain-word-words-arg-max", + "id": "coverage:domain-word-words-arg-max", "sourceType": "domain", "command": "word.words", "label": "word.words arg max", @@ -14108,10 +14748,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-words-arg-max" }, { - "id": "domain-word-words-pair-count-max", + "id": "coverage:domain-word-words-pair-count-max", "sourceType": "domain", "command": "word.words", "label": "word.words pair count/max", @@ -14130,12 +14771,13 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-words-pair-count-max" } ], "runtimeScenarios": [ { - "id": "custom-enum-base", + "id": "runtime:custom-enum-base", "sourceType": "enum", "command": "", "label": "enum", @@ -14154,10 +14796,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-enum-base" }, { - "id": "custom-enum-pairwise", + "id": "runtime:custom-enum-pairwise", "sourceType": "enum", "command": "", "label": "enum pairwise", @@ -14183,10 +14826,11 @@ "pairwiseEligible": true, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "pairwise"] + "origins": ["custom", "pairwise"], + "scenarioId": "custom-enum-pairwise" }, { - "id": "custom-literal-base", + "id": "runtime:custom-literal-base", "sourceType": "literal", "command": "", "label": "literal", @@ -14205,10 +14849,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-literal-base" }, { - "id": "custom-literal-empty", + "id": "runtime:custom-literal-empty", "sourceType": "literal", "command": "", "label": "literal empty", @@ -14227,10 +14872,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "empty"] + "origins": ["custom", "empty"], + "scenarioId": "custom-literal-empty" }, { - "id": "custom-regex-base", + "id": "runtime:custom-regex-base", "sourceType": "regex", "command": "", "label": "regex", @@ -14249,10 +14895,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom"] + "origins": ["custom"], + "scenarioId": "custom-regex-base" }, { - "id": "custom-regex-empty", + "id": "runtime:custom-regex-empty", "sourceType": "regex", "command": "", "label": "regex empty", @@ -14271,10 +14918,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["custom", "empty"] + "origins": ["custom", "empty"], + "scenarioId": "custom-regex-empty" }, { - "id": "faker-helpers-arrayElement-base", + "id": "runtime:faker-helpers-arrayElement-base", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement", @@ -14293,10 +14941,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-arrayElement-base" }, { - "id": "faker-helpers-arrayElement-example-1", + "id": "runtime:faker-helpers-arrayElement-example-1", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement example 1", @@ -14315,10 +14964,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-arrayElement-example-1" }, { - "id": "faker-helpers-arrayElement-arg-array", + "id": "runtime:faker-helpers-arrayElement-arg-array", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement arg array", @@ -14337,10 +14987,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElement-arg-array" }, { - "id": "faker-helpers-arrayElements-base", + "id": "runtime:faker-helpers-arrayElements-base", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements", @@ -14359,10 +15010,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-arrayElements-base" }, { - "id": "faker-helpers-arrayElements-example-1", + "id": "runtime:faker-helpers-arrayElements-example-1", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements example 1", @@ -14381,10 +15033,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array", "count"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-arrayElements-example-1" }, { - "id": "faker-helpers-arrayElements-arg-array", + "id": "runtime:faker-helpers-arrayElements-arg-array", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements arg array", @@ -14403,10 +15056,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElements-arg-array" }, { - "id": "faker-helpers-arrayElements-arg-count", + "id": "runtime:faker-helpers-arrayElements-arg-count", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements arg count", @@ -14425,10 +15079,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-arrayElements-arg-count" }, { - "id": "faker-helpers-arrayElements-pair-array-count", + "id": "runtime:faker-helpers-arrayElements-pair-array-count", "sourceType": "faker", "command": "helpers.arrayElements", "label": "helpers.arrayElements pair array/count", @@ -14447,10 +15102,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array", "count"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-arrayElements-pair-array-count" }, { - "id": "faker-helpers-fake-base", + "id": "runtime:faker-helpers-fake-base", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake", @@ -14469,10 +15125,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-fake-base" }, { - "id": "faker-helpers-fake-example-1", + "id": "runtime:faker-helpers-fake-example-1", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake example 1", @@ -14491,10 +15148,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-fake-example-1" }, { - "id": "faker-helpers-fake-arg-pattern", + "id": "runtime:faker-helpers-fake-arg-pattern", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake arg pattern", @@ -14513,10 +15171,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-fake-arg-pattern" }, { - "id": "faker-helpers-fromRegExp-base", + "id": "runtime:faker-helpers-fromRegExp-base", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp", @@ -14535,10 +15194,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-fromRegExp-base" }, { - "id": "faker-helpers-fromRegExp-example-1", + "id": "runtime:faker-helpers-fromRegExp-example-1", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp example 1", @@ -14557,10 +15217,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-fromRegExp-example-1" }, { - "id": "faker-helpers-fromRegExp-arg-pattern", + "id": "runtime:faker-helpers-fromRegExp-arg-pattern", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp arg pattern", @@ -14579,10 +15240,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-fromRegExp-arg-pattern" }, { - "id": "faker-helpers-mustache-base", + "id": "runtime:faker-helpers-mustache-base", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache", @@ -14601,10 +15263,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-mustache-base" }, { - "id": "faker-helpers-mustache-example-1", + "id": "runtime:faker-helpers-mustache-example-1", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache example 1", @@ -14623,10 +15286,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text", "data"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-mustache-example-1" }, { - "id": "faker-helpers-mustache-arg-text", + "id": "runtime:faker-helpers-mustache-arg-text", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache arg text", @@ -14645,10 +15309,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-mustache-arg-text" }, { - "id": "faker-helpers-mustache-arg-data", + "id": "runtime:faker-helpers-mustache-arg-data", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache arg data", @@ -14667,10 +15332,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["data"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-mustache-arg-data" }, { - "id": "faker-helpers-mustache-pair-text-data", + "id": "runtime:faker-helpers-mustache-pair-text-data", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache pair text/data", @@ -14689,10 +15355,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["text", "data"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-mustache-pair-text-data" }, { - "id": "faker-helpers-rangeToNumber-base", + "id": "runtime:faker-helpers-rangeToNumber-base", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber", @@ -14711,10 +15378,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-rangeToNumber-base" }, { - "id": "faker-helpers-rangeToNumber-example-1", + "id": "runtime:faker-helpers-rangeToNumber-example-1", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber example 1", @@ -14733,10 +15401,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["numberOrRange"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-rangeToNumber-example-1" }, { - "id": "faker-helpers-rangeToNumber-arg-numberOrRange", + "id": "runtime:faker-helpers-rangeToNumber-arg-numberOrRange", "sourceType": "faker", "command": "helpers.rangeToNumber", "label": "helpers.rangeToNumber arg numberOrRange", @@ -14755,10 +15424,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["numberOrRange"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-rangeToNumber-arg-numberOrRange" }, { - "id": "faker-helpers-replaceCreditCardSymbols-base", + "id": "runtime:faker-helpers-replaceCreditCardSymbols-base", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols", @@ -14777,10 +15447,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-base" }, { - "id": "faker-helpers-replaceCreditCardSymbols-example-1", + "id": "runtime:faker-helpers-replaceCreditCardSymbols-example-1", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols example 1", @@ -14799,10 +15470,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string", "symbol"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-example-1" }, { - "id": "faker-helpers-replaceCreditCardSymbols-arg-string", + "id": "runtime:faker-helpers-replaceCreditCardSymbols-arg-string", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols arg string", @@ -14821,10 +15493,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-string" }, { - "id": "faker-helpers-replaceCreditCardSymbols-arg-symbol", + "id": "runtime:faker-helpers-replaceCreditCardSymbols-arg-symbol", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols arg symbol", @@ -14843,10 +15516,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-arg-symbol" }, { - "id": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol", + "id": "runtime:faker-helpers-replaceCreditCardSymbols-pair-string-symbol", "sourceType": "faker", "command": "helpers.replaceCreditCardSymbols", "label": "helpers.replaceCreditCardSymbols pair string/symbol", @@ -14865,10 +15539,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-replaceCreditCardSymbols-pair-string-symbol" }, { - "id": "faker-helpers-replaceSymbols-base", + "id": "runtime:faker-helpers-replaceSymbols-base", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols", @@ -14887,10 +15562,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-replaceSymbols-base" }, { - "id": "faker-helpers-replaceSymbols-example-1", + "id": "runtime:faker-helpers-replaceSymbols-example-1", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols example 1", @@ -14909,10 +15585,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-replaceSymbols-example-1" }, { - "id": "faker-helpers-replaceSymbols-arg-string", + "id": "runtime:faker-helpers-replaceSymbols-arg-string", "sourceType": "faker", "command": "helpers.replaceSymbols", "label": "helpers.replaceSymbols arg string", @@ -14931,10 +15608,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-replaceSymbols-arg-string" }, { - "id": "faker-helpers-shuffle-base", + "id": "runtime:faker-helpers-shuffle-base", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle", @@ -14953,10 +15631,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-shuffle-base" }, { - "id": "faker-helpers-shuffle-example-1", + "id": "runtime:faker-helpers-shuffle-example-1", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle example 1", @@ -14975,10 +15654,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-shuffle-example-1" }, { - "id": "faker-helpers-shuffle-arg-array", + "id": "runtime:faker-helpers-shuffle-arg-array", "sourceType": "faker", "command": "helpers.shuffle", "label": "helpers.shuffle arg array", @@ -14997,10 +15677,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-shuffle-arg-array" }, { - "id": "faker-helpers-slugify-base", + "id": "runtime:faker-helpers-slugify-base", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify", @@ -15019,10 +15700,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-slugify-base" }, { - "id": "faker-helpers-slugify-example-1", + "id": "runtime:faker-helpers-slugify-example-1", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify example 1", @@ -15041,10 +15723,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-slugify-example-1" }, { - "id": "faker-helpers-slugify-arg-string", + "id": "runtime:faker-helpers-slugify-arg-string", "sourceType": "faker", "command": "helpers.slugify", "label": "helpers.slugify arg string", @@ -15063,10 +15746,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["string"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-slugify-arg-string" }, { - "id": "faker-helpers-uniqueArray-base", + "id": "runtime:faker-helpers-uniqueArray-base", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray", @@ -15085,10 +15769,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-uniqueArray-base" }, { - "id": "faker-helpers-uniqueArray-example-1", + "id": "runtime:faker-helpers-uniqueArray-example-1", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray example 1", @@ -15107,10 +15792,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-uniqueArray-example-1" }, { - "id": "faker-helpers-uniqueArray-arg-source", + "id": "runtime:faker-helpers-uniqueArray-arg-source", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray arg source", @@ -15129,10 +15815,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-uniqueArray-arg-source" }, { - "id": "faker-helpers-uniqueArray-arg-length", + "id": "runtime:faker-helpers-uniqueArray-arg-length", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray arg length", @@ -15151,10 +15838,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "faker-helpers-uniqueArray-arg-length" }, { - "id": "faker-helpers-uniqueArray-pair-source-length", + "id": "runtime:faker-helpers-uniqueArray-pair-source-length", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray pair source/length", @@ -15173,10 +15861,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["source", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "faker-helpers-uniqueArray-pair-source-length" }, { - "id": "faker-helpers-weightedArrayElement-base", + "id": "runtime:faker-helpers-weightedArrayElement-base", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement", @@ -15195,10 +15884,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "faker-helpers-weightedArrayElement-base" }, { - "id": "faker-helpers-weightedArrayElement-example-1", + "id": "runtime:faker-helpers-weightedArrayElement-example-1", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement example 1", @@ -15217,10 +15907,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["array"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "faker-helpers-weightedArrayElement-example-1" }, { - "id": "domain-airline-aircraftType-base", + "id": "runtime:domain-airline-aircraftType-base", "sourceType": "domain", "command": "airline.aircraftType", "label": "airline.aircraftType", @@ -15239,10 +15930,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-aircraftType-base" }, { - "id": "domain-airline-flightNumber-base", + "id": "runtime:domain-airline-flightNumber-base", "sourceType": "domain", "command": "airline.flightNumber", "label": "airline.flightNumber", @@ -15261,10 +15953,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-flightNumber-base" }, { - "id": "domain-airline-iataCode-base", + "id": "runtime:domain-airline-iataCode-base", "sourceType": "domain", "command": "airline.iataCode", "label": "airline.iataCode", @@ -15283,10 +15976,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-iataCode-base" }, { - "id": "domain-airline-name-base", + "id": "runtime:domain-airline-name-base", "sourceType": "domain", "command": "airline.name", "label": "airline.name", @@ -15305,10 +15999,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-name-base" }, { - "id": "domain-airline-recordLocator-base", + "id": "runtime:domain-airline-recordLocator-base", "sourceType": "domain", "command": "airline.recordLocator", "label": "airline.recordLocator", @@ -15327,10 +16022,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-recordLocator-base" }, { - "id": "domain-airline-seat-base", + "id": "runtime:domain-airline-seat-base", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat", @@ -15349,10 +16045,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airline-seat-base" }, { - "id": "domain-airline-seat-example-1", + "id": "runtime:domain-airline-seat-example-1", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat example 1", @@ -15371,10 +16068,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-airline-seat-example-1" }, { - "id": "domain-airline-seat-example-2", + "id": "runtime:domain-airline-seat-example-2", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat example 2", @@ -15393,10 +16091,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-airline-seat-example-2" }, { - "id": "domain-airline-seat-arg-aircraftType", + "id": "runtime:domain-airline-seat-arg-aircraftType", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat arg aircraftType", @@ -15415,10 +16114,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["aircraftType"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-airline-seat-arg-aircraftType" }, { - "id": "domain-airplane-iataTypeCode-base", + "id": "runtime:domain-airplane-iataTypeCode-base", "sourceType": "domain", "command": "airplane.iataTypeCode", "label": "airplane.iataTypeCode", @@ -15437,10 +16137,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airplane-iataTypeCode-base" }, { - "id": "domain-airplane-name-base", + "id": "runtime:domain-airplane-name-base", "sourceType": "domain", "command": "airplane.name", "label": "airplane.name", @@ -15459,10 +16160,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airplane-name-base" }, { - "id": "domain-airport-iataCode-base", + "id": "runtime:domain-airport-iataCode-base", "sourceType": "domain", "command": "airport.iataCode", "label": "airport.iataCode", @@ -15481,10 +16183,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airport-iataCode-base" }, { - "id": "domain-airport-name-base", + "id": "runtime:domain-airport-name-base", "sourceType": "domain", "command": "airport.name", "label": "airport.name", @@ -15503,10 +16206,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-airport-name-base" }, { - "id": "domain-animal-bear-base", + "id": "runtime:domain-animal-bear-base", "sourceType": "domain", "command": "animal.bear", "label": "animal.bear", @@ -15525,10 +16229,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-bear-base" }, { - "id": "domain-animal-bird-base", + "id": "runtime:domain-animal-bird-base", "sourceType": "domain", "command": "animal.bird", "label": "animal.bird", @@ -15547,10 +16252,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-bird-base" }, { - "id": "domain-animal-cat-base", + "id": "runtime:domain-animal-cat-base", "sourceType": "domain", "command": "animal.cat", "label": "animal.cat", @@ -15569,10 +16275,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cat-base" }, { - "id": "domain-animal-cetacean-base", + "id": "runtime:domain-animal-cetacean-base", "sourceType": "domain", "command": "animal.cetacean", "label": "animal.cetacean", @@ -15591,10 +16298,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cetacean-base" }, { - "id": "domain-animal-cow-base", + "id": "runtime:domain-animal-cow-base", "sourceType": "domain", "command": "animal.cow", "label": "animal.cow", @@ -15613,10 +16321,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-cow-base" }, { - "id": "domain-animal-crocodilia-base", + "id": "runtime:domain-animal-crocodilia-base", "sourceType": "domain", "command": "animal.crocodilia", "label": "animal.crocodilia", @@ -15635,10 +16344,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-crocodilia-base" }, { - "id": "domain-animal-dog-base", + "id": "runtime:domain-animal-dog-base", "sourceType": "domain", "command": "animal.dog", "label": "animal.dog", @@ -15657,10 +16367,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-dog-base" }, { - "id": "domain-animal-fish-base", + "id": "runtime:domain-animal-fish-base", "sourceType": "domain", "command": "animal.fish", "label": "animal.fish", @@ -15679,10 +16390,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-fish-base" }, { - "id": "domain-animal-horse-base", + "id": "runtime:domain-animal-horse-base", "sourceType": "domain", "command": "animal.horse", "label": "animal.horse", @@ -15701,10 +16413,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-horse-base" }, { - "id": "domain-animal-insect-base", + "id": "runtime:domain-animal-insect-base", "sourceType": "domain", "command": "animal.insect", "label": "animal.insect", @@ -15723,10 +16436,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-insect-base" }, { - "id": "domain-animal-lion-base", + "id": "runtime:domain-animal-lion-base", "sourceType": "domain", "command": "animal.lion", "label": "animal.lion", @@ -15745,10 +16459,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-lion-base" }, { - "id": "domain-animal-petName-base", + "id": "runtime:domain-animal-petName-base", "sourceType": "domain", "command": "animal.petName", "label": "animal.petName", @@ -15767,10 +16482,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-petName-base" }, { - "id": "domain-animal-rabbit-base", + "id": "runtime:domain-animal-rabbit-base", "sourceType": "domain", "command": "animal.rabbit", "label": "animal.rabbit", @@ -15789,10 +16505,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-rabbit-base" }, { - "id": "domain-animal-rodent-base", + "id": "runtime:domain-animal-rodent-base", "sourceType": "domain", "command": "animal.rodent", "label": "animal.rodent", @@ -15811,10 +16528,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-rodent-base" }, { - "id": "domain-animal-snake-base", + "id": "runtime:domain-animal-snake-base", "sourceType": "domain", "command": "animal.snake", "label": "animal.snake", @@ -15833,10 +16551,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-snake-base" }, { - "id": "domain-animal-type-base", + "id": "runtime:domain-animal-type-base", "sourceType": "domain", "command": "animal.type", "label": "animal.type", @@ -15855,10 +16574,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-animal-type-base" }, { - "id": "domain-autoIncrement-sequence-base", + "id": "runtime:domain-autoIncrement-sequence-base", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence", @@ -15877,10 +16597,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-autoIncrement-sequence-base" }, { - "id": "domain-autoIncrement-sequence-example-1", + "id": "runtime:domain-autoIncrement-sequence-example-1", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 1", @@ -15899,10 +16620,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-1" }, { - "id": "domain-autoIncrement-sequence-example-2", + "id": "runtime:domain-autoIncrement-sequence-example-2", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 2", @@ -15921,10 +16643,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-2" }, { - "id": "domain-autoIncrement-sequence-example-3", + "id": "runtime:domain-autoIncrement-sequence-example-3", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 3", @@ -15943,10 +16666,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "prefix", "suffix", "zeropadding"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-sequence-example-3" }, { - "id": "domain-autoIncrement-sequence-arg-start", + "id": "runtime:domain-autoIncrement-sequence-arg-start", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg start", @@ -15965,10 +16689,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-start" }, { - "id": "domain-autoIncrement-sequence-arg-step", + "id": "runtime:domain-autoIncrement-sequence-arg-step", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg step", @@ -15987,10 +16712,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-step" }, { - "id": "domain-autoIncrement-sequence-arg-prefix", + "id": "runtime:domain-autoIncrement-sequence-arg-prefix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg prefix", @@ -16009,10 +16735,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-prefix" }, { - "id": "domain-autoIncrement-sequence-arg-suffix", + "id": "runtime:domain-autoIncrement-sequence-arg-suffix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg suffix", @@ -16031,10 +16758,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["suffix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-suffix" }, { - "id": "domain-autoIncrement-sequence-arg-zeropadding", + "id": "runtime:domain-autoIncrement-sequence-arg-zeropadding", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence arg zeropadding", @@ -16053,10 +16781,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["zeropadding"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-sequence-arg-zeropadding" }, { - "id": "domain-autoIncrement-sequence-pair-start-step", + "id": "runtime:domain-autoIncrement-sequence-pair-start-step", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair start/step", @@ -16075,10 +16804,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-start-step" }, { - "id": "domain-autoIncrement-sequence-pair-step-prefix", + "id": "runtime:domain-autoIncrement-sequence-pair-step-prefix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair step/prefix", @@ -16097,10 +16827,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-step-prefix" }, { - "id": "domain-autoIncrement-sequence-pair-prefix-suffix", + "id": "runtime:domain-autoIncrement-sequence-pair-prefix-suffix", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair prefix/suffix", @@ -16119,10 +16850,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix", "suffix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-prefix-suffix" }, { - "id": "domain-autoIncrement-sequence-pair-suffix-zeropadding", + "id": "runtime:domain-autoIncrement-sequence-pair-suffix-zeropadding", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence pair suffix/zeropadding", @@ -16141,10 +16873,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["suffix", "zeropadding"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-sequence-pair-suffix-zeropadding" }, { - "id": "domain-autoIncrement-timestamp-base", + "id": "runtime:domain-autoIncrement-timestamp-base", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp", @@ -16163,10 +16896,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-autoIncrement-timestamp-base" }, { - "id": "domain-autoIncrement-timestamp-example-1", + "id": "runtime:domain-autoIncrement-timestamp-example-1", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 1", @@ -16185,10 +16919,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-1" }, { - "id": "domain-autoIncrement-timestamp-example-2", + "id": "runtime:domain-autoIncrement-timestamp-example-2", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 2", @@ -16207,10 +16942,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-2" }, { - "id": "domain-autoIncrement-timestamp-example-3", + "id": "runtime:domain-autoIncrement-timestamp-example-3", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp example 3", @@ -16229,10 +16965,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step", "type", "outputFormat", "inputFormat"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-autoIncrement-timestamp-example-3" }, { - "id": "domain-autoIncrement-timestamp-arg-start", + "id": "runtime:domain-autoIncrement-timestamp-arg-start", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg start", @@ -16251,10 +16988,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-start" }, { - "id": "domain-autoIncrement-timestamp-arg-step", + "id": "runtime:domain-autoIncrement-timestamp-arg-step", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg step", @@ -16273,10 +17011,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-step" }, { - "id": "domain-autoIncrement-timestamp-arg-type", + "id": "runtime:domain-autoIncrement-timestamp-arg-type", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg type", @@ -16295,10 +17034,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["type"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-type" }, { - "id": "domain-autoIncrement-timestamp-arg-outputFormat", + "id": "runtime:domain-autoIncrement-timestamp-arg-outputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg outputFormat", @@ -16317,10 +17057,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["outputFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-outputFormat" }, { - "id": "domain-autoIncrement-timestamp-arg-inputFormat", + "id": "runtime:domain-autoIncrement-timestamp-arg-inputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp arg inputFormat", @@ -16339,10 +17080,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["inputFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-autoIncrement-timestamp-arg-inputFormat" }, { - "id": "domain-autoIncrement-timestamp-pair-start-step", + "id": "runtime:domain-autoIncrement-timestamp-pair-start-step", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair start/step", @@ -16361,10 +17103,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["start", "step"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-start-step" }, { - "id": "domain-autoIncrement-timestamp-pair-step-type", + "id": "runtime:domain-autoIncrement-timestamp-pair-step-type", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair step/type", @@ -16383,10 +17126,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["step", "type"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-step-type" }, { - "id": "domain-autoIncrement-timestamp-pair-type-outputFormat", + "id": "runtime:domain-autoIncrement-timestamp-pair-type-outputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair type/outputFormat", @@ -16405,10 +17149,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["type", "outputFormat"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-type-outputFormat" }, { - "id": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", + "id": "runtime:domain-autoIncrement-timestamp-pair-outputFormat-inputFormat", "sourceType": "domain", "command": "autoIncrement.timestamp", "label": "autoIncrement.timestamp pair outputFormat/inputFormat", @@ -16427,10 +17172,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["outputFormat", "inputFormat"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-autoIncrement-timestamp-pair-outputFormat-inputFormat" }, { - "id": "domain-book-author-base", + "id": "runtime:domain-book-author-base", "sourceType": "domain", "command": "book.author", "label": "book.author", @@ -16449,10 +17195,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-author-base" }, { - "id": "domain-book-format-base", + "id": "runtime:domain-book-format-base", "sourceType": "domain", "command": "book.format", "label": "book.format", @@ -16471,10 +17218,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-format-base" }, { - "id": "domain-book-genre-base", + "id": "runtime:domain-book-genre-base", "sourceType": "domain", "command": "book.genre", "label": "book.genre", @@ -16493,10 +17241,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-genre-base" }, { - "id": "domain-book-publisher-base", + "id": "runtime:domain-book-publisher-base", "sourceType": "domain", "command": "book.publisher", "label": "book.publisher", @@ -16515,10 +17264,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-publisher-base" }, { - "id": "domain-book-series-base", + "id": "runtime:domain-book-series-base", "sourceType": "domain", "command": "book.series", "label": "book.series", @@ -16537,10 +17287,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-series-base" }, { - "id": "domain-book-title-base", + "id": "runtime:domain-book-title-base", "sourceType": "domain", "command": "book.title", "label": "book.title", @@ -16559,10 +17310,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-book-title-base" }, { - "id": "domain-chemicalElement-atomicNumber-base", + "id": "runtime:domain-chemicalElement-atomicNumber-base", "sourceType": "domain", "command": "chemicalElement.atomicNumber", "label": "chemicalElement.atomicNumber", @@ -16581,10 +17333,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-atomicNumber-base" }, { - "id": "domain-chemicalElement-name-base", + "id": "runtime:domain-chemicalElement-name-base", "sourceType": "domain", "command": "chemicalElement.name", "label": "chemicalElement.name", @@ -16603,10 +17356,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-name-base" }, { - "id": "domain-chemicalElement-symbol-base", + "id": "runtime:domain-chemicalElement-symbol-base", "sourceType": "domain", "command": "chemicalElement.symbol", "label": "chemicalElement.symbol", @@ -16625,10 +17379,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-chemicalElement-symbol-base" }, { - "id": "domain-color-cssSupportedFunction-base", + "id": "runtime:domain-color-cssSupportedFunction-base", "sourceType": "domain", "command": "color.cssSupportedFunction", "label": "color.cssSupportedFunction", @@ -16647,10 +17402,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-cssSupportedFunction-base" }, { - "id": "domain-color-cssSupportedSpace-base", + "id": "runtime:domain-color-cssSupportedSpace-base", "sourceType": "domain", "command": "color.cssSupportedSpace", "label": "color.cssSupportedSpace", @@ -16669,10 +17425,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-cssSupportedSpace-base" }, { - "id": "domain-color-human-base", + "id": "runtime:domain-color-human-base", "sourceType": "domain", "command": "color.human", "label": "color.human", @@ -16691,10 +17448,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-human-base" }, { - "id": "domain-color-rgb-base", + "id": "runtime:domain-color-rgb-base", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb", @@ -16713,10 +17471,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-rgb-base" }, { - "id": "domain-color-rgb-arg-casing", + "id": "runtime:domain-color-rgb-arg-casing", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg casing", @@ -16735,10 +17494,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-casing" }, { - "id": "domain-color-rgb-arg-format", + "id": "runtime:domain-color-rgb-arg-format", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg format", @@ -16757,10 +17517,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["format"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-format" }, { - "id": "domain-color-rgb-arg-includeAlpha", + "id": "runtime:domain-color-rgb-arg-includeAlpha", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg includeAlpha", @@ -16779,10 +17540,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeAlpha"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-includeAlpha" }, { - "id": "domain-color-rgb-arg-prefix", + "id": "runtime:domain-color-rgb-arg-prefix", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb arg prefix", @@ -16801,10 +17563,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-color-rgb-arg-prefix" }, { - "id": "domain-color-rgb-pair-casing-format", + "id": "runtime:domain-color-rgb-pair-casing-format", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair casing/format", @@ -16823,10 +17586,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "format"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-casing-format" }, { - "id": "domain-color-rgb-pair-format-includeAlpha", + "id": "runtime:domain-color-rgb-pair-format-includeAlpha", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair format/includeAlpha", @@ -16845,10 +17609,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["format", "includeAlpha"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-format-includeAlpha" }, { - "id": "domain-color-rgb-pair-includeAlpha-prefix", + "id": "runtime:domain-color-rgb-pair-includeAlpha-prefix", "sourceType": "domain", "command": "color.rgb", "label": "color.rgb pair includeAlpha/prefix", @@ -16867,10 +17632,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeAlpha", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-color-rgb-pair-includeAlpha-prefix" }, { - "id": "domain-color-space-base", + "id": "runtime:domain-color-space-base", "sourceType": "domain", "command": "color.space", "label": "color.space", @@ -16889,10 +17655,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-color-space-base" }, { - "id": "domain-commerce-department-base", + "id": "runtime:domain-commerce-department-base", "sourceType": "domain", "command": "commerce.department", "label": "commerce.department", @@ -16911,10 +17678,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-department-base" }, { - "id": "domain-commerce-isbn-base", + "id": "runtime:domain-commerce-isbn-base", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn", @@ -16933,10 +17701,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-isbn-base" }, { - "id": "domain-commerce-isbn-arg-separator", + "id": "runtime:domain-commerce-isbn-arg-separator", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn arg separator", @@ -16955,10 +17724,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-isbn-arg-separator" }, { - "id": "domain-commerce-isbn-arg-variant", + "id": "runtime:domain-commerce-isbn-arg-variant", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn arg variant", @@ -16977,10 +17747,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["variant"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-isbn-arg-variant" }, { - "id": "domain-commerce-isbn-pair-separator-variant", + "id": "runtime:domain-commerce-isbn-pair-separator-variant", "sourceType": "domain", "command": "commerce.isbn", "label": "commerce.isbn pair separator/variant", @@ -16999,10 +17770,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "variant"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-isbn-pair-separator-variant" }, { - "id": "domain-commerce-price-base", + "id": "runtime:domain-commerce-price-base", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price", @@ -17021,10 +17793,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-price-base" }, { - "id": "domain-commerce-price-example-1", + "id": "runtime:domain-commerce-price-example-1", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price example 1", @@ -17043,10 +17816,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max", "min", "symbol"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-commerce-price-example-1" }, { - "id": "domain-commerce-price-arg-dec", + "id": "runtime:domain-commerce-price-arg-dec", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg dec", @@ -17065,10 +17839,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-dec" }, { - "id": "domain-commerce-price-arg-max", + "id": "runtime:domain-commerce-price-arg-max", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg max", @@ -17087,10 +17862,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-max" }, { - "id": "domain-commerce-price-arg-min", + "id": "runtime:domain-commerce-price-arg-min", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg min", @@ -17109,10 +17885,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-min" }, { - "id": "domain-commerce-price-arg-symbol", + "id": "runtime:domain-commerce-price-arg-symbol", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price arg symbol", @@ -17131,10 +17908,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-price-arg-symbol" }, { - "id": "domain-commerce-price-pair-dec-max", + "id": "runtime:domain-commerce-price-pair-dec-max", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair dec/max", @@ -17153,10 +17931,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-dec-max" }, { - "id": "domain-commerce-price-pair-max-min", + "id": "runtime:domain-commerce-price-pair-max-min", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair max/min", @@ -17175,10 +17954,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-max-min" }, { - "id": "domain-commerce-price-pair-min-symbol", + "id": "runtime:domain-commerce-price-pair-min-symbol", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price pair min/symbol", @@ -17197,10 +17977,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-commerce-price-pair-min-symbol" }, { - "id": "domain-commerce-product-base", + "id": "runtime:domain-commerce-product-base", "sourceType": "domain", "command": "commerce.product", "label": "commerce.product", @@ -17219,10 +18000,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-product-base" }, { - "id": "domain-commerce-productAdjective-base", + "id": "runtime:domain-commerce-productAdjective-base", "sourceType": "domain", "command": "commerce.productAdjective", "label": "commerce.productAdjective", @@ -17241,10 +18023,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productAdjective-base" }, { - "id": "domain-commerce-productDescription-base", + "id": "runtime:domain-commerce-productDescription-base", "sourceType": "domain", "command": "commerce.productDescription", "label": "commerce.productDescription", @@ -17263,10 +18046,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productDescription-base" }, { - "id": "domain-commerce-productMaterial-base", + "id": "runtime:domain-commerce-productMaterial-base", "sourceType": "domain", "command": "commerce.productMaterial", "label": "commerce.productMaterial", @@ -17285,10 +18069,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productMaterial-base" }, { - "id": "domain-commerce-productName-base", + "id": "runtime:domain-commerce-productName-base", "sourceType": "domain", "command": "commerce.productName", "label": "commerce.productName", @@ -17307,10 +18092,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-productName-base" }, { - "id": "domain-commerce-upc-base", + "id": "runtime:domain-commerce-upc-base", "sourceType": "domain", "command": "commerce.upc", "label": "commerce.upc", @@ -17329,10 +18115,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-commerce-upc-base" }, { - "id": "domain-commerce-upc-arg-prefix", + "id": "runtime:domain-commerce-upc-arg-prefix", "sourceType": "domain", "command": "commerce.upc", "label": "commerce.upc arg prefix", @@ -17351,10 +18138,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-commerce-upc-arg-prefix" }, { - "id": "domain-company-buzzAdjective-base", + "id": "runtime:domain-company-buzzAdjective-base", "sourceType": "domain", "command": "company.buzzAdjective", "label": "company.buzzAdjective", @@ -17373,10 +18161,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzAdjective-base" }, { - "id": "domain-company-buzzNoun-base", + "id": "runtime:domain-company-buzzNoun-base", "sourceType": "domain", "command": "company.buzzNoun", "label": "company.buzzNoun", @@ -17395,10 +18184,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzNoun-base" }, { - "id": "domain-company-buzzPhrase-base", + "id": "runtime:domain-company-buzzPhrase-base", "sourceType": "domain", "command": "company.buzzPhrase", "label": "company.buzzPhrase", @@ -17417,10 +18207,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzPhrase-base" }, { - "id": "domain-company-buzzVerb-base", + "id": "runtime:domain-company-buzzVerb-base", "sourceType": "domain", "command": "company.buzzVerb", "label": "company.buzzVerb", @@ -17439,10 +18230,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-buzzVerb-base" }, { - "id": "domain-company-catchPhrase-base", + "id": "runtime:domain-company-catchPhrase-base", "sourceType": "domain", "command": "company.catchPhrase", "label": "company.catchPhrase", @@ -17461,10 +18253,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhrase-base" }, { - "id": "domain-company-catchPhraseAdjective-base", + "id": "runtime:domain-company-catchPhraseAdjective-base", "sourceType": "domain", "command": "company.catchPhraseAdjective", "label": "company.catchPhraseAdjective", @@ -17483,10 +18276,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseAdjective-base" }, { - "id": "domain-company-catchPhraseDescriptor-base", + "id": "runtime:domain-company-catchPhraseDescriptor-base", "sourceType": "domain", "command": "company.catchPhraseDescriptor", "label": "company.catchPhraseDescriptor", @@ -17505,10 +18299,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseDescriptor-base" }, { - "id": "domain-company-catchPhraseNoun-base", + "id": "runtime:domain-company-catchPhraseNoun-base", "sourceType": "domain", "command": "company.catchPhraseNoun", "label": "company.catchPhraseNoun", @@ -17527,10 +18322,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-catchPhraseNoun-base" }, { - "id": "domain-company-name-base", + "id": "runtime:domain-company-name-base", "sourceType": "domain", "command": "company.name", "label": "company.name", @@ -17549,10 +18345,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-company-name-base" }, { - "id": "domain-database-collation-base", + "id": "runtime:domain-database-collation-base", "sourceType": "domain", "command": "database.collation", "label": "database.collation", @@ -17571,10 +18368,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-collation-base" }, { - "id": "domain-database-column-base", + "id": "runtime:domain-database-column-base", "sourceType": "domain", "command": "database.column", "label": "database.column", @@ -17593,10 +18391,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-column-base" }, { - "id": "domain-database-engine-base", + "id": "runtime:domain-database-engine-base", "sourceType": "domain", "command": "database.engine", "label": "database.engine", @@ -17615,10 +18414,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-engine-base" }, { - "id": "domain-database-mongodbObjectId-base", + "id": "runtime:domain-database-mongodbObjectId-base", "sourceType": "domain", "command": "database.mongodbObjectId", "label": "database.mongodbObjectId", @@ -17637,10 +18437,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-mongodbObjectId-base" }, { - "id": "domain-database-type-base", + "id": "runtime:domain-database-type-base", "sourceType": "domain", "command": "database.type", "label": "database.type", @@ -17659,10 +18460,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-database-type-base" }, { - "id": "domain-datatype-boolean-base", + "id": "runtime:domain-datatype-boolean-base", "sourceType": "domain", "command": "datatype.boolean", "label": "datatype.boolean", @@ -17681,10 +18483,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-datatype-boolean-base" }, { - "id": "domain-datatype-boolean-arg-probability", + "id": "runtime:domain-datatype-boolean-arg-probability", "sourceType": "domain", "command": "datatype.boolean", "label": "datatype.boolean arg probability", @@ -17703,10 +18506,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["probability"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-datatype-boolean-arg-probability" }, { - "id": "domain-datatype-enum-base", + "id": "runtime:domain-datatype-enum-base", "sourceType": "domain", "command": "datatype.enum", "label": "datatype.enum", @@ -17725,10 +18529,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-datatype-enum-base" }, { - "id": "domain-datatype-enum-arg-values", + "id": "runtime:domain-datatype-enum-arg-values", "sourceType": "domain", "command": "datatype.enum", "label": "datatype.enum arg values", @@ -17747,10 +18552,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["values"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-datatype-enum-arg-values" }, { - "id": "domain-date-anytime-base", + "id": "runtime:domain-date-anytime-base", "sourceType": "domain", "command": "date.anytime", "label": "date.anytime", @@ -17769,10 +18575,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-anytime-base" }, { - "id": "domain-date-anytime-arg-refDate", + "id": "runtime:domain-date-anytime-arg-refDate", "sourceType": "domain", "command": "date.anytime", "label": "date.anytime arg refDate", @@ -17791,10 +18598,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-anytime-arg-refDate" }, { - "id": "domain-date-between-base", + "id": "runtime:domain-date-between-base", "sourceType": "domain", "command": "date.between", "label": "date.between", @@ -17813,10 +18621,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-between-base" }, { - "id": "domain-date-between-arg-from", + "id": "runtime:domain-date-between-arg-from", "sourceType": "domain", "command": "date.between", "label": "date.between arg from", @@ -17835,10 +18644,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["from"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-between-arg-from" }, { - "id": "domain-date-between-arg-to", + "id": "runtime:domain-date-between-arg-to", "sourceType": "domain", "command": "date.between", "label": "date.between arg to", @@ -17857,10 +18667,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["to"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-between-arg-to" }, { - "id": "domain-date-between-pair-from-to", + "id": "runtime:domain-date-between-pair-from-to", "sourceType": "domain", "command": "date.between", "label": "date.between pair from/to", @@ -17879,10 +18690,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["from", "to"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-between-pair-from-to" }, { - "id": "domain-date-birthdate-base", + "id": "runtime:domain-date-birthdate-base", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate", @@ -17901,10 +18713,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-birthdate-base" }, { - "id": "domain-date-birthdate-example-1", + "id": "runtime:domain-date-birthdate-example-1", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate example 1", @@ -17923,10 +18736,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "max", "min", "mode"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-date-birthdate-example-1" }, { - "id": "domain-date-birthdate-arg-refDate", + "id": "runtime:domain-date-birthdate-arg-refDate", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg refDate", @@ -17945,10 +18759,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-refDate" }, { - "id": "domain-date-birthdate-arg-max", + "id": "runtime:domain-date-birthdate-arg-max", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg max", @@ -17967,10 +18782,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-max" }, { - "id": "domain-date-birthdate-arg-min", + "id": "runtime:domain-date-birthdate-arg-min", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg min", @@ -17989,10 +18805,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-min" }, { - "id": "domain-date-birthdate-arg-mode", + "id": "runtime:domain-date-birthdate-arg-mode", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate arg mode", @@ -18011,10 +18828,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["mode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-birthdate-arg-mode" }, { - "id": "domain-date-birthdate-pair-refDate-max", + "id": "runtime:domain-date-birthdate-pair-refDate-max", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair refDate/max", @@ -18033,10 +18851,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-refDate-max" }, { - "id": "domain-date-birthdate-pair-max-min", + "id": "runtime:domain-date-birthdate-pair-max-min", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair max/min", @@ -18055,10 +18874,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-max-min" }, { - "id": "domain-date-birthdate-pair-min-mode", + "id": "runtime:domain-date-birthdate-pair-min-mode", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate pair min/mode", @@ -18077,10 +18897,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "mode"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-birthdate-pair-min-mode" }, { - "id": "domain-date-future-base", + "id": "runtime:domain-date-future-base", "sourceType": "domain", "command": "date.future", "label": "date.future", @@ -18099,10 +18920,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-future-base" }, { - "id": "domain-date-future-arg-refDate", + "id": "runtime:domain-date-future-arg-refDate", "sourceType": "domain", "command": "date.future", "label": "date.future arg refDate", @@ -18121,10 +18943,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-future-arg-refDate" }, { - "id": "domain-date-future-arg-years", + "id": "runtime:domain-date-future-arg-years", "sourceType": "domain", "command": "date.future", "label": "date.future arg years", @@ -18143,10 +18966,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["years"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-future-arg-years" }, { - "id": "domain-date-future-pair-refDate-years", + "id": "runtime:domain-date-future-pair-refDate-years", "sourceType": "domain", "command": "date.future", "label": "date.future pair refDate/years", @@ -18165,10 +18989,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "years"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-future-pair-refDate-years" }, { - "id": "domain-date-month-base", + "id": "runtime:domain-date-month-base", "sourceType": "domain", "command": "date.month", "label": "date.month", @@ -18187,10 +19012,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-month-base" }, { - "id": "domain-date-month-arg-abbreviated", + "id": "runtime:domain-date-month-arg-abbreviated", "sourceType": "domain", "command": "date.month", "label": "date.month arg abbreviated", @@ -18209,10 +19035,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-month-arg-abbreviated" }, { - "id": "domain-date-month-arg-context", + "id": "runtime:domain-date-month-arg-context", "sourceType": "domain", "command": "date.month", "label": "date.month arg context", @@ -18231,10 +19058,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["context"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-month-arg-context" }, { - "id": "domain-date-month-pair-abbreviated-context", + "id": "runtime:domain-date-month-pair-abbreviated-context", "sourceType": "domain", "command": "date.month", "label": "date.month pair abbreviated/context", @@ -18253,10 +19081,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-month-pair-abbreviated-context" }, { - "id": "domain-date-past-base", + "id": "runtime:domain-date-past-base", "sourceType": "domain", "command": "date.past", "label": "date.past", @@ -18275,10 +19104,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-past-base" }, { - "id": "domain-date-past-arg-refDate", + "id": "runtime:domain-date-past-arg-refDate", "sourceType": "domain", "command": "date.past", "label": "date.past arg refDate", @@ -18297,10 +19127,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-past-arg-refDate" }, { - "id": "domain-date-past-arg-years", + "id": "runtime:domain-date-past-arg-years", "sourceType": "domain", "command": "date.past", "label": "date.past arg years", @@ -18319,10 +19150,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["years"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-past-arg-years" }, { - "id": "domain-date-past-pair-refDate-years", + "id": "runtime:domain-date-past-pair-refDate-years", "sourceType": "domain", "command": "date.past", "label": "date.past pair refDate/years", @@ -18341,10 +19173,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate", "years"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-past-pair-refDate-years" }, { - "id": "domain-date-recent-base", + "id": "runtime:domain-date-recent-base", "sourceType": "domain", "command": "date.recent", "label": "date.recent", @@ -18363,10 +19196,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-recent-base" }, { - "id": "domain-date-recent-arg-days", + "id": "runtime:domain-date-recent-arg-days", "sourceType": "domain", "command": "date.recent", "label": "date.recent arg days", @@ -18385,10 +19219,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-recent-arg-days" }, { - "id": "domain-date-recent-arg-refDate", + "id": "runtime:domain-date-recent-arg-refDate", "sourceType": "domain", "command": "date.recent", "label": "date.recent arg refDate", @@ -18407,10 +19242,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-recent-arg-refDate" }, { - "id": "domain-date-recent-pair-days-refDate", + "id": "runtime:domain-date-recent-pair-days-refDate", "sourceType": "domain", "command": "date.recent", "label": "date.recent pair days/refDate", @@ -18429,10 +19265,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-recent-pair-days-refDate" }, { - "id": "domain-date-soon-base", + "id": "runtime:domain-date-soon-base", "sourceType": "domain", "command": "date.soon", "label": "date.soon", @@ -18451,10 +19288,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-soon-base" }, { - "id": "domain-date-soon-arg-days", + "id": "runtime:domain-date-soon-arg-days", "sourceType": "domain", "command": "date.soon", "label": "date.soon arg days", @@ -18473,10 +19311,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-soon-arg-days" }, { - "id": "domain-date-soon-arg-refDate", + "id": "runtime:domain-date-soon-arg-refDate", "sourceType": "domain", "command": "date.soon", "label": "date.soon arg refDate", @@ -18495,10 +19334,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-soon-arg-refDate" }, { - "id": "domain-date-soon-pair-days-refDate", + "id": "runtime:domain-date-soon-pair-days-refDate", "sourceType": "domain", "command": "date.soon", "label": "date.soon pair days/refDate", @@ -18517,10 +19357,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["days", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-soon-pair-days-refDate" }, { - "id": "domain-date-timeZone-base", + "id": "runtime:domain-date-timeZone-base", "sourceType": "domain", "command": "date.timeZone", "label": "date.timeZone", @@ -18539,10 +19380,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-timeZone-base" }, { - "id": "domain-date-weekday-base", + "id": "runtime:domain-date-weekday-base", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday", @@ -18561,10 +19403,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-date-weekday-base" }, { - "id": "domain-date-weekday-arg-abbreviated", + "id": "runtime:domain-date-weekday-arg-abbreviated", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday arg abbreviated", @@ -18583,10 +19426,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-weekday-arg-abbreviated" }, { - "id": "domain-date-weekday-arg-context", + "id": "runtime:domain-date-weekday-arg-context", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday arg context", @@ -18605,10 +19449,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["context"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-date-weekday-arg-context" }, { - "id": "domain-date-weekday-pair-abbreviated-context", + "id": "runtime:domain-date-weekday-pair-abbreviated-context", "sourceType": "domain", "command": "date.weekday", "label": "date.weekday pair abbreviated/context", @@ -18627,10 +19472,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated", "context"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-date-weekday-pair-abbreviated-context" }, { - "id": "domain-finance-accountName-base", + "id": "runtime:domain-finance-accountName-base", "sourceType": "domain", "command": "finance.accountName", "label": "finance.accountName", @@ -18649,10 +19495,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-accountName-base" }, { - "id": "domain-finance-accountNumber-base", + "id": "runtime:domain-finance-accountNumber-base", "sourceType": "domain", "command": "finance.accountNumber", "label": "finance.accountNumber", @@ -18671,10 +19518,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-accountNumber-base" }, { - "id": "domain-finance-accountNumber-arg-length", + "id": "runtime:domain-finance-accountNumber-arg-length", "sourceType": "domain", "command": "finance.accountNumber", "label": "finance.accountNumber arg length", @@ -18693,10 +19541,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-accountNumber-arg-length" }, { - "id": "domain-finance-amount-base", + "id": "runtime:domain-finance-amount-base", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount", @@ -18715,10 +19564,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-amount-base" }, { - "id": "domain-finance-amount-arg-autoFormat", + "id": "runtime:domain-finance-amount-arg-autoFormat", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg autoFormat", @@ -18737,10 +19587,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["autoFormat"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-autoFormat" }, { - "id": "domain-finance-amount-arg-dec", + "id": "runtime:domain-finance-amount-arg-dec", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg dec", @@ -18759,10 +19610,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-dec" }, { - "id": "domain-finance-amount-arg-max", + "id": "runtime:domain-finance-amount-arg-max", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg max", @@ -18781,10 +19633,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-max" }, { - "id": "domain-finance-amount-arg-min", + "id": "runtime:domain-finance-amount-arg-min", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg min", @@ -18803,10 +19656,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-min" }, { - "id": "domain-finance-amount-arg-symbol", + "id": "runtime:domain-finance-amount-arg-symbol", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount arg symbol", @@ -18825,10 +19679,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["symbol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-amount-arg-symbol" }, { - "id": "domain-finance-amount-pair-autoFormat-dec", + "id": "runtime:domain-finance-amount-pair-autoFormat-dec", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair autoFormat/dec", @@ -18847,10 +19702,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["autoFormat", "dec"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-autoFormat-dec" }, { - "id": "domain-finance-amount-pair-dec-max", + "id": "runtime:domain-finance-amount-pair-dec-max", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair dec/max", @@ -18869,10 +19725,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["dec", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-dec-max" }, { - "id": "domain-finance-amount-pair-max-min", + "id": "runtime:domain-finance-amount-pair-max-min", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair max/min", @@ -18891,10 +19748,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-max-min" }, { - "id": "domain-finance-amount-pair-min-symbol", + "id": "runtime:domain-finance-amount-pair-min-symbol", "sourceType": "domain", "command": "finance.amount", "label": "finance.amount pair min/symbol", @@ -18913,10 +19771,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "symbol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-amount-pair-min-symbol" }, { - "id": "domain-finance-bic-base", + "id": "runtime:domain-finance-bic-base", "sourceType": "domain", "command": "finance.bic", "label": "finance.bic", @@ -18935,10 +19794,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-bic-base" }, { - "id": "domain-finance-bic-arg-includeBranchCode", + "id": "runtime:domain-finance-bic-arg-includeBranchCode", "sourceType": "domain", "command": "finance.bic", "label": "finance.bic arg includeBranchCode", @@ -18957,10 +19817,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeBranchCode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-bic-arg-includeBranchCode" }, { - "id": "domain-finance-bitcoinAddress-base", + "id": "runtime:domain-finance-bitcoinAddress-base", "sourceType": "domain", "command": "finance.bitcoinAddress", "label": "finance.bitcoinAddress", @@ -18979,10 +19840,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-bitcoinAddress-base" }, { - "id": "domain-finance-creditCardCVV-base", + "id": "runtime:domain-finance-creditCardCVV-base", "sourceType": "domain", "command": "finance.creditCardCVV", "label": "finance.creditCardCVV", @@ -19001,10 +19863,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardCVV-base" }, { - "id": "domain-finance-creditCardIssuer-base", + "id": "runtime:domain-finance-creditCardIssuer-base", "sourceType": "domain", "command": "finance.creditCardIssuer", "label": "finance.creditCardIssuer", @@ -19023,10 +19886,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardIssuer-base" }, { - "id": "domain-finance-creditCardNumber-base", + "id": "runtime:domain-finance-creditCardNumber-base", "sourceType": "domain", "command": "finance.creditCardNumber", "label": "finance.creditCardNumber", @@ -19045,10 +19909,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-creditCardNumber-base" }, { - "id": "domain-finance-creditCardNumber-arg-issuer", + "id": "runtime:domain-finance-creditCardNumber-arg-issuer", "sourceType": "domain", "command": "finance.creditCardNumber", "label": "finance.creditCardNumber arg issuer", @@ -19067,10 +19932,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["issuer"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-creditCardNumber-arg-issuer" }, { - "id": "domain-finance-currencyCode-base", + "id": "runtime:domain-finance-currencyCode-base", "sourceType": "domain", "command": "finance.currencyCode", "label": "finance.currencyCode", @@ -19089,10 +19955,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyCode-base" }, { - "id": "domain-finance-currencyName-base", + "id": "runtime:domain-finance-currencyName-base", "sourceType": "domain", "command": "finance.currencyName", "label": "finance.currencyName", @@ -19111,10 +19978,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyName-base" }, { - "id": "domain-finance-currencyNumericCode-base", + "id": "runtime:domain-finance-currencyNumericCode-base", "sourceType": "domain", "command": "finance.currencyNumericCode", "label": "finance.currencyNumericCode", @@ -19133,10 +20001,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencyNumericCode-base" }, { - "id": "domain-finance-currencySymbol-base", + "id": "runtime:domain-finance-currencySymbol-base", "sourceType": "domain", "command": "finance.currencySymbol", "label": "finance.currencySymbol", @@ -19155,10 +20024,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-currencySymbol-base" }, { - "id": "domain-finance-ethereumAddress-base", + "id": "runtime:domain-finance-ethereumAddress-base", "sourceType": "domain", "command": "finance.ethereumAddress", "label": "finance.ethereumAddress", @@ -19177,10 +20047,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-ethereumAddress-base" }, { - "id": "domain-finance-iban-base", + "id": "runtime:domain-finance-iban-base", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban", @@ -19199,10 +20070,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-iban-base" }, { - "id": "domain-finance-iban-arg-countryCode", + "id": "runtime:domain-finance-iban-arg-countryCode", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban arg countryCode", @@ -19221,10 +20093,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["countryCode"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-iban-arg-countryCode" }, { - "id": "domain-finance-iban-arg-formatted", + "id": "runtime:domain-finance-iban-arg-formatted", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban arg formatted", @@ -19243,10 +20116,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["formatted"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-iban-arg-formatted" }, { - "id": "domain-finance-iban-pair-countryCode-formatted", + "id": "runtime:domain-finance-iban-pair-countryCode-formatted", "sourceType": "domain", "command": "finance.iban", "label": "finance.iban pair countryCode/formatted", @@ -19265,10 +20139,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["countryCode", "formatted"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-finance-iban-pair-countryCode-formatted" }, { - "id": "domain-finance-litecoinAddress-base", + "id": "runtime:domain-finance-litecoinAddress-base", "sourceType": "domain", "command": "finance.litecoinAddress", "label": "finance.litecoinAddress", @@ -19287,10 +20162,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-litecoinAddress-base" }, { - "id": "domain-finance-pin-base", + "id": "runtime:domain-finance-pin-base", "sourceType": "domain", "command": "finance.pin", "label": "finance.pin", @@ -19309,10 +20185,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-pin-base" }, { - "id": "domain-finance-pin-arg-length", + "id": "runtime:domain-finance-pin-arg-length", "sourceType": "domain", "command": "finance.pin", "label": "finance.pin arg length", @@ -19331,10 +20208,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-finance-pin-arg-length" }, { - "id": "domain-finance-routingNumber-base", + "id": "runtime:domain-finance-routingNumber-base", "sourceType": "domain", "command": "finance.routingNumber", "label": "finance.routingNumber", @@ -19353,10 +20231,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-routingNumber-base" }, { - "id": "domain-finance-transactionDescription-base", + "id": "runtime:domain-finance-transactionDescription-base", "sourceType": "domain", "command": "finance.transactionDescription", "label": "finance.transactionDescription", @@ -19375,10 +20254,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-transactionDescription-base" }, { - "id": "domain-finance-transactionType-base", + "id": "runtime:domain-finance-transactionType-base", "sourceType": "domain", "command": "finance.transactionType", "label": "finance.transactionType", @@ -19397,10 +20277,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-finance-transactionType-base" }, { - "id": "domain-food-adjective-base", + "id": "runtime:domain-food-adjective-base", "sourceType": "domain", "command": "food.adjective", "label": "food.adjective", @@ -19419,10 +20300,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-adjective-base" }, { - "id": "domain-food-description-base", + "id": "runtime:domain-food-description-base", "sourceType": "domain", "command": "food.description", "label": "food.description", @@ -19441,10 +20323,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-description-base" }, { - "id": "domain-food-dish-base", + "id": "runtime:domain-food-dish-base", "sourceType": "domain", "command": "food.dish", "label": "food.dish", @@ -19463,10 +20346,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-dish-base" }, { - "id": "domain-food-ethnicCategory-base", + "id": "runtime:domain-food-ethnicCategory-base", "sourceType": "domain", "command": "food.ethnicCategory", "label": "food.ethnicCategory", @@ -19485,10 +20369,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-ethnicCategory-base" }, { - "id": "domain-food-fruit-base", + "id": "runtime:domain-food-fruit-base", "sourceType": "domain", "command": "food.fruit", "label": "food.fruit", @@ -19507,10 +20392,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-fruit-base" }, { - "id": "domain-food-ingredient-base", + "id": "runtime:domain-food-ingredient-base", "sourceType": "domain", "command": "food.ingredient", "label": "food.ingredient", @@ -19529,10 +20415,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-ingredient-base" }, { - "id": "domain-food-meat-base", + "id": "runtime:domain-food-meat-base", "sourceType": "domain", "command": "food.meat", "label": "food.meat", @@ -19551,10 +20438,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-meat-base" }, { - "id": "domain-food-spice-base", + "id": "runtime:domain-food-spice-base", "sourceType": "domain", "command": "food.spice", "label": "food.spice", @@ -19573,10 +20461,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-spice-base" }, { - "id": "domain-food-vegetable-base", + "id": "runtime:domain-food-vegetable-base", "sourceType": "domain", "command": "food.vegetable", "label": "food.vegetable", @@ -19595,10 +20484,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-food-vegetable-base" }, { - "id": "domain-git-branch-base", + "id": "runtime:domain-git-branch-base", "sourceType": "domain", "command": "git.branch", "label": "git.branch", @@ -19617,10 +20507,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-branch-base" }, { - "id": "domain-git-commitDate-base", + "id": "runtime:domain-git-commitDate-base", "sourceType": "domain", "command": "git.commitDate", "label": "git.commitDate", @@ -19639,10 +20530,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitDate-base" }, { - "id": "domain-git-commitEntry-base", + "id": "runtime:domain-git-commitEntry-base", "sourceType": "domain", "command": "git.commitEntry", "label": "git.commitEntry", @@ -19661,10 +20553,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitEntry-base" }, { - "id": "domain-git-commitMessage-base", + "id": "runtime:domain-git-commitMessage-base", "sourceType": "domain", "command": "git.commitMessage", "label": "git.commitMessage", @@ -19683,10 +20576,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitMessage-base" }, { - "id": "domain-git-commitSha-base", + "id": "runtime:domain-git-commitSha-base", "sourceType": "domain", "command": "git.commitSha", "label": "git.commitSha", @@ -19705,10 +20599,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-git-commitSha-base" }, { - "id": "domain-hacker-abbreviation-base", + "id": "runtime:domain-hacker-abbreviation-base", "sourceType": "domain", "command": "hacker.abbreviation", "label": "hacker.abbreviation", @@ -19727,10 +20622,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-abbreviation-base" }, { - "id": "domain-hacker-adjective-base", + "id": "runtime:domain-hacker-adjective-base", "sourceType": "domain", "command": "hacker.adjective", "label": "hacker.adjective", @@ -19749,10 +20645,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-adjective-base" }, { - "id": "domain-hacker-ingverb-base", + "id": "runtime:domain-hacker-ingverb-base", "sourceType": "domain", "command": "hacker.ingverb", "label": "hacker.ingverb", @@ -19771,10 +20668,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-ingverb-base" }, { - "id": "domain-hacker-noun-base", + "id": "runtime:domain-hacker-noun-base", "sourceType": "domain", "command": "hacker.noun", "label": "hacker.noun", @@ -19793,10 +20691,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-noun-base" }, { - "id": "domain-hacker-phrase-base", + "id": "runtime:domain-hacker-phrase-base", "sourceType": "domain", "command": "hacker.phrase", "label": "hacker.phrase", @@ -19815,10 +20714,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-phrase-base" }, { - "id": "domain-hacker-verb-base", + "id": "runtime:domain-hacker-verb-base", "sourceType": "domain", "command": "hacker.verb", "label": "hacker.verb", @@ -19837,10 +20737,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-hacker-verb-base" }, { - "id": "domain-image-avatar-base", + "id": "runtime:domain-image-avatar-base", "sourceType": "domain", "command": "image.avatar", "label": "image.avatar", @@ -19859,10 +20760,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-avatar-base" }, { - "id": "domain-image-avatarGitHub-base", + "id": "runtime:domain-image-avatarGitHub-base", "sourceType": "domain", "command": "image.avatarGitHub", "label": "image.avatarGitHub", @@ -19881,10 +20783,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-avatarGitHub-base" }, { - "id": "domain-image-dataUri-base", + "id": "runtime:domain-image-dataUri-base", "sourceType": "domain", "command": "image.dataUri", "label": "image.dataUri", @@ -19903,10 +20806,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-dataUri-base" }, { - "id": "domain-image-personPortrait-base", + "id": "runtime:domain-image-personPortrait-base", "sourceType": "domain", "command": "image.personPortrait", "label": "image.personPortrait", @@ -19925,10 +20829,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-personPortrait-base" }, { - "id": "domain-image-url-base", + "id": "runtime:domain-image-url-base", "sourceType": "domain", "command": "image.url", "label": "image.url", @@ -19947,10 +20852,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-url-base" }, { - "id": "domain-image-url-arg-height", + "id": "runtime:domain-image-url-arg-height", "sourceType": "domain", "command": "image.url", "label": "image.url arg height", @@ -19969,10 +20875,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["height"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-image-url-arg-height" }, { - "id": "domain-image-url-arg-width", + "id": "runtime:domain-image-url-arg-width", "sourceType": "domain", "command": "image.url", "label": "image.url arg width", @@ -19991,10 +20898,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["width"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-image-url-arg-width" }, { - "id": "domain-image-url-pair-height-width", + "id": "runtime:domain-image-url-pair-height-width", "sourceType": "domain", "command": "image.url", "label": "image.url pair height/width", @@ -20013,10 +20921,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["height", "width"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-image-url-pair-height-width" }, { - "id": "domain-image-urlLoremFlickr-base", + "id": "runtime:domain-image-urlLoremFlickr-base", "sourceType": "domain", "command": "image.urlLoremFlickr", "label": "image.urlLoremFlickr", @@ -20035,10 +20944,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-urlLoremFlickr-base" }, { - "id": "domain-image-urlPicsumPhotos-base", + "id": "runtime:domain-image-urlPicsumPhotos-base", "sourceType": "domain", "command": "image.urlPicsumPhotos", "label": "image.urlPicsumPhotos", @@ -20057,10 +20967,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-image-urlPicsumPhotos-base" }, { - "id": "domain-internet-displayName-base", + "id": "runtime:domain-internet-displayName-base", "sourceType": "domain", "command": "internet.displayName", "label": "internet.displayName", @@ -20079,10 +20990,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-displayName-base" }, { - "id": "domain-internet-domainName-base", + "id": "runtime:domain-internet-domainName-base", "sourceType": "domain", "command": "internet.domainName", "label": "internet.domainName", @@ -20101,10 +21013,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainName-base" }, { - "id": "domain-internet-domainSuffix-base", + "id": "runtime:domain-internet-domainSuffix-base", "sourceType": "domain", "command": "internet.domainSuffix", "label": "internet.domainSuffix", @@ -20123,10 +21036,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainSuffix-base" }, { - "id": "domain-internet-domainWord-base", + "id": "runtime:domain-internet-domainWord-base", "sourceType": "domain", "command": "internet.domainWord", "label": "internet.domainWord", @@ -20145,10 +21059,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-domainWord-base" }, { - "id": "domain-internet-email-base", + "id": "runtime:domain-internet-email-base", "sourceType": "domain", "command": "internet.email", "label": "internet.email", @@ -20167,10 +21082,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-email-base" }, { - "id": "domain-internet-email-arg-allowSpecialCharacters", + "id": "runtime:domain-internet-email-arg-allowSpecialCharacters", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg allowSpecialCharacters", @@ -20189,10 +21105,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowSpecialCharacters"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-allowSpecialCharacters" }, { - "id": "domain-internet-email-arg-firstName", + "id": "runtime:domain-internet-email-arg-firstName", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg firstName", @@ -20211,10 +21128,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-firstName" }, { - "id": "domain-internet-email-arg-lastName", + "id": "runtime:domain-internet-email-arg-lastName", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg lastName", @@ -20233,10 +21151,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-lastName" }, { - "id": "domain-internet-email-arg-provider", + "id": "runtime:domain-internet-email-arg-provider", "sourceType": "domain", "command": "internet.email", "label": "internet.email arg provider", @@ -20255,10 +21174,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["provider"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-email-arg-provider" }, { - "id": "domain-internet-email-pair-allowSpecialCharacters-firstName", + "id": "runtime:domain-internet-email-pair-allowSpecialCharacters-firstName", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair allowSpecialCharacters/firstName", @@ -20277,10 +21197,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowSpecialCharacters", "firstName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-allowSpecialCharacters-firstName" }, { - "id": "domain-internet-email-pair-firstName-lastName", + "id": "runtime:domain-internet-email-pair-firstName-lastName", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair firstName/lastName", @@ -20299,10 +21220,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-firstName-lastName" }, { - "id": "domain-internet-email-pair-lastName-provider", + "id": "runtime:domain-internet-email-pair-lastName-provider", "sourceType": "domain", "command": "internet.email", "label": "internet.email pair lastName/provider", @@ -20321,10 +21243,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName", "provider"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-email-pair-lastName-provider" }, { - "id": "domain-internet-emoji-base", + "id": "runtime:domain-internet-emoji-base", "sourceType": "domain", "command": "internet.emoji", "label": "internet.emoji", @@ -20343,10 +21266,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-emoji-base" }, { - "id": "domain-internet-emoji-arg-types", + "id": "runtime:domain-internet-emoji-arg-types", "sourceType": "domain", "command": "internet.emoji", "label": "internet.emoji arg types", @@ -20365,10 +21289,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["types"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-emoji-arg-types" }, { - "id": "domain-internet-exampleEmail-base", + "id": "runtime:domain-internet-exampleEmail-base", "sourceType": "domain", "command": "internet.exampleEmail", "label": "internet.exampleEmail", @@ -20387,10 +21312,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-exampleEmail-base" }, { - "id": "domain-internet-httpMethod-base", + "id": "runtime:domain-internet-httpMethod-base", "sourceType": "domain", "command": "internet.httpMethod", "label": "internet.httpMethod", @@ -20409,10 +21335,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-httpMethod-base" }, { - "id": "domain-internet-httpStatusCode-base", + "id": "runtime:domain-internet-httpStatusCode-base", "sourceType": "domain", "command": "internet.httpStatusCode", "label": "internet.httpStatusCode", @@ -20431,10 +21358,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-httpStatusCode-base" }, { - "id": "domain-internet-ip-base", + "id": "runtime:domain-internet-ip-base", "sourceType": "domain", "command": "internet.ip", "label": "internet.ip", @@ -20453,10 +21381,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ip-base" }, { - "id": "domain-internet-ipv4-base", + "id": "runtime:domain-internet-ipv4-base", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4", @@ -20475,10 +21404,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ipv4-base" }, { - "id": "domain-internet-ipv4-arg-cidrBlock", + "id": "runtime:domain-internet-ipv4-arg-cidrBlock", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 arg cidrBlock", @@ -20497,10 +21427,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["cidrBlock"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-ipv4-arg-cidrBlock" }, { - "id": "domain-internet-ipv4-arg-network", + "id": "runtime:domain-internet-ipv4-arg-network", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 arg network", @@ -20519,10 +21450,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["network"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-ipv4-arg-network" }, { - "id": "domain-internet-ipv4-pair-cidrBlock-network", + "id": "runtime:domain-internet-ipv4-pair-cidrBlock-network", "sourceType": "domain", "command": "internet.ipv4", "label": "internet.ipv4 pair cidrBlock/network", @@ -20541,10 +21473,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["cidrBlock", "network"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-ipv4-pair-cidrBlock-network" }, { - "id": "domain-internet-ipv6-base", + "id": "runtime:domain-internet-ipv6-base", "sourceType": "domain", "command": "internet.ipv6", "label": "internet.ipv6", @@ -20563,10 +21496,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-ipv6-base" }, { - "id": "domain-internet-jwt-base", + "id": "runtime:domain-internet-jwt-base", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt", @@ -20585,10 +21519,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-jwt-base" }, { - "id": "domain-internet-jwt-arg-header", + "id": "runtime:domain-internet-jwt-arg-header", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg header", @@ -20607,10 +21542,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["header"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-header" }, { - "id": "domain-internet-jwt-arg-payload", + "id": "runtime:domain-internet-jwt-arg-payload", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg payload", @@ -20629,10 +21565,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["payload"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-payload" }, { - "id": "domain-internet-jwt-arg-refDate", + "id": "runtime:domain-internet-jwt-arg-refDate", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt arg refDate", @@ -20651,10 +21588,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-jwt-arg-refDate" }, { - "id": "domain-internet-jwt-pair-header-payload", + "id": "runtime:domain-internet-jwt-pair-header-payload", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt pair header/payload", @@ -20673,10 +21611,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["header", "payload"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-jwt-pair-header-payload" }, { - "id": "domain-internet-jwt-pair-payload-refDate", + "id": "runtime:domain-internet-jwt-pair-payload-refDate", "sourceType": "domain", "command": "internet.jwt", "label": "internet.jwt pair payload/refDate", @@ -20695,10 +21634,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["payload", "refDate"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-jwt-pair-payload-refDate" }, { - "id": "domain-internet-jwtAlgorithm-base", + "id": "runtime:domain-internet-jwtAlgorithm-base", "sourceType": "domain", "command": "internet.jwtAlgorithm", "label": "internet.jwtAlgorithm", @@ -20717,10 +21657,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-jwtAlgorithm-base" }, { - "id": "domain-internet-mac-base", + "id": "runtime:domain-internet-mac-base", "sourceType": "domain", "command": "internet.mac", "label": "internet.mac", @@ -20739,10 +21680,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-mac-base" }, { - "id": "domain-internet-mac-arg-separator", + "id": "runtime:domain-internet-mac-arg-separator", "sourceType": "domain", "command": "internet.mac", "label": "internet.mac arg separator", @@ -20761,10 +21703,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-mac-arg-separator" }, { - "id": "domain-internet-password-base", + "id": "runtime:domain-internet-password-base", "sourceType": "domain", "command": "internet.password", "label": "internet.password", @@ -20783,10 +21726,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-password-base" }, { - "id": "domain-internet-password-example-1", + "id": "runtime:domain-internet-password-example-1", "sourceType": "domain", "command": "internet.password", "label": "internet.password example 1", @@ -20805,10 +21749,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "memorable", "pattern", "prefix"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-internet-password-example-1" }, { - "id": "domain-internet-password-arg-length", + "id": "runtime:domain-internet-password-arg-length", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg length", @@ -20827,10 +21772,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-length" }, { - "id": "domain-internet-password-arg-memorable", + "id": "runtime:domain-internet-password-arg-memorable", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg memorable", @@ -20849,10 +21795,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["memorable"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-memorable" }, { - "id": "domain-internet-password-arg-pattern", + "id": "runtime:domain-internet-password-arg-pattern", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg pattern", @@ -20871,10 +21818,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-pattern" }, { - "id": "domain-internet-password-arg-prefix", + "id": "runtime:domain-internet-password-arg-prefix", "sourceType": "domain", "command": "internet.password", "label": "internet.password arg prefix", @@ -20893,10 +21841,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-password-arg-prefix" }, { - "id": "domain-internet-password-pair-length-memorable", + "id": "runtime:domain-internet-password-pair-length-memorable", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair length/memorable", @@ -20915,10 +21864,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "memorable"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-length-memorable" }, { - "id": "domain-internet-password-pair-memorable-pattern", + "id": "runtime:domain-internet-password-pair-memorable-pattern", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair memorable/pattern", @@ -20937,10 +21887,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["memorable", "pattern"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-memorable-pattern" }, { - "id": "domain-internet-password-pair-pattern-prefix", + "id": "runtime:domain-internet-password-pair-pattern-prefix", "sourceType": "domain", "command": "internet.password", "label": "internet.password pair pattern/prefix", @@ -20959,10 +21910,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["pattern", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-password-pair-pattern-prefix" }, { - "id": "domain-internet-port-base", + "id": "runtime:domain-internet-port-base", "sourceType": "domain", "command": "internet.port", "label": "internet.port", @@ -20981,10 +21933,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-port-base" }, { - "id": "domain-internet-protocol-base", + "id": "runtime:domain-internet-protocol-base", "sourceType": "domain", "command": "internet.protocol", "label": "internet.protocol", @@ -21003,10 +21956,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-protocol-base" }, { - "id": "domain-internet-url-base", + "id": "runtime:domain-internet-url-base", "sourceType": "domain", "command": "internet.url", "label": "internet.url", @@ -21025,10 +21979,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-url-base" }, { - "id": "domain-internet-url-arg-appendSlash", + "id": "runtime:domain-internet-url-arg-appendSlash", "sourceType": "domain", "command": "internet.url", "label": "internet.url arg appendSlash", @@ -21047,10 +22002,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["appendSlash"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-url-arg-appendSlash" }, { - "id": "domain-internet-url-arg-protocol", + "id": "runtime:domain-internet-url-arg-protocol", "sourceType": "domain", "command": "internet.url", "label": "internet.url arg protocol", @@ -21069,10 +22025,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["protocol"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-url-arg-protocol" }, { - "id": "domain-internet-url-pair-appendSlash-protocol", + "id": "runtime:domain-internet-url-pair-appendSlash-protocol", "sourceType": "domain", "command": "internet.url", "label": "internet.url pair appendSlash/protocol", @@ -21091,10 +22048,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["appendSlash", "protocol"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-url-pair-appendSlash-protocol" }, { - "id": "domain-internet-userAgent-base", + "id": "runtime:domain-internet-userAgent-base", "sourceType": "domain", "command": "internet.userAgent", "label": "internet.userAgent", @@ -21113,10 +22071,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-userAgent-base" }, { - "id": "domain-internet-username-base", + "id": "runtime:domain-internet-username-base", "sourceType": "domain", "command": "internet.username", "label": "internet.username", @@ -21135,10 +22094,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-internet-username-base" }, { - "id": "domain-internet-username-arg-firstName", + "id": "runtime:domain-internet-username-arg-firstName", "sourceType": "domain", "command": "internet.username", "label": "internet.username arg firstName", @@ -21157,10 +22117,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-username-arg-firstName" }, { - "id": "domain-internet-username-arg-lastName", + "id": "runtime:domain-internet-username-arg-lastName", "sourceType": "domain", "command": "internet.username", "label": "internet.username arg lastName", @@ -21179,10 +22140,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lastName"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-internet-username-arg-lastName" }, { - "id": "domain-internet-username-pair-firstName-lastName", + "id": "runtime:domain-internet-username-pair-firstName-lastName", "sourceType": "domain", "command": "internet.username", "label": "internet.username pair firstName/lastName", @@ -21201,10 +22163,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["firstName", "lastName"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-internet-username-pair-firstName-lastName" }, { - "id": "domain-literal-value-base", + "id": "runtime:domain-literal-value-base", "sourceType": "domain", "command": "literal.value", "label": "literal.value", @@ -21223,10 +22186,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-literal-value-base" }, { - "id": "domain-literal-value-example-1", + "id": "runtime:domain-literal-value-example-1", "sourceType": "domain", "command": "literal.value", "label": "literal.value example 1", @@ -21245,10 +22209,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-literal-value-example-1" }, { - "id": "domain-literal-value-example-2", + "id": "runtime:domain-literal-value-example-2", "sourceType": "domain", "command": "literal.value", "label": "literal.value example 2", @@ -21267,10 +22232,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-literal-value-example-2" }, { - "id": "domain-literal-value-arg-value", + "id": "runtime:domain-literal-value-arg-value", "sourceType": "domain", "command": "literal.value", "label": "literal.value arg value", @@ -21289,10 +22255,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-literal-value-arg-value" }, { - "id": "domain-location-buildingNumber-base", + "id": "runtime:domain-location-buildingNumber-base", "sourceType": "domain", "command": "location.buildingNumber", "label": "location.buildingNumber", @@ -21311,10 +22278,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-buildingNumber-base" }, { - "id": "domain-location-cardinalDirection-base", + "id": "runtime:domain-location-cardinalDirection-base", "sourceType": "domain", "command": "location.cardinalDirection", "label": "location.cardinalDirection", @@ -21333,10 +22301,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-cardinalDirection-base" }, { - "id": "domain-location-city-base", + "id": "runtime:domain-location-city-base", "sourceType": "domain", "command": "location.city", "label": "location.city", @@ -21355,10 +22324,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-city-base" }, { - "id": "domain-location-continent-base", + "id": "runtime:domain-location-continent-base", "sourceType": "domain", "command": "location.continent", "label": "location.continent", @@ -21377,10 +22347,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-continent-base" }, { - "id": "domain-location-country-base", + "id": "runtime:domain-location-country-base", "sourceType": "domain", "command": "location.country", "label": "location.country", @@ -21399,10 +22370,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-country-base" }, { - "id": "domain-location-countryCode-base", + "id": "runtime:domain-location-countryCode-base", "sourceType": "domain", "command": "location.countryCode", "label": "location.countryCode", @@ -21421,10 +22393,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-countryCode-base" }, { - "id": "domain-location-county-base", + "id": "runtime:domain-location-county-base", "sourceType": "domain", "command": "location.county", "label": "location.county", @@ -21443,10 +22416,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-county-base" }, { - "id": "domain-location-direction-base", + "id": "runtime:domain-location-direction-base", "sourceType": "domain", "command": "location.direction", "label": "location.direction", @@ -21465,10 +22439,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-direction-base" }, { - "id": "domain-location-direction-arg-abbreviated", + "id": "runtime:domain-location-direction-arg-abbreviated", "sourceType": "domain", "command": "location.direction", "label": "location.direction arg abbreviated", @@ -21487,10 +22462,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-direction-arg-abbreviated" }, { - "id": "domain-location-latitude-base", + "id": "runtime:domain-location-latitude-base", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude", @@ -21509,10 +22485,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-latitude-base" }, { - "id": "domain-location-latitude-arg-min", + "id": "runtime:domain-location-latitude-arg-min", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg min", @@ -21531,10 +22508,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-min" }, { - "id": "domain-location-latitude-arg-max", + "id": "runtime:domain-location-latitude-arg-max", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg max", @@ -21553,10 +22531,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-max" }, { - "id": "domain-location-latitude-arg-precision", + "id": "runtime:domain-location-latitude-arg-precision", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude arg precision", @@ -21575,10 +22554,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["precision"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-latitude-arg-precision" }, { - "id": "domain-location-latitude-pair-min-max", + "id": "runtime:domain-location-latitude-pair-min-max", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude pair min/max", @@ -21597,10 +22577,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-latitude-pair-min-max" }, { - "id": "domain-location-latitude-pair-max-precision", + "id": "runtime:domain-location-latitude-pair-max-precision", "sourceType": "domain", "command": "location.latitude", "label": "location.latitude pair max/precision", @@ -21619,10 +22600,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "precision"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-latitude-pair-max-precision" }, { - "id": "domain-location-longitude-base", + "id": "runtime:domain-location-longitude-base", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude", @@ -21641,10 +22623,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-longitude-base" }, { - "id": "domain-location-longitude-arg-min", + "id": "runtime:domain-location-longitude-arg-min", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg min", @@ -21663,10 +22646,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-min" }, { - "id": "domain-location-longitude-arg-max", + "id": "runtime:domain-location-longitude-arg-max", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg max", @@ -21685,10 +22669,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-max" }, { - "id": "domain-location-longitude-arg-precision", + "id": "runtime:domain-location-longitude-arg-precision", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude arg precision", @@ -21707,10 +22692,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["precision"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-longitude-arg-precision" }, { - "id": "domain-location-longitude-pair-min-max", + "id": "runtime:domain-location-longitude-pair-min-max", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude pair min/max", @@ -21729,10 +22715,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-longitude-pair-min-max" }, { - "id": "domain-location-longitude-pair-max-precision", + "id": "runtime:domain-location-longitude-pair-max-precision", "sourceType": "domain", "command": "location.longitude", "label": "location.longitude pair max/precision", @@ -21751,10 +22738,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "precision"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-location-longitude-pair-max-precision" }, { - "id": "domain-location-ordinalDirection-base", + "id": "runtime:domain-location-ordinalDirection-base", "sourceType": "domain", "command": "location.ordinalDirection", "label": "location.ordinalDirection", @@ -21773,10 +22761,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-ordinalDirection-base" }, { - "id": "domain-location-secondaryAddress-base", + "id": "runtime:domain-location-secondaryAddress-base", "sourceType": "domain", "command": "location.secondaryAddress", "label": "location.secondaryAddress", @@ -21795,10 +22784,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-secondaryAddress-base" }, { - "id": "domain-location-state-base", + "id": "runtime:domain-location-state-base", "sourceType": "domain", "command": "location.state", "label": "location.state", @@ -21817,10 +22807,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-state-base" }, { - "id": "domain-location-state-arg-abbreviated", + "id": "runtime:domain-location-state-arg-abbreviated", "sourceType": "domain", "command": "location.state", "label": "location.state arg abbreviated", @@ -21839,10 +22830,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["abbreviated"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-state-arg-abbreviated" }, { - "id": "domain-location-street-base", + "id": "runtime:domain-location-street-base", "sourceType": "domain", "command": "location.street", "label": "location.street", @@ -21861,10 +22853,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-street-base" }, { - "id": "domain-location-streetAddress-base", + "id": "runtime:domain-location-streetAddress-base", "sourceType": "domain", "command": "location.streetAddress", "label": "location.streetAddress", @@ -21883,10 +22876,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-streetAddress-base" }, { - "id": "domain-location-streetAddress-arg-useFullAddress", + "id": "runtime:domain-location-streetAddress-arg-useFullAddress", "sourceType": "domain", "command": "location.streetAddress", "label": "location.streetAddress arg useFullAddress", @@ -21905,10 +22899,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["useFullAddress"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-location-streetAddress-arg-useFullAddress" }, { - "id": "domain-location-timeZone-base", + "id": "runtime:domain-location-timeZone-base", "sourceType": "domain", "command": "location.timeZone", "label": "location.timeZone", @@ -21927,10 +22922,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-timeZone-base" }, { - "id": "domain-location-zipCode-base", + "id": "runtime:domain-location-zipCode-base", "sourceType": "domain", "command": "location.zipCode", "label": "location.zipCode", @@ -21949,10 +22945,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-location-zipCode-base" }, { - "id": "domain-lorem-lines-base", + "id": "runtime:domain-lorem-lines-base", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines", @@ -21971,10 +22968,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-lines-base" }, { - "id": "domain-lorem-lines-arg-min", + "id": "runtime:domain-lorem-lines-arg-min", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg min", @@ -21993,10 +22991,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-min" }, { - "id": "domain-lorem-lines-arg-max", + "id": "runtime:domain-lorem-lines-arg-max", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg max", @@ -22015,10 +23014,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-max" }, { - "id": "domain-lorem-lines-arg-lineCount", + "id": "runtime:domain-lorem-lines-arg-lineCount", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCount", @@ -22037,10 +23037,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCount" }, { - "id": "domain-lorem-lines-arg-lineCountMax", + "id": "runtime:domain-lorem-lines-arg-lineCountMax", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCountMax", @@ -22059,10 +23060,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCountMax" }, { - "id": "domain-lorem-lines-arg-lineCountMin", + "id": "runtime:domain-lorem-lines-arg-lineCountMin", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines arg lineCountMin", @@ -22081,10 +23083,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-lines-arg-lineCountMin" }, { - "id": "domain-lorem-lines-pair-min-max", + "id": "runtime:domain-lorem-lines-pair-min-max", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair min/max", @@ -22103,10 +23106,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-min-max" }, { - "id": "domain-lorem-lines-pair-max-lineCount", + "id": "runtime:domain-lorem-lines-pair-max-lineCount", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair max/lineCount", @@ -22125,10 +23129,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "lineCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-max-lineCount" }, { - "id": "domain-lorem-lines-pair-lineCount-lineCountMax", + "id": "runtime:domain-lorem-lines-pair-lineCount-lineCountMax", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair lineCount/lineCountMax", @@ -22147,10 +23152,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCount", "lineCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-lineCount-lineCountMax" }, { - "id": "domain-lorem-lines-pair-lineCountMax-lineCountMin", + "id": "runtime:domain-lorem-lines-pair-lineCountMax-lineCountMin", "sourceType": "domain", "command": "lorem.lines", "label": "lorem.lines pair lineCountMax/lineCountMin", @@ -22169,10 +23175,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["lineCountMax", "lineCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-lines-pair-lineCountMax-lineCountMin" }, { - "id": "domain-lorem-paragraph-base", + "id": "runtime:domain-lorem-paragraph-base", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph", @@ -22191,10 +23198,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-paragraph-base" }, { - "id": "domain-lorem-paragraph-arg-min", + "id": "runtime:domain-lorem-paragraph-arg-min", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg min", @@ -22213,10 +23221,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-min" }, { - "id": "domain-lorem-paragraph-arg-max", + "id": "runtime:domain-lorem-paragraph-arg-max", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg max", @@ -22235,10 +23244,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-max" }, { - "id": "domain-lorem-paragraph-arg-sentenceCount", + "id": "runtime:domain-lorem-paragraph-arg-sentenceCount", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCount", @@ -22257,10 +23267,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCount" }, { - "id": "domain-lorem-paragraph-arg-sentenceCountMax", + "id": "runtime:domain-lorem-paragraph-arg-sentenceCountMax", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCountMax", @@ -22279,10 +23290,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMax" }, { - "id": "domain-lorem-paragraph-arg-sentenceCountMin", + "id": "runtime:domain-lorem-paragraph-arg-sentenceCountMin", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph arg sentenceCountMin", @@ -22301,10 +23313,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraph-arg-sentenceCountMin" }, { - "id": "domain-lorem-paragraph-pair-min-max", + "id": "runtime:domain-lorem-paragraph-pair-min-max", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair min/max", @@ -22323,10 +23336,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-min-max" }, { - "id": "domain-lorem-paragraph-pair-max-sentenceCount", + "id": "runtime:domain-lorem-paragraph-pair-max-sentenceCount", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair max/sentenceCount", @@ -22345,10 +23359,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-max-sentenceCount" }, { - "id": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", + "id": "runtime:domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair sentenceCount/sentenceCountMax", @@ -22367,10 +23382,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount", "sentenceCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-sentenceCount-sentenceCountMax" }, { - "id": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", + "id": "runtime:domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin", "sourceType": "domain", "command": "lorem.paragraph", "label": "lorem.paragraph pair sentenceCountMax/sentenceCountMin", @@ -22389,10 +23405,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraph-pair-sentenceCountMax-sentenceCountMin" }, { - "id": "domain-lorem-paragraphs-base", + "id": "runtime:domain-lorem-paragraphs-base", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs", @@ -22411,10 +23428,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-paragraphs-base" }, { - "id": "domain-lorem-paragraphs-arg-min", + "id": "runtime:domain-lorem-paragraphs-arg-min", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg min", @@ -22433,10 +23451,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-min" }, { - "id": "domain-lorem-paragraphs-arg-max", + "id": "runtime:domain-lorem-paragraphs-arg-max", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg max", @@ -22455,10 +23474,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-max" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCount", + "id": "runtime:domain-lorem-paragraphs-arg-paragraphCount", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCount", @@ -22477,10 +23497,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCount" }, { - "id": "domain-lorem-paragraphs-arg-separator", + "id": "runtime:domain-lorem-paragraphs-arg-separator", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg separator", @@ -22499,10 +23520,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-separator" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCountMax", + "id": "runtime:domain-lorem-paragraphs-arg-paragraphCountMax", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCountMax", @@ -22521,10 +23543,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMax" }, { - "id": "domain-lorem-paragraphs-arg-paragraphCountMin", + "id": "runtime:domain-lorem-paragraphs-arg-paragraphCountMin", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs arg paragraphCountMin", @@ -22543,10 +23566,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-paragraphs-arg-paragraphCountMin" }, { - "id": "domain-lorem-paragraphs-pair-min-max", + "id": "runtime:domain-lorem-paragraphs-pair-min-max", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair min/max", @@ -22565,10 +23589,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-min-max" }, { - "id": "domain-lorem-paragraphs-pair-max-paragraphCount", + "id": "runtime:domain-lorem-paragraphs-pair-max-paragraphCount", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair max/paragraphCount", @@ -22587,10 +23612,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "paragraphCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-max-paragraphCount" }, { - "id": "domain-lorem-paragraphs-pair-paragraphCount-separator", + "id": "runtime:domain-lorem-paragraphs-pair-paragraphCount-separator", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair paragraphCount/separator", @@ -22609,10 +23635,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCount", "separator"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-paragraphCount-separator" }, { - "id": "domain-lorem-paragraphs-pair-separator-paragraphCountMax", + "id": "runtime:domain-lorem-paragraphs-pair-separator-paragraphCountMax", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair separator/paragraphCountMax", @@ -22631,10 +23658,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "paragraphCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-separator-paragraphCountMax" }, { - "id": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", + "id": "runtime:domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin", "sourceType": "domain", "command": "lorem.paragraphs", "label": "lorem.paragraphs pair paragraphCountMax/paragraphCountMin", @@ -22653,10 +23681,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["paragraphCountMax", "paragraphCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-paragraphs-pair-paragraphCountMax-paragraphCountMin" }, { - "id": "domain-lorem-sentence-base", + "id": "runtime:domain-lorem-sentence-base", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence", @@ -22675,10 +23704,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-sentence-base" }, { - "id": "domain-lorem-sentence-arg-min", + "id": "runtime:domain-lorem-sentence-arg-min", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg min", @@ -22697,10 +23727,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-min" }, { - "id": "domain-lorem-sentence-arg-max", + "id": "runtime:domain-lorem-sentence-arg-max", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg max", @@ -22719,10 +23750,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-max" }, { - "id": "domain-lorem-sentence-arg-wordCount", + "id": "runtime:domain-lorem-sentence-arg-wordCount", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCount", @@ -22741,10 +23773,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCount" }, { - "id": "domain-lorem-sentence-arg-wordCountMax", + "id": "runtime:domain-lorem-sentence-arg-wordCountMax", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCountMax", @@ -22763,10 +23796,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCountMax" }, { - "id": "domain-lorem-sentence-arg-wordCountMin", + "id": "runtime:domain-lorem-sentence-arg-wordCountMin", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence arg wordCountMin", @@ -22785,10 +23819,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentence-arg-wordCountMin" }, { - "id": "domain-lorem-sentence-pair-min-max", + "id": "runtime:domain-lorem-sentence-pair-min-max", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair min/max", @@ -22807,10 +23842,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-min-max" }, { - "id": "domain-lorem-sentence-pair-max-wordCount", + "id": "runtime:domain-lorem-sentence-pair-max-wordCount", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair max/wordCount", @@ -22829,10 +23865,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-max-wordCount" }, { - "id": "domain-lorem-sentence-pair-wordCount-wordCountMax", + "id": "runtime:domain-lorem-sentence-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair wordCount/wordCountMax", @@ -22851,10 +23888,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-sentence-pair-wordCountMax-wordCountMin", + "id": "runtime:domain-lorem-sentence-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.sentence", "label": "lorem.sentence pair wordCountMax/wordCountMin", @@ -22873,10 +23911,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentence-pair-wordCountMax-wordCountMin" }, { - "id": "domain-lorem-sentences-base", + "id": "runtime:domain-lorem-sentences-base", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences", @@ -22895,10 +23934,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-sentences-base" }, { - "id": "domain-lorem-sentences-arg-min", + "id": "runtime:domain-lorem-sentences-arg-min", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg min", @@ -22917,10 +23957,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-min" }, { - "id": "domain-lorem-sentences-arg-max", + "id": "runtime:domain-lorem-sentences-arg-max", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg max", @@ -22939,10 +23980,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-max" }, { - "id": "domain-lorem-sentences-arg-sentenceCount", + "id": "runtime:domain-lorem-sentences-arg-sentenceCount", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCount", @@ -22961,10 +24003,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCount" }, { - "id": "domain-lorem-sentences-arg-separator", + "id": "runtime:domain-lorem-sentences-arg-separator", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg separator", @@ -22983,10 +24026,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-separator" }, { - "id": "domain-lorem-sentences-arg-sentenceCountMax", + "id": "runtime:domain-lorem-sentences-arg-sentenceCountMax", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCountMax", @@ -23005,10 +24049,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCountMax" }, { - "id": "domain-lorem-sentences-arg-sentenceCountMin", + "id": "runtime:domain-lorem-sentences-arg-sentenceCountMin", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences arg sentenceCountMin", @@ -23027,10 +24072,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-sentences-arg-sentenceCountMin" }, { - "id": "domain-lorem-sentences-pair-min-max", + "id": "runtime:domain-lorem-sentences-pair-min-max", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair min/max", @@ -23049,10 +24095,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-min-max" }, { - "id": "domain-lorem-sentences-pair-max-sentenceCount", + "id": "runtime:domain-lorem-sentences-pair-max-sentenceCount", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair max/sentenceCount", @@ -23071,10 +24118,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "sentenceCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-max-sentenceCount" }, { - "id": "domain-lorem-sentences-pair-sentenceCount-separator", + "id": "runtime:domain-lorem-sentences-pair-sentenceCount-separator", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair sentenceCount/separator", @@ -23093,10 +24141,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCount", "separator"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-sentenceCount-separator" }, { - "id": "domain-lorem-sentences-pair-separator-sentenceCountMax", + "id": "runtime:domain-lorem-sentences-pair-separator-sentenceCountMax", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair separator/sentenceCountMax", @@ -23115,10 +24164,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["separator", "sentenceCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-separator-sentenceCountMax" }, { - "id": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", + "id": "runtime:domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin", "sourceType": "domain", "command": "lorem.sentences", "label": "lorem.sentences pair sentenceCountMax/sentenceCountMin", @@ -23137,10 +24187,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sentenceCountMax", "sentenceCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-sentences-pair-sentenceCountMax-sentenceCountMin" }, { - "id": "domain-lorem-slug-base", + "id": "runtime:domain-lorem-slug-base", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug", @@ -23159,10 +24210,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-slug-base" }, { - "id": "domain-lorem-slug-arg-min", + "id": "runtime:domain-lorem-slug-arg-min", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg min", @@ -23181,10 +24233,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-min" }, { - "id": "domain-lorem-slug-arg-max", + "id": "runtime:domain-lorem-slug-arg-max", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg max", @@ -23203,10 +24256,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-max" }, { - "id": "domain-lorem-slug-arg-wordCount", + "id": "runtime:domain-lorem-slug-arg-wordCount", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCount", @@ -23225,10 +24279,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCount" }, { - "id": "domain-lorem-slug-arg-wordCountMax", + "id": "runtime:domain-lorem-slug-arg-wordCountMax", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCountMax", @@ -23247,10 +24302,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCountMax" }, { - "id": "domain-lorem-slug-arg-wordCountMin", + "id": "runtime:domain-lorem-slug-arg-wordCountMin", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug arg wordCountMin", @@ -23269,10 +24325,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-slug-arg-wordCountMin" }, { - "id": "domain-lorem-slug-pair-min-max", + "id": "runtime:domain-lorem-slug-pair-min-max", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair min/max", @@ -23291,10 +24348,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-min-max" }, { - "id": "domain-lorem-slug-pair-max-wordCount", + "id": "runtime:domain-lorem-slug-pair-max-wordCount", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair max/wordCount", @@ -23313,10 +24371,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-max-wordCount" }, { - "id": "domain-lorem-slug-pair-wordCount-wordCountMax", + "id": "runtime:domain-lorem-slug-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair wordCount/wordCountMax", @@ -23335,10 +24394,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-slug-pair-wordCountMax-wordCountMin", + "id": "runtime:domain-lorem-slug-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.slug", "label": "lorem.slug pair wordCountMax/wordCountMin", @@ -23357,10 +24417,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-slug-pair-wordCountMax-wordCountMin" }, { - "id": "domain-lorem-text-base", + "id": "runtime:domain-lorem-text-base", "sourceType": "domain", "command": "lorem.text", "label": "lorem.text", @@ -23379,10 +24440,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-text-base" }, { - "id": "domain-lorem-word-base", + "id": "runtime:domain-lorem-word-base", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word", @@ -23401,10 +24463,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-word-base" }, { - "id": "domain-lorem-word-arg-min", + "id": "runtime:domain-lorem-word-arg-min", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg min", @@ -23423,10 +24486,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-min" }, { - "id": "domain-lorem-word-arg-max", + "id": "runtime:domain-lorem-word-arg-max", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg max", @@ -23445,10 +24509,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-max" }, { - "id": "domain-lorem-word-arg-length", + "id": "runtime:domain-lorem-word-arg-length", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg length", @@ -23467,10 +24532,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-length" }, { - "id": "domain-lorem-word-arg-strategy", + "id": "runtime:domain-lorem-word-arg-strategy", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word arg strategy", @@ -23489,10 +24555,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-word-arg-strategy" }, { - "id": "domain-lorem-word-pair-min-max", + "id": "runtime:domain-lorem-word-pair-min-max", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair min/max", @@ -23511,10 +24578,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-min-max" }, { - "id": "domain-lorem-word-pair-max-length", + "id": "runtime:domain-lorem-word-pair-max-length", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair max/length", @@ -23533,10 +24601,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-max-length" }, { - "id": "domain-lorem-word-pair-length-strategy", + "id": "runtime:domain-lorem-word-pair-length-strategy", "sourceType": "domain", "command": "lorem.word", "label": "lorem.word pair length/strategy", @@ -23555,10 +24624,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-word-pair-length-strategy" }, { - "id": "domain-lorem-words-base", + "id": "runtime:domain-lorem-words-base", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words", @@ -23577,10 +24647,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-lorem-words-base" }, { - "id": "domain-lorem-words-arg-min", + "id": "runtime:domain-lorem-words-arg-min", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg min", @@ -23599,10 +24670,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-min" }, { - "id": "domain-lorem-words-arg-max", + "id": "runtime:domain-lorem-words-arg-max", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg max", @@ -23621,10 +24693,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-max" }, { - "id": "domain-lorem-words-arg-wordCount", + "id": "runtime:domain-lorem-words-arg-wordCount", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCount", @@ -23643,10 +24716,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCount" }, { - "id": "domain-lorem-words-arg-wordCountMax", + "id": "runtime:domain-lorem-words-arg-wordCountMax", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCountMax", @@ -23665,10 +24739,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCountMax" }, { - "id": "domain-lorem-words-arg-wordCountMin", + "id": "runtime:domain-lorem-words-arg-wordCountMin", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words arg wordCountMin", @@ -23687,10 +24762,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMin"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-lorem-words-arg-wordCountMin" }, { - "id": "domain-lorem-words-pair-min-max", + "id": "runtime:domain-lorem-words-pair-min-max", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair min/max", @@ -23709,10 +24785,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-min-max" }, { - "id": "domain-lorem-words-pair-max-wordCount", + "id": "runtime:domain-lorem-words-pair-max-wordCount", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair max/wordCount", @@ -23731,10 +24808,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "wordCount"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-max-wordCount" }, { - "id": "domain-lorem-words-pair-wordCount-wordCountMax", + "id": "runtime:domain-lorem-words-pair-wordCount-wordCountMax", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair wordCount/wordCountMax", @@ -23753,10 +24831,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCount", "wordCountMax"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-wordCount-wordCountMax" }, { - "id": "domain-lorem-words-pair-wordCountMax-wordCountMin", + "id": "runtime:domain-lorem-words-pair-wordCountMax-wordCountMin", "sourceType": "domain", "command": "lorem.words", "label": "lorem.words pair wordCountMax/wordCountMin", @@ -23775,10 +24854,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["wordCountMax", "wordCountMin"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-lorem-words-pair-wordCountMax-wordCountMin" }, { - "id": "domain-music-album-base", + "id": "runtime:domain-music-album-base", "sourceType": "domain", "command": "music.album", "label": "music.album", @@ -23797,10 +24877,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-album-base" }, { - "id": "domain-music-artist-base", + "id": "runtime:domain-music-artist-base", "sourceType": "domain", "command": "music.artist", "label": "music.artist", @@ -23819,10 +24900,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-artist-base" }, { - "id": "domain-music-genre-base", + "id": "runtime:domain-music-genre-base", "sourceType": "domain", "command": "music.genre", "label": "music.genre", @@ -23841,10 +24923,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-genre-base" }, { - "id": "domain-music-songName-base", + "id": "runtime:domain-music-songName-base", "sourceType": "domain", "command": "music.songName", "label": "music.songName", @@ -23863,10 +24946,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-music-songName-base" }, { - "id": "domain-number-bigInt-base", + "id": "runtime:domain-number-bigInt-base", "sourceType": "domain", "command": "number.bigInt", "label": "number.bigInt", @@ -23885,10 +24969,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-bigInt-base" }, { - "id": "domain-number-bigInt-arg-value", + "id": "runtime:domain-number-bigInt-arg-value", "sourceType": "domain", "command": "number.bigInt", "label": "number.bigInt arg value", @@ -23907,10 +24992,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["value"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-bigInt-arg-value" }, { - "id": "domain-number-binary-base", + "id": "runtime:domain-number-binary-base", "sourceType": "domain", "command": "number.binary", "label": "number.binary", @@ -23929,10 +25015,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-binary-base" }, { - "id": "domain-number-binary-arg-max", + "id": "runtime:domain-number-binary-arg-max", "sourceType": "domain", "command": "number.binary", "label": "number.binary arg max", @@ -23951,10 +25038,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-binary-arg-max" }, { - "id": "domain-number-binary-arg-min", + "id": "runtime:domain-number-binary-arg-min", "sourceType": "domain", "command": "number.binary", "label": "number.binary arg min", @@ -23973,10 +25061,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-binary-arg-min" }, { - "id": "domain-number-binary-pair-max-min", + "id": "runtime:domain-number-binary-pair-max-min", "sourceType": "domain", "command": "number.binary", "label": "number.binary pair max/min", @@ -23995,10 +25084,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-binary-pair-max-min" }, { - "id": "domain-number-float-base", + "id": "runtime:domain-number-float-base", "sourceType": "domain", "command": "number.float", "label": "number.float", @@ -24017,10 +25107,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-float-base" }, { - "id": "domain-number-float-arg-fractionDigits", + "id": "runtime:domain-number-float-arg-fractionDigits", "sourceType": "domain", "command": "number.float", "label": "number.float arg fractionDigits", @@ -24039,10 +25130,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["fractionDigits"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-fractionDigits" }, { - "id": "domain-number-float-arg-max", + "id": "runtime:domain-number-float-arg-max", "sourceType": "domain", "command": "number.float", "label": "number.float arg max", @@ -24061,10 +25153,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-max" }, { - "id": "domain-number-float-arg-min", + "id": "runtime:domain-number-float-arg-min", "sourceType": "domain", "command": "number.float", "label": "number.float arg min", @@ -24083,10 +25176,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-min" }, { - "id": "domain-number-float-arg-multipleOf", + "id": "runtime:domain-number-float-arg-multipleOf", "sourceType": "domain", "command": "number.float", "label": "number.float arg multipleOf", @@ -24105,10 +25199,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["multipleOf"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-float-arg-multipleOf" }, { - "id": "domain-number-float-pair-fractionDigits-max", + "id": "runtime:domain-number-float-pair-fractionDigits-max", "sourceType": "domain", "command": "number.float", "label": "number.float pair fractionDigits/max", @@ -24127,10 +25222,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["fractionDigits", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-fractionDigits-max" }, { - "id": "domain-number-float-pair-max-min", + "id": "runtime:domain-number-float-pair-max-min", "sourceType": "domain", "command": "number.float", "label": "number.float pair max/min", @@ -24149,10 +25245,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-max-min" }, { - "id": "domain-number-float-pair-min-multipleOf", + "id": "runtime:domain-number-float-pair-min-multipleOf", "sourceType": "domain", "command": "number.float", "label": "number.float pair min/multipleOf", @@ -24171,10 +25268,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "multipleOf"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-float-pair-min-multipleOf" }, { - "id": "domain-number-hex-base", + "id": "runtime:domain-number-hex-base", "sourceType": "domain", "command": "number.hex", "label": "number.hex", @@ -24193,10 +25291,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-hex-base" }, { - "id": "domain-number-hex-arg-min", + "id": "runtime:domain-number-hex-arg-min", "sourceType": "domain", "command": "number.hex", "label": "number.hex arg min", @@ -24215,10 +25314,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-hex-arg-min" }, { - "id": "domain-number-hex-arg-max", + "id": "runtime:domain-number-hex-arg-max", "sourceType": "domain", "command": "number.hex", "label": "number.hex arg max", @@ -24237,10 +25337,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-hex-arg-max" }, { - "id": "domain-number-hex-pair-min-max", + "id": "runtime:domain-number-hex-pair-min-max", "sourceType": "domain", "command": "number.hex", "label": "number.hex pair min/max", @@ -24259,10 +25360,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-hex-pair-min-max" }, { - "id": "domain-number-int-base", + "id": "runtime:domain-number-int-base", "sourceType": "domain", "command": "number.int", "label": "number.int", @@ -24281,10 +25383,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-int-base" }, { - "id": "domain-number-int-arg-min", + "id": "runtime:domain-number-int-arg-min", "sourceType": "domain", "command": "number.int", "label": "number.int arg min", @@ -24303,10 +25406,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-min" }, { - "id": "domain-number-int-arg-max", + "id": "runtime:domain-number-int-arg-max", "sourceType": "domain", "command": "number.int", "label": "number.int arg max", @@ -24325,10 +25429,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-max" }, { - "id": "domain-number-int-arg-multipleOf", + "id": "runtime:domain-number-int-arg-multipleOf", "sourceType": "domain", "command": "number.int", "label": "number.int arg multipleOf", @@ -24347,10 +25452,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["multipleOf"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-int-arg-multipleOf" }, { - "id": "domain-number-int-pair-min-max", + "id": "runtime:domain-number-int-pair-min-max", "sourceType": "domain", "command": "number.int", "label": "number.int pair min/max", @@ -24369,10 +25475,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-int-pair-min-max" }, { - "id": "domain-number-int-pair-max-multipleOf", + "id": "runtime:domain-number-int-pair-max-multipleOf", "sourceType": "domain", "command": "number.int", "label": "number.int pair max/multipleOf", @@ -24391,10 +25498,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "multipleOf"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-int-pair-max-multipleOf" }, { - "id": "domain-number-octal-base", + "id": "runtime:domain-number-octal-base", "sourceType": "domain", "command": "number.octal", "label": "number.octal", @@ -24413,10 +25521,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-octal-base" }, { - "id": "domain-number-octal-arg-max", + "id": "runtime:domain-number-octal-arg-max", "sourceType": "domain", "command": "number.octal", "label": "number.octal arg max", @@ -24435,10 +25544,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-octal-arg-max" }, { - "id": "domain-number-octal-arg-min", + "id": "runtime:domain-number-octal-arg-min", "sourceType": "domain", "command": "number.octal", "label": "number.octal arg min", @@ -24457,10 +25567,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-octal-arg-min" }, { - "id": "domain-number-octal-pair-max-min", + "id": "runtime:domain-number-octal-pair-max-min", "sourceType": "domain", "command": "number.octal", "label": "number.octal pair max/min", @@ -24479,10 +25590,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "min"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-octal-pair-max-min" }, { - "id": "domain-number-romanNumeral-base", + "id": "runtime:domain-number-romanNumeral-base", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral", @@ -24501,10 +25613,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-number-romanNumeral-base" }, { - "id": "domain-number-romanNumeral-arg-min", + "id": "runtime:domain-number-romanNumeral-arg-min", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral arg min", @@ -24523,10 +25636,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-romanNumeral-arg-min" }, { - "id": "domain-number-romanNumeral-arg-max", + "id": "runtime:domain-number-romanNumeral-arg-max", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral arg max", @@ -24545,10 +25659,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-number-romanNumeral-arg-max" }, { - "id": "domain-number-romanNumeral-pair-min-max", + "id": "runtime:domain-number-romanNumeral-pair-min-max", "sourceType": "domain", "command": "number.romanNumeral", "label": "number.romanNumeral pair min/max", @@ -24567,10 +25682,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-number-romanNumeral-pair-min-max" }, { - "id": "domain-person-bio-base", + "id": "runtime:domain-person-bio-base", "sourceType": "domain", "command": "person.bio", "label": "person.bio", @@ -24589,10 +25705,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-bio-base" }, { - "id": "domain-person-firstName-base", + "id": "runtime:domain-person-firstName-base", "sourceType": "domain", "command": "person.firstName", "label": "person.firstName", @@ -24611,10 +25728,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-firstName-base" }, { - "id": "domain-person-firstName-arg-sex", + "id": "runtime:domain-person-firstName-arg-sex", "sourceType": "domain", "command": "person.firstName", "label": "person.firstName arg sex", @@ -24633,10 +25751,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-firstName-arg-sex" }, { - "id": "domain-person-fullName-base", + "id": "runtime:domain-person-fullName-base", "sourceType": "domain", "command": "person.fullName", "label": "person.fullName", @@ -24655,10 +25774,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-fullName-base" }, { - "id": "domain-person-gender-base", + "id": "runtime:domain-person-gender-base", "sourceType": "domain", "command": "person.gender", "label": "person.gender", @@ -24677,10 +25797,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-gender-base" }, { - "id": "domain-person-jobArea-base", + "id": "runtime:domain-person-jobArea-base", "sourceType": "domain", "command": "person.jobArea", "label": "person.jobArea", @@ -24699,10 +25820,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobArea-base" }, { - "id": "domain-person-jobDescriptor-base", + "id": "runtime:domain-person-jobDescriptor-base", "sourceType": "domain", "command": "person.jobDescriptor", "label": "person.jobDescriptor", @@ -24721,10 +25843,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobDescriptor-base" }, { - "id": "domain-person-jobTitle-base", + "id": "runtime:domain-person-jobTitle-base", "sourceType": "domain", "command": "person.jobTitle", "label": "person.jobTitle", @@ -24743,10 +25866,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobTitle-base" }, { - "id": "domain-person-jobType-base", + "id": "runtime:domain-person-jobType-base", "sourceType": "domain", "command": "person.jobType", "label": "person.jobType", @@ -24765,10 +25889,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-jobType-base" }, { - "id": "domain-person-lastName-base", + "id": "runtime:domain-person-lastName-base", "sourceType": "domain", "command": "person.lastName", "label": "person.lastName", @@ -24787,10 +25912,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-lastName-base" }, { - "id": "domain-person-lastName-arg-sex", + "id": "runtime:domain-person-lastName-arg-sex", "sourceType": "domain", "command": "person.lastName", "label": "person.lastName arg sex", @@ -24809,10 +25935,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-lastName-arg-sex" }, { - "id": "domain-person-middleName-base", + "id": "runtime:domain-person-middleName-base", "sourceType": "domain", "command": "person.middleName", "label": "person.middleName", @@ -24831,10 +25958,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-middleName-base" }, { - "id": "domain-person-middleName-arg-sex", + "id": "runtime:domain-person-middleName-arg-sex", "sourceType": "domain", "command": "person.middleName", "label": "person.middleName arg sex", @@ -24853,10 +25981,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-middleName-arg-sex" }, { - "id": "domain-person-prefix-base", + "id": "runtime:domain-person-prefix-base", "sourceType": "domain", "command": "person.prefix", "label": "person.prefix", @@ -24875,10 +26004,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-prefix-base" }, { - "id": "domain-person-prefix-arg-sex", + "id": "runtime:domain-person-prefix-arg-sex", "sourceType": "domain", "command": "person.prefix", "label": "person.prefix arg sex", @@ -24897,10 +26027,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["sex"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-person-prefix-arg-sex" }, { - "id": "domain-person-sex-base", + "id": "runtime:domain-person-sex-base", "sourceType": "domain", "command": "person.sex", "label": "person.sex", @@ -24919,10 +26050,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-sex-base" }, { - "id": "domain-person-sexType-base", + "id": "runtime:domain-person-sexType-base", "sourceType": "domain", "command": "person.sexType", "label": "person.sexType", @@ -24941,10 +26073,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-sexType-base" }, { - "id": "domain-person-suffix-base", + "id": "runtime:domain-person-suffix-base", "sourceType": "domain", "command": "person.suffix", "label": "person.suffix", @@ -24963,10 +26096,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-suffix-base" }, { - "id": "domain-person-zodiacSign-base", + "id": "runtime:domain-person-zodiacSign-base", "sourceType": "domain", "command": "person.zodiacSign", "label": "person.zodiacSign", @@ -24985,10 +26119,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-person-zodiacSign-base" }, { - "id": "domain-phone-imei-base", + "id": "runtime:domain-phone-imei-base", "sourceType": "domain", "command": "phone.imei", "label": "phone.imei", @@ -25007,10 +26142,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-phone-imei-base" }, { - "id": "domain-phone-number-base", + "id": "runtime:domain-phone-number-base", "sourceType": "domain", "command": "phone.number", "label": "phone.number", @@ -25029,10 +26165,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-phone-number-base" }, { - "id": "domain-phone-number-arg-style", + "id": "runtime:domain-phone-number-arg-style", "sourceType": "domain", "command": "phone.number", "label": "phone.number arg style", @@ -25051,10 +26188,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["style"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-phone-number-arg-style" }, { - "id": "domain-string-alpha-base", + "id": "runtime:domain-string-alpha-base", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha", @@ -25073,10 +26211,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-alpha-base" }, { - "id": "domain-string-alpha-arg-length", + "id": "runtime:domain-string-alpha-arg-length", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg length", @@ -25095,10 +26234,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-length" }, { - "id": "domain-string-alpha-arg-casing", + "id": "runtime:domain-string-alpha-arg-casing", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg casing", @@ -25117,10 +26257,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-casing" }, { - "id": "domain-string-alpha-arg-exclude", + "id": "runtime:domain-string-alpha-arg-exclude", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha arg exclude", @@ -25139,10 +26280,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alpha-arg-exclude" }, { - "id": "domain-string-alpha-pair-length-casing", + "id": "runtime:domain-string-alpha-pair-length-casing", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha pair length/casing", @@ -25161,10 +26303,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "casing"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alpha-pair-length-casing" }, { - "id": "domain-string-alpha-pair-casing-exclude", + "id": "runtime:domain-string-alpha-pair-casing-exclude", "sourceType": "domain", "command": "string.alpha", "label": "string.alpha pair casing/exclude", @@ -25183,10 +26326,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alpha-pair-casing-exclude" }, { - "id": "domain-string-alphanumeric-base", + "id": "runtime:domain-string-alphanumeric-base", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric", @@ -25205,10 +26349,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-alphanumeric-base" }, { - "id": "domain-string-alphanumeric-arg-length", + "id": "runtime:domain-string-alphanumeric-arg-length", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg length", @@ -25227,10 +26372,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-length" }, { - "id": "domain-string-alphanumeric-arg-casing", + "id": "runtime:domain-string-alphanumeric-arg-casing", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg casing", @@ -25249,10 +26395,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-casing" }, { - "id": "domain-string-alphanumeric-arg-exclude", + "id": "runtime:domain-string-alphanumeric-arg-exclude", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric arg exclude", @@ -25271,10 +26418,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-alphanumeric-arg-exclude" }, { - "id": "domain-string-alphanumeric-pair-length-casing", + "id": "runtime:domain-string-alphanumeric-pair-length-casing", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric pair length/casing", @@ -25293,10 +26441,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "casing"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alphanumeric-pair-length-casing" }, { - "id": "domain-string-alphanumeric-pair-casing-exclude", + "id": "runtime:domain-string-alphanumeric-pair-casing-exclude", "sourceType": "domain", "command": "string.alphanumeric", "label": "string.alphanumeric pair casing/exclude", @@ -25315,10 +26464,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-alphanumeric-pair-casing-exclude" }, { - "id": "domain-string-binary-base", + "id": "runtime:domain-string-binary-base", "sourceType": "domain", "command": "string.binary", "label": "string.binary", @@ -25337,10 +26487,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-binary-base" }, { - "id": "domain-string-binary-arg-length", + "id": "runtime:domain-string-binary-arg-length", "sourceType": "domain", "command": "string.binary", "label": "string.binary arg length", @@ -25359,10 +26510,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-binary-arg-length" }, { - "id": "domain-string-binary-arg-prefix", + "id": "runtime:domain-string-binary-arg-prefix", "sourceType": "domain", "command": "string.binary", "label": "string.binary arg prefix", @@ -25381,10 +26533,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-binary-arg-prefix" }, { - "id": "domain-string-binary-pair-length-prefix", + "id": "runtime:domain-string-binary-pair-length-prefix", "sourceType": "domain", "command": "string.binary", "label": "string.binary pair length/prefix", @@ -25403,10 +26556,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-binary-pair-length-prefix" }, { - "id": "domain-string-counterString-base", + "id": "runtime:domain-string-counterString-base", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString", @@ -25425,10 +26579,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-counterString-base" }, { - "id": "domain-string-counterString-example-1", + "id": "runtime:domain-string-counterString-example-1", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 1", @@ -25447,10 +26602,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-1" }, { - "id": "domain-string-counterString-example-2", + "id": "runtime:domain-string-counterString-example-2", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 2", @@ -25469,10 +26625,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-2" }, { - "id": "domain-string-counterString-example-3", + "id": "runtime:domain-string-counterString-example-3", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 3", @@ -25491,10 +26648,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-3" }, { - "id": "domain-string-counterString-example-4", + "id": "runtime:domain-string-counterString-example-4", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 4", @@ -25513,10 +26671,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max", "delimiter"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-counterString-example-4" }, { - "id": "domain-string-counterString-arg-min", + "id": "runtime:domain-string-counterString-arg-min", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg min", @@ -25535,10 +26694,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-min" }, { - "id": "domain-string-counterString-arg-max", + "id": "runtime:domain-string-counterString-arg-max", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg max", @@ -25557,10 +26717,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-max" }, { - "id": "domain-string-counterString-arg-delimiter", + "id": "runtime:domain-string-counterString-arg-delimiter", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString arg delimiter", @@ -25579,10 +26740,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["delimiter"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-counterString-arg-delimiter" }, { - "id": "domain-string-counterString-pair-min-max", + "id": "runtime:domain-string-counterString-pair-min-max", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString pair min/max", @@ -25601,10 +26763,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["min", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-counterString-pair-min-max" }, { - "id": "domain-string-counterString-pair-max-delimiter", + "id": "runtime:domain-string-counterString-pair-max-delimiter", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString pair max/delimiter", @@ -25623,10 +26786,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "delimiter"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-counterString-pair-max-delimiter" }, { - "id": "domain-string-fromCharacters-base", + "id": "runtime:domain-string-fromCharacters-base", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters", @@ -25645,10 +26809,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-fromCharacters-base" }, { - "id": "domain-string-fromCharacters-example-1", + "id": "runtime:domain-string-fromCharacters-example-1", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters example 1", @@ -25667,10 +26832,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-fromCharacters-example-1" }, { - "id": "domain-string-fromCharacters-example-2", + "id": "runtime:domain-string-fromCharacters-example-2", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters example 2", @@ -25689,10 +26855,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["example"] + "origins": ["example"], + "scenarioId": "domain-string-fromCharacters-example-2" }, { - "id": "domain-string-fromCharacters-arg-characters", + "id": "runtime:domain-string-fromCharacters-arg-characters", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters arg characters", @@ -25711,10 +26878,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-fromCharacters-arg-characters" }, { - "id": "domain-string-fromCharacters-arg-length", + "id": "runtime:domain-string-fromCharacters-arg-length", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters arg length", @@ -25733,10 +26901,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-fromCharacters-arg-length" }, { - "id": "domain-string-fromCharacters-pair-characters-length", + "id": "runtime:domain-string-fromCharacters-pair-characters-length", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters pair characters/length", @@ -25755,10 +26924,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["characters", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-fromCharacters-pair-characters-length" }, { - "id": "domain-string-hexadecimal-base", + "id": "runtime:domain-string-hexadecimal-base", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal", @@ -25777,10 +26947,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-hexadecimal-base" }, { - "id": "domain-string-hexadecimal-arg-casing", + "id": "runtime:domain-string-hexadecimal-arg-casing", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg casing", @@ -25799,10 +26970,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-casing" }, { - "id": "domain-string-hexadecimal-arg-length", + "id": "runtime:domain-string-hexadecimal-arg-length", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg length", @@ -25821,10 +26993,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-length" }, { - "id": "domain-string-hexadecimal-arg-prefix", + "id": "runtime:domain-string-hexadecimal-arg-prefix", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal arg prefix", @@ -25843,10 +27016,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-hexadecimal-arg-prefix" }, { - "id": "domain-string-hexadecimal-pair-casing-length", + "id": "runtime:domain-string-hexadecimal-pair-casing-length", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal pair casing/length", @@ -25865,10 +27039,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["casing", "length"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-hexadecimal-pair-casing-length" }, { - "id": "domain-string-hexadecimal-pair-length-prefix", + "id": "runtime:domain-string-hexadecimal-pair-length-prefix", "sourceType": "domain", "command": "string.hexadecimal", "label": "string.hexadecimal pair length/prefix", @@ -25887,10 +27062,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-hexadecimal-pair-length-prefix" }, { - "id": "domain-string-nanoid-base", + "id": "runtime:domain-string-nanoid-base", "sourceType": "domain", "command": "string.nanoid", "label": "string.nanoid", @@ -25909,10 +27085,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-nanoid-base" }, { - "id": "domain-string-nanoid-arg-length", + "id": "runtime:domain-string-nanoid-arg-length", "sourceType": "domain", "command": "string.nanoid", "label": "string.nanoid arg length", @@ -25931,10 +27108,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-nanoid-arg-length" }, { - "id": "domain-string-numeric-base", + "id": "runtime:domain-string-numeric-base", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric", @@ -25953,10 +27131,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-numeric-base" }, { - "id": "domain-string-numeric-arg-length", + "id": "runtime:domain-string-numeric-arg-length", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg length", @@ -25975,10 +27154,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-length" }, { - "id": "domain-string-numeric-arg-allowLeadingZeros", + "id": "runtime:domain-string-numeric-arg-allowLeadingZeros", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg allowLeadingZeros", @@ -25997,10 +27177,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowLeadingZeros"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-allowLeadingZeros" }, { - "id": "domain-string-numeric-arg-exclude", + "id": "runtime:domain-string-numeric-arg-exclude", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric arg exclude", @@ -26019,10 +27200,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["exclude"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-numeric-arg-exclude" }, { - "id": "domain-string-numeric-pair-length-allowLeadingZeros", + "id": "runtime:domain-string-numeric-pair-length-allowLeadingZeros", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric pair length/allowLeadingZeros", @@ -26041,10 +27223,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "allowLeadingZeros"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-numeric-pair-length-allowLeadingZeros" }, { - "id": "domain-string-numeric-pair-allowLeadingZeros-exclude", + "id": "runtime:domain-string-numeric-pair-allowLeadingZeros-exclude", "sourceType": "domain", "command": "string.numeric", "label": "string.numeric pair allowLeadingZeros/exclude", @@ -26063,10 +27246,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["allowLeadingZeros", "exclude"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-numeric-pair-allowLeadingZeros-exclude" }, { - "id": "domain-string-octal-base", + "id": "runtime:domain-string-octal-base", "sourceType": "domain", "command": "string.octal", "label": "string.octal", @@ -26085,10 +27269,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-octal-base" }, { - "id": "domain-string-octal-arg-length", + "id": "runtime:domain-string-octal-arg-length", "sourceType": "domain", "command": "string.octal", "label": "string.octal arg length", @@ -26107,10 +27292,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-octal-arg-length" }, { - "id": "domain-string-octal-arg-prefix", + "id": "runtime:domain-string-octal-arg-prefix", "sourceType": "domain", "command": "string.octal", "label": "string.octal arg prefix", @@ -26129,10 +27315,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["prefix"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-octal-arg-prefix" }, { - "id": "domain-string-octal-pair-length-prefix", + "id": "runtime:domain-string-octal-pair-length-prefix", "sourceType": "domain", "command": "string.octal", "label": "string.octal pair length/prefix", @@ -26151,10 +27338,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "prefix"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-string-octal-pair-length-prefix" }, { - "id": "domain-string-sample-base", + "id": "runtime:domain-string-sample-base", "sourceType": "domain", "command": "string.sample", "label": "string.sample", @@ -26173,10 +27361,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-sample-base" }, { - "id": "domain-string-sample-arg-length", + "id": "runtime:domain-string-sample-arg-length", "sourceType": "domain", "command": "string.sample", "label": "string.sample arg length", @@ -26195,10 +27384,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-sample-arg-length" }, { - "id": "domain-string-symbol-base", + "id": "runtime:domain-string-symbol-base", "sourceType": "domain", "command": "string.symbol", "label": "string.symbol", @@ -26217,10 +27407,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-symbol-base" }, { - "id": "domain-string-symbol-arg-length", + "id": "runtime:domain-string-symbol-arg-length", "sourceType": "domain", "command": "string.symbol", "label": "string.symbol arg length", @@ -26239,10 +27430,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-symbol-arg-length" }, { - "id": "domain-string-ulid-base", + "id": "runtime:domain-string-ulid-base", "sourceType": "domain", "command": "string.ulid", "label": "string.ulid", @@ -26261,10 +27453,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-ulid-base" }, { - "id": "domain-string-ulid-arg-refDate", + "id": "runtime:domain-string-ulid-arg-refDate", "sourceType": "domain", "command": "string.ulid", "label": "string.ulid arg refDate", @@ -26283,10 +27476,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["refDate"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-string-ulid-arg-refDate" }, { - "id": "domain-string-uuid-base", + "id": "runtime:domain-string-uuid-base", "sourceType": "domain", "command": "string.uuid", "label": "string.uuid", @@ -26305,10 +27499,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-string-uuid-base" }, { - "id": "domain-system-commonFileExt-base", + "id": "runtime:domain-system-commonFileExt-base", "sourceType": "domain", "command": "system.commonFileExt", "label": "system.commonFileExt", @@ -26327,10 +27522,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileExt-base" }, { - "id": "domain-system-commonFileName-base", + "id": "runtime:domain-system-commonFileName-base", "sourceType": "domain", "command": "system.commonFileName", "label": "system.commonFileName", @@ -26349,10 +27545,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileName-base" }, { - "id": "domain-system-commonFileName-arg-extension", + "id": "runtime:domain-system-commonFileName-arg-extension", "sourceType": "domain", "command": "system.commonFileName", "label": "system.commonFileName arg extension", @@ -26371,10 +27568,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["extension"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-commonFileName-arg-extension" }, { - "id": "domain-system-commonFileType-base", + "id": "runtime:domain-system-commonFileType-base", "sourceType": "domain", "command": "system.commonFileType", "label": "system.commonFileType", @@ -26393,10 +27591,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-commonFileType-base" }, { - "id": "domain-system-cron-base", + "id": "runtime:domain-system-cron-base", "sourceType": "domain", "command": "system.cron", "label": "system.cron", @@ -26415,10 +27614,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-cron-base" }, { - "id": "domain-system-cron-arg-includeNonStandard", + "id": "runtime:domain-system-cron-arg-includeNonStandard", "sourceType": "domain", "command": "system.cron", "label": "system.cron arg includeNonStandard", @@ -26437,10 +27637,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeNonStandard"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-cron-arg-includeNonStandard" }, { - "id": "domain-system-cron-arg-includeYear", + "id": "runtime:domain-system-cron-arg-includeYear", "sourceType": "domain", "command": "system.cron", "label": "system.cron arg includeYear", @@ -26459,10 +27660,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeYear"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-cron-arg-includeYear" }, { - "id": "domain-system-cron-pair-includeNonStandard-includeYear", + "id": "runtime:domain-system-cron-pair-includeNonStandard-includeYear", "sourceType": "domain", "command": "system.cron", "label": "system.cron pair includeNonStandard/includeYear", @@ -26481,10 +27683,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["includeNonStandard", "includeYear"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-system-cron-pair-includeNonStandard-includeYear" }, { - "id": "domain-system-directoryPath-base", + "id": "runtime:domain-system-directoryPath-base", "sourceType": "domain", "command": "system.directoryPath", "label": "system.directoryPath", @@ -26503,10 +27706,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-directoryPath-base" }, { - "id": "domain-system-fileExt-base", + "id": "runtime:domain-system-fileExt-base", "sourceType": "domain", "command": "system.fileExt", "label": "system.fileExt", @@ -26525,10 +27729,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileExt-base" }, { - "id": "domain-system-fileExt-arg-mimeType", + "id": "runtime:domain-system-fileExt-arg-mimeType", "sourceType": "domain", "command": "system.fileExt", "label": "system.fileExt arg mimeType", @@ -26547,10 +27752,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["mimeType"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-system-fileExt-arg-mimeType" }, { - "id": "domain-system-fileName-base", + "id": "runtime:domain-system-fileName-base", "sourceType": "domain", "command": "system.fileName", "label": "system.fileName", @@ -26569,10 +27775,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileName-base" }, { - "id": "domain-system-filePath-base", + "id": "runtime:domain-system-filePath-base", "sourceType": "domain", "command": "system.filePath", "label": "system.filePath", @@ -26591,10 +27798,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-filePath-base" }, { - "id": "domain-system-fileType-base", + "id": "runtime:domain-system-fileType-base", "sourceType": "domain", "command": "system.fileType", "label": "system.fileType", @@ -26613,10 +27821,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-fileType-base" }, { - "id": "domain-system-mimeType-base", + "id": "runtime:domain-system-mimeType-base", "sourceType": "domain", "command": "system.mimeType", "label": "system.mimeType", @@ -26635,10 +27844,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-mimeType-base" }, { - "id": "domain-system-networkInterface-base", + "id": "runtime:domain-system-networkInterface-base", "sourceType": "domain", "command": "system.networkInterface", "label": "system.networkInterface", @@ -26657,10 +27867,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-networkInterface-base" }, { - "id": "domain-system-semver-base", + "id": "runtime:domain-system-semver-base", "sourceType": "domain", "command": "system.semver", "label": "system.semver", @@ -26679,10 +27890,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-system-semver-base" }, { - "id": "domain-vehicle-bicycle-base", + "id": "runtime:domain-vehicle-bicycle-base", "sourceType": "domain", "command": "vehicle.bicycle", "label": "vehicle.bicycle", @@ -26701,10 +27913,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-bicycle-base" }, { - "id": "domain-vehicle-color-base", + "id": "runtime:domain-vehicle-color-base", "sourceType": "domain", "command": "vehicle.color", "label": "vehicle.color", @@ -26723,10 +27936,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-color-base" }, { - "id": "domain-vehicle-fuel-base", + "id": "runtime:domain-vehicle-fuel-base", "sourceType": "domain", "command": "vehicle.fuel", "label": "vehicle.fuel", @@ -26745,10 +27959,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-fuel-base" }, { - "id": "domain-vehicle-manufacturer-base", + "id": "runtime:domain-vehicle-manufacturer-base", "sourceType": "domain", "command": "vehicle.manufacturer", "label": "vehicle.manufacturer", @@ -26767,10 +27982,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-manufacturer-base" }, { - "id": "domain-vehicle-model-base", + "id": "runtime:domain-vehicle-model-base", "sourceType": "domain", "command": "vehicle.model", "label": "vehicle.model", @@ -26789,10 +28005,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-model-base" }, { - "id": "domain-vehicle-type-base", + "id": "runtime:domain-vehicle-type-base", "sourceType": "domain", "command": "vehicle.type", "label": "vehicle.type", @@ -26811,10 +28028,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-type-base" }, { - "id": "domain-vehicle-vehicle-base", + "id": "runtime:domain-vehicle-vehicle-base", "sourceType": "domain", "command": "vehicle.vehicle", "label": "vehicle.vehicle", @@ -26833,10 +28051,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vehicle-base" }, { - "id": "domain-vehicle-vin-base", + "id": "runtime:domain-vehicle-vin-base", "sourceType": "domain", "command": "vehicle.vin", "label": "vehicle.vin", @@ -26855,10 +28074,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vin-base" }, { - "id": "domain-vehicle-vrm-base", + "id": "runtime:domain-vehicle-vrm-base", "sourceType": "domain", "command": "vehicle.vrm", "label": "vehicle.vrm", @@ -26877,10 +28097,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-vehicle-vrm-base" }, { - "id": "domain-word-adjective-base", + "id": "runtime:domain-word-adjective-base", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective", @@ -26899,10 +28120,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-adjective-base" }, { - "id": "domain-word-adjective-arg-length", + "id": "runtime:domain-word-adjective-arg-length", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg length", @@ -26921,10 +28143,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-length" }, { - "id": "domain-word-adjective-arg-max", + "id": "runtime:domain-word-adjective-arg-max", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg max", @@ -26943,10 +28166,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-max" }, { - "id": "domain-word-adjective-arg-strategy", + "id": "runtime:domain-word-adjective-arg-strategy", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective arg strategy", @@ -26965,10 +28189,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adjective-arg-strategy" }, { - "id": "domain-word-adjective-pair-length-max", + "id": "runtime:domain-word-adjective-pair-length-max", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective pair length/max", @@ -26987,10 +28212,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adjective-pair-length-max" }, { - "id": "domain-word-adjective-pair-max-strategy", + "id": "runtime:domain-word-adjective-pair-max-strategy", "sourceType": "domain", "command": "word.adjective", "label": "word.adjective pair max/strategy", @@ -27009,10 +28235,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adjective-pair-max-strategy" }, { - "id": "domain-word-adverb-base", + "id": "runtime:domain-word-adverb-base", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb", @@ -27031,10 +28258,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-adverb-base" }, { - "id": "domain-word-adverb-arg-length", + "id": "runtime:domain-word-adverb-arg-length", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg length", @@ -27053,10 +28281,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-length" }, { - "id": "domain-word-adverb-arg-max", + "id": "runtime:domain-word-adverb-arg-max", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg max", @@ -27075,10 +28304,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-max" }, { - "id": "domain-word-adverb-arg-strategy", + "id": "runtime:domain-word-adverb-arg-strategy", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb arg strategy", @@ -27097,10 +28327,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-adverb-arg-strategy" }, { - "id": "domain-word-adverb-pair-length-max", + "id": "runtime:domain-word-adverb-pair-length-max", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb pair length/max", @@ -27119,10 +28350,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adverb-pair-length-max" }, { - "id": "domain-word-adverb-pair-max-strategy", + "id": "runtime:domain-word-adverb-pair-max-strategy", "sourceType": "domain", "command": "word.adverb", "label": "word.adverb pair max/strategy", @@ -27141,10 +28373,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-adverb-pair-max-strategy" }, { - "id": "domain-word-conjunction-base", + "id": "runtime:domain-word-conjunction-base", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction", @@ -27163,10 +28396,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-conjunction-base" }, { - "id": "domain-word-conjunction-arg-length", + "id": "runtime:domain-word-conjunction-arg-length", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg length", @@ -27185,10 +28419,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-length" }, { - "id": "domain-word-conjunction-arg-max", + "id": "runtime:domain-word-conjunction-arg-max", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg max", @@ -27207,10 +28442,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-max" }, { - "id": "domain-word-conjunction-arg-strategy", + "id": "runtime:domain-word-conjunction-arg-strategy", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction arg strategy", @@ -27229,10 +28465,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-conjunction-arg-strategy" }, { - "id": "domain-word-conjunction-pair-length-max", + "id": "runtime:domain-word-conjunction-pair-length-max", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction pair length/max", @@ -27251,10 +28488,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-conjunction-pair-length-max" }, { - "id": "domain-word-conjunction-pair-max-strategy", + "id": "runtime:domain-word-conjunction-pair-max-strategy", "sourceType": "domain", "command": "word.conjunction", "label": "word.conjunction pair max/strategy", @@ -27273,10 +28511,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-conjunction-pair-max-strategy" }, { - "id": "domain-word-interjection-base", + "id": "runtime:domain-word-interjection-base", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection", @@ -27295,10 +28534,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-interjection-base" }, { - "id": "domain-word-interjection-arg-length", + "id": "runtime:domain-word-interjection-arg-length", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg length", @@ -27317,10 +28557,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-length" }, { - "id": "domain-word-interjection-arg-max", + "id": "runtime:domain-word-interjection-arg-max", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg max", @@ -27339,10 +28580,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-max" }, { - "id": "domain-word-interjection-arg-strategy", + "id": "runtime:domain-word-interjection-arg-strategy", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection arg strategy", @@ -27361,10 +28603,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-interjection-arg-strategy" }, { - "id": "domain-word-interjection-pair-length-max", + "id": "runtime:domain-word-interjection-pair-length-max", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection pair length/max", @@ -27383,10 +28626,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-interjection-pair-length-max" }, { - "id": "domain-word-interjection-pair-max-strategy", + "id": "runtime:domain-word-interjection-pair-max-strategy", "sourceType": "domain", "command": "word.interjection", "label": "word.interjection pair max/strategy", @@ -27405,10 +28649,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-interjection-pair-max-strategy" }, { - "id": "domain-word-noun-base", + "id": "runtime:domain-word-noun-base", "sourceType": "domain", "command": "word.noun", "label": "word.noun", @@ -27427,10 +28672,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-noun-base" }, { - "id": "domain-word-noun-arg-length", + "id": "runtime:domain-word-noun-arg-length", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg length", @@ -27449,10 +28695,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-length" }, { - "id": "domain-word-noun-arg-max", + "id": "runtime:domain-word-noun-arg-max", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg max", @@ -27471,10 +28718,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-max" }, { - "id": "domain-word-noun-arg-strategy", + "id": "runtime:domain-word-noun-arg-strategy", "sourceType": "domain", "command": "word.noun", "label": "word.noun arg strategy", @@ -27493,10 +28741,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-noun-arg-strategy" }, { - "id": "domain-word-noun-pair-length-max", + "id": "runtime:domain-word-noun-pair-length-max", "sourceType": "domain", "command": "word.noun", "label": "word.noun pair length/max", @@ -27515,10 +28764,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-noun-pair-length-max" }, { - "id": "domain-word-noun-pair-max-strategy", + "id": "runtime:domain-word-noun-pair-max-strategy", "sourceType": "domain", "command": "word.noun", "label": "word.noun pair max/strategy", @@ -27537,10 +28787,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-noun-pair-max-strategy" }, { - "id": "domain-word-preposition-base", + "id": "runtime:domain-word-preposition-base", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition", @@ -27559,10 +28810,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-preposition-base" }, { - "id": "domain-word-preposition-arg-length", + "id": "runtime:domain-word-preposition-arg-length", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg length", @@ -27581,10 +28833,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-length" }, { - "id": "domain-word-preposition-arg-max", + "id": "runtime:domain-word-preposition-arg-max", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg max", @@ -27603,10 +28856,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-max" }, { - "id": "domain-word-preposition-arg-strategy", + "id": "runtime:domain-word-preposition-arg-strategy", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition arg strategy", @@ -27625,10 +28879,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-preposition-arg-strategy" }, { - "id": "domain-word-preposition-pair-length-max", + "id": "runtime:domain-word-preposition-pair-length-max", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition pair length/max", @@ -27647,10 +28902,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-preposition-pair-length-max" }, { - "id": "domain-word-preposition-pair-max-strategy", + "id": "runtime:domain-word-preposition-pair-max-strategy", "sourceType": "domain", "command": "word.preposition", "label": "word.preposition pair max/strategy", @@ -27669,10 +28925,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-preposition-pair-max-strategy" }, { - "id": "domain-word-sample-base", + "id": "runtime:domain-word-sample-base", "sourceType": "domain", "command": "word.sample", "label": "word.sample", @@ -27691,10 +28948,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-sample-base" }, { - "id": "domain-word-sample-arg-length", + "id": "runtime:domain-word-sample-arg-length", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg length", @@ -27713,10 +28971,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-length" }, { - "id": "domain-word-sample-arg-max", + "id": "runtime:domain-word-sample-arg-max", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg max", @@ -27735,10 +28994,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-max" }, { - "id": "domain-word-sample-arg-strategy", + "id": "runtime:domain-word-sample-arg-strategy", "sourceType": "domain", "command": "word.sample", "label": "word.sample arg strategy", @@ -27757,10 +29017,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-sample-arg-strategy" }, { - "id": "domain-word-sample-pair-length-max", + "id": "runtime:domain-word-sample-pair-length-max", "sourceType": "domain", "command": "word.sample", "label": "word.sample pair length/max", @@ -27779,10 +29040,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-sample-pair-length-max" }, { - "id": "domain-word-sample-pair-max-strategy", + "id": "runtime:domain-word-sample-pair-max-strategy", "sourceType": "domain", "command": "word.sample", "label": "word.sample pair max/strategy", @@ -27801,10 +29063,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-sample-pair-max-strategy" }, { - "id": "domain-word-verb-base", + "id": "runtime:domain-word-verb-base", "sourceType": "domain", "command": "word.verb", "label": "word.verb", @@ -27823,10 +29086,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-verb-base" }, { - "id": "domain-word-verb-arg-length", + "id": "runtime:domain-word-verb-arg-length", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg length", @@ -27845,10 +29109,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-length" }, { - "id": "domain-word-verb-arg-max", + "id": "runtime:domain-word-verb-arg-max", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg max", @@ -27867,10 +29132,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-max" }, { - "id": "domain-word-verb-arg-strategy", + "id": "runtime:domain-word-verb-arg-strategy", "sourceType": "domain", "command": "word.verb", "label": "word.verb arg strategy", @@ -27889,10 +29155,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["strategy"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-verb-arg-strategy" }, { - "id": "domain-word-verb-pair-length-max", + "id": "runtime:domain-word-verb-pair-length-max", "sourceType": "domain", "command": "word.verb", "label": "word.verb pair length/max", @@ -27911,10 +29178,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["length", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-verb-pair-length-max" }, { - "id": "domain-word-verb-pair-max-strategy", + "id": "runtime:domain-word-verb-pair-max-strategy", "sourceType": "domain", "command": "word.verb", "label": "word.verb pair max/strategy", @@ -27933,10 +29201,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max", "strategy"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-verb-pair-max-strategy" }, { - "id": "domain-word-words-base", + "id": "runtime:domain-word-words-base", "sourceType": "domain", "command": "word.words", "label": "word.words", @@ -27955,10 +29224,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": [], - "origins": ["base"] + "origins": ["base"], + "scenarioId": "domain-word-words-base" }, { - "id": "domain-word-words-arg-count", + "id": "runtime:domain-word-words-arg-count", "sourceType": "domain", "command": "word.words", "label": "word.words arg count", @@ -27977,10 +29247,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-words-arg-count" }, { - "id": "domain-word-words-arg-max", + "id": "runtime:domain-word-words-arg-max", "sourceType": "domain", "command": "word.words", "label": "word.words arg max", @@ -27999,10 +29270,11 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["max"], - "origins": ["arg"] + "origins": ["arg"], + "scenarioId": "domain-word-words-arg-max" }, { - "id": "domain-word-words-pair-count-max", + "id": "runtime:domain-word-words-pair-count-max", "sourceType": "domain", "command": "word.words", "label": "word.words pair count/max", @@ -28021,12 +29293,13 @@ "pairwiseEligible": false, "expectStructuredSerialization": false, "coveredArgs": ["count", "max"], - "origins": ["pair"] + "origins": ["pair"], + "scenarioId": "domain-word-words-pair-count-max" } ], "uiScenarios": [ { - "id": "custom-enum-base", + "id": "ui:custom-enum-base", "sourceType": "enum", "command": "", "label": "enum", @@ -28048,10 +29321,11 @@ "origins": ["custom"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-enum-base" }, { - "id": "custom-enum-pairwise", + "id": "ui:custom-enum-pairwise", "sourceType": "enum", "command": "", "label": "enum pairwise", @@ -28080,10 +29354,11 @@ "origins": ["custom", "pairwise"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-enum-pairwise" }, { - "id": "custom-literal-base", + "id": "ui:custom-literal-base", "sourceType": "literal", "command": "", "label": "literal", @@ -28105,10 +29380,11 @@ "origins": ["custom"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-literal-base" }, { - "id": "custom-literal-empty", + "id": "ui:custom-literal-empty", "sourceType": "literal", "command": "", "label": "literal empty", @@ -28130,10 +29406,11 @@ "origins": ["custom", "empty"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-literal-empty" }, { - "id": "custom-regex-base", + "id": "ui:custom-regex-base", "sourceType": "regex", "command": "", "label": "regex", @@ -28155,10 +29432,11 @@ "origins": ["custom"], "parityMode": "structural", "exactPreviewParity": false, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-regex-base" }, { - "id": "custom-regex-empty", + "id": "ui:custom-regex-empty", "sourceType": "regex", "command": "", "label": "regex empty", @@ -28180,10 +29458,11 @@ "origins": ["custom", "empty"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "custom-regex-empty" }, { - "id": "faker-helpers-arrayElement-base", + "id": "ui:faker-helpers-arrayElement-base", "sourceType": "faker", "command": "helpers.arrayElement", "label": "helpers.arrayElement", @@ -28205,10 +29484,11 @@ "origins": ["base"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-arrayElement-base" }, { - "id": "faker-helpers-fake-base", + "id": "ui:faker-helpers-fake-base", "sourceType": "faker", "command": "helpers.fake", "label": "helpers.fake", @@ -28230,10 +29510,11 @@ "origins": ["base"], "parityMode": "structural", "exactPreviewParity": false, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-fake-base" }, { - "id": "faker-helpers-fromRegExp-example-1", + "id": "ui:faker-helpers-fromRegExp-example-1", "sourceType": "faker", "command": "helpers.fromRegExp", "label": "helpers.fromRegExp example 1", @@ -28255,10 +29536,11 @@ "origins": ["example"], "parityMode": "structural", "exactPreviewParity": false, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-fromRegExp-example-1" }, { - "id": "faker-helpers-mustache-base", + "id": "ui:faker-helpers-mustache-base", "sourceType": "faker", "command": "helpers.mustache", "label": "helpers.mustache", @@ -28280,10 +29562,11 @@ "origins": ["base"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-mustache-base" }, { - "id": "faker-helpers-uniqueArray-example-1", + "id": "ui:faker-helpers-uniqueArray-example-1", "sourceType": "faker", "command": "helpers.uniqueArray", "label": "helpers.uniqueArray example 1", @@ -28305,10 +29588,11 @@ "origins": ["example"], "parityMode": "structural", "exactPreviewParity": false, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-uniqueArray-example-1" }, { - "id": "faker-helpers-weightedArrayElement-example-1", + "id": "ui:faker-helpers-weightedArrayElement-example-1", "sourceType": "faker", "command": "helpers.weightedArrayElement", "label": "helpers.weightedArrayElement example 1", @@ -28330,10 +29614,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "faker-helpers-weightedArrayElement-example-1" }, { - "id": "domain-airline-seat-example-1", + "id": "ui:domain-airline-seat-example-1", "sourceType": "domain", "command": "airline.seat", "label": "airline.seat example 1", @@ -28355,10 +29640,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-airline-seat-example-1" }, { - "id": "domain-autoIncrement-sequence-example-1", + "id": "ui:domain-autoIncrement-sequence-example-1", "sourceType": "domain", "command": "autoIncrement.sequence", "label": "autoIncrement.sequence example 1", @@ -28380,10 +29666,11 @@ "origins": ["example"], "parityMode": "structural", "exactPreviewParity": false, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-autoIncrement-sequence-example-1" }, { - "id": "domain-commerce-price-example-1", + "id": "ui:domain-commerce-price-example-1", "sourceType": "domain", "command": "commerce.price", "label": "commerce.price example 1", @@ -28405,10 +29692,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-commerce-price-example-1" }, { - "id": "domain-date-birthdate-example-1", + "id": "ui:domain-date-birthdate-example-1", "sourceType": "domain", "command": "date.birthdate", "label": "date.birthdate example 1", @@ -28430,10 +29718,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-date-birthdate-example-1" }, { - "id": "domain-internet-password-example-1", + "id": "ui:domain-internet-password-example-1", "sourceType": "domain", "command": "internet.password", "label": "internet.password example 1", @@ -28455,10 +29744,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-internet-password-example-1" }, { - "id": "domain-literal-value-example-1", + "id": "ui:domain-literal-value-example-1", "sourceType": "domain", "command": "literal.value", "label": "literal.value example 1", @@ -28480,10 +29770,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-literal-value-example-1" }, { - "id": "domain-string-counterString-example-1", + "id": "ui:domain-string-counterString-example-1", "sourceType": "domain", "command": "string.counterString", "label": "string.counterString example 1", @@ -28505,10 +29796,11 @@ "origins": ["example"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-string-counterString-example-1" }, { - "id": "domain-string-fromCharacters-base", + "id": "ui:domain-string-fromCharacters-base", "sourceType": "domain", "command": "string.fromCharacters", "label": "string.fromCharacters", @@ -28530,211 +29822,102 @@ "origins": ["base"], "parityMode": "exact", "exactPreviewParity": true, - "structuralParity": true + "structuralParity": true, + "scenarioId": "domain-string-fromCharacters-base" } ], "uiParityByScenarioId": { - "custom-enum-base": { + "ui:custom-enum-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-enum-pairwise": { + "ui:custom-enum-pairwise": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-literal-base": { + "ui:custom-literal-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-literal-empty": { + "ui:custom-literal-empty": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-regex-base": { + "ui:custom-regex-base": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "custom-regex-empty": { + "ui:custom-regex-empty": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-arrayElement-base": { + "ui:faker-helpers-arrayElement-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-arrayElement-example-1": { + "ui:faker-helpers-fake-base": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-arrayElements-base": { + "ui:faker-helpers-fromRegExp-example-1": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-arrayElements-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fake-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fake-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fromRegExp-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fromRegExp-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-mustache-base": { + "ui:faker-helpers-mustache-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-mustache-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-rangeToNumber-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-rangeToNumber-example-1": { + "ui:faker-helpers-uniqueArray-example-1": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-replaceCreditCardSymbols-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-replaceSymbols-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-shuffle-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-shuffle-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-slugify-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-uniqueArray-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-uniqueArray-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-weightedArrayElement-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-weightedArrayElement-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-airline-seat-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-airline-seat-example-2": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-commerce-price-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-date-birthdate-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-internet-password-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-literal-value-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-literal-value-example-2": { + "ui:faker-helpers-weightedArrayElement-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-1": { + "ui:domain-airline-seat-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-2": { + "ui:domain-commerce-price-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-3": { + "ui:domain-date-birthdate-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-4": { + "ui:domain-internet-password-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-base": { + "ui:domain-literal-value-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-example-1": { + "ui:domain-string-counterString-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-example-2": { + "ui:domain-string-fromCharacters-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true 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 index a53e028d..7b2b5a09 100644 --- 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 @@ -1,205 +1,95 @@ { - "custom-enum-base": { + "ui:custom-enum-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-enum-pairwise": { + "ui:custom-enum-pairwise": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-literal-base": { + "ui:custom-literal-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-literal-empty": { + "ui:custom-literal-empty": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "custom-regex-base": { + "ui:custom-regex-base": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "custom-regex-empty": { + "ui:custom-regex-empty": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-arrayElement-base": { + "ui:faker-helpers-arrayElement-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-arrayElement-example-1": { + "ui:faker-helpers-fake-base": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-arrayElements-base": { + "ui:faker-helpers-fromRegExp-example-1": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-arrayElements-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fake-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fake-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fromRegExp-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-fromRegExp-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-mustache-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-mustache-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-rangeToNumber-base": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "faker-helpers-rangeToNumber-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-replaceCreditCardSymbols-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-replaceSymbols-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-shuffle-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-shuffle-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-slugify-example-1": { + "ui:faker-helpers-mustache-base": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "faker-helpers-uniqueArray-base": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-uniqueArray-example-1": { - "mode": "structural", - "exactPreviewParity": false, - "structuralParity": true - }, - "faker-helpers-weightedArrayElement-base": { + "ui:faker-helpers-uniqueArray-example-1": { "mode": "structural", "exactPreviewParity": false, "structuralParity": true }, - "faker-helpers-weightedArrayElement-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-airline-seat-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-airline-seat-example-2": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-commerce-price-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-date-birthdate-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-internet-password-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-literal-value-example-1": { - "mode": "exact", - "exactPreviewParity": true, - "structuralParity": true - }, - "domain-literal-value-example-2": { + "ui:faker-helpers-weightedArrayElement-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-1": { + "ui:domain-airline-seat-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-2": { + "ui:domain-commerce-price-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-3": { + "ui:domain-date-birthdate-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-counterString-example-4": { + "ui:domain-internet-password-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-base": { + "ui:domain-literal-value-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-example-1": { + "ui:domain-string-counterString-example-1": { "mode": "exact", "exactPreviewParity": true, "structuralParity": true }, - "domain-string-fromCharacters-example-2": { + "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 690f0810..c21885ae 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 @@ -20,6 +20,7 @@ import { readFileSync } from 'node:fs'; import { join } from 'node:path'; import { createGeneratorInteractionHarness } from './support/generator-interaction-harness.js'; import { buildChunkDescriptors, formatCommandsForConsole } from './support/schema-interaction-matrix-report.js'; +import { findScenarioByLogicalId } from './support/scenario-fixture-identity.js'; const fixturePath = join( process.cwd(), @@ -33,9 +34,9 @@ const SMOKE_SCENARIO_IDS = [ 'custom-enum-pairwise', ]; const allScenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; -const scenarios = SMOKE_SCENARIO_IDS.map((scenarioId) => - allScenarios.find((scenario) => scenario.id === scenarioId) -).filter(Boolean); +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'); } 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 index 055d9508..84e03206 100644 --- 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 @@ -2,6 +2,7 @@ import { describe, test, expect } from '@jest/globals'; import { buildChunkDescriptors, formatCommandsForConsole, + getScenarioDisplayOrigin, renderMatrixSummaryMarkdown, } from './support/schema-interaction-matrix-report.js'; @@ -25,6 +26,13 @@ describe('schema interaction matrix report', () => { 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', 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 new file mode 100644 index 00000000..caf01ad2 --- /dev/null +++ b/packages/core-ui/src/tests/interaction/matrix/support/scenario-fixture-identity.js @@ -0,0 +1,10 @@ +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-matrix-report.js b/packages/core-ui/src/tests/interaction/matrix/support/schema-interaction-matrix-report.js index 2dcec913..31470c97 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 @@ -13,6 +13,23 @@ function uniqueSorted(values) { ].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 buildCommandsBySourceType(scenarios) { const rows = new Map(); (Array.isArray(scenarios) ? scenarios : []).forEach((scenario) => { @@ -65,6 +82,10 @@ function formatScenarioRowSummary(row) { 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) { @@ -111,8 +132,8 @@ function buildChunkDescriptors(items, chunkSize) { const descriptors = []; for (let index = 0; index < items.length; index += chunkSize) { const scenarios = items.slice(index, index + chunkSize); - const firstId = scenarios[0]?.id || 'n/a'; - const lastId = scenarios[scenarios.length - 1]?.id || 'n/a'; + const firstId = getScenarioDisplayId(scenarios[0]); + const lastId = getScenarioDisplayId(scenarios[scenarios.length - 1]); descriptors.push({ index: descriptors.length + 1, label: `chunk ${descriptors.length + 1} (${scenarios.length} scenarios) ${firstId} .. ${lastId}`, @@ -127,10 +148,7 @@ function buildSubsetSummary(name, scenarios) { name, count: scenarios.length, bySourceType: countBy(scenarios, (scenario) => scenario.sourceType), - byOrigin: countBy( - scenarios.flatMap((scenario) => scenario.origins || []).map((origin) => ({ origin })), - (item) => item.origin - ), + byOrigin: countBy(scenarios, (scenario) => getScenarioDisplayOrigin(scenario)), commandsBySourceType: buildCommandsBySourceType(scenarios), }; } @@ -200,7 +218,7 @@ function renderSubsetMarkdown(name, scenarios, previewDataByScenarioId = {}, uiP '', ...(structuralOnlyScenarios.length ? structuralOnlyScenarios.map( - (scenario) => `- \`${scenario.id}\` - \`${formatScenarioCommandLabel(scenario)}\`` + (scenario) => `- \`${getScenarioDisplayId(scenario)}\` - \`${formatScenarioCommandLabel(scenario)}\`` ) : ['None']), '', @@ -219,7 +237,7 @@ function renderSubsetMarkdown(name, scenarios, previewDataByScenarioId = {}, uiP ...(scenarios.length ? [ ...scenarios.flatMap((scenario) => [ - `#### \`${scenario.id}\``, + `#### \`${getScenarioDisplayId(scenario)}\``, '', `- Command(s): \`${formatScenarioCommandLabel(scenario)}\``, ...[renderParityModeLine(scenario, uiParityByScenarioId)].filter(Boolean), @@ -266,4 +284,4 @@ function renderMatrixSummaryMarkdown({ ].join('\n'); } -export { buildChunkDescriptors, renderMatrixSummaryMarkdown, formatCommandsForConsole }; +export { buildChunkDescriptors, renderMatrixSummaryMarkdown, formatCommandsForConsole, getScenarioDisplayOrigin }; 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 451dd9bf..2d1b21bd 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 @@ -305,6 +305,8 @@ function buildGenericParamValue({ paramName, paramType, command, sourceType, ind if (lowerName === 'firstname') return '"Ada"'; if (lowerName === 'lastname') return '"Lovelace"'; if (lowerName === 'sex') return '"male"'; + if (lowerName === 'version') return '7'; + if (lowerName === 'refdate') return '1'; if (!typeText.includes('integer') && !typeText.includes('number') && lowerName === 'from') { return '"2020-01-01T00:00:00.000Z"'; } 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 index 889419fe..8c083f9d 100644 --- 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 @@ -2,39 +2,55 @@ 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 uiScenarios = JSON.parse(readFileSync(fixturePath, 'utf8')).uiScenarios; +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'); const parityByScenarioId = await probeUiScenarioParity( - uiScenarios.filter((scenario) => - ['custom-literal-base', 'custom-regex-base', 'faker-helpers-mustache-base'].includes(scenario.id) - ) + [literalScenario, regexScenario, mustacheScenario].filter(Boolean) ); - expect(parityByScenarioId['custom-literal-base']).toEqual({ + expect(parityByScenarioId[literalScenario.id]).toEqual({ mode: 'exact', exactPreviewParity: true, structuralParity: true, }); - expect(parityByScenarioId['custom-regex-base']).toEqual({ + expect(getScenarioLogicalId(literalScenario)).toBe('custom-literal-base'); + expect(parityByScenarioId[regexScenario.id]).toEqual({ mode: 'exact', exactPreviewParity: true, structuralParity: true, }); - expect(parityByScenarioId['faker-helpers-mustache-base']).toEqual({ + 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/utils/faker-command-help-metadata.test.js b/packages/core-ui/src/tests/utils/faker-command-help-metadata.test.js index 234b7de9..2b7437ed 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 @@ -38,6 +38,7 @@ describe('faker command help metadata', () => { const firstName = getFakerCommandHelp('person.firstName'); const nestedPropertyAccess = getFakerCommandHelp('airline.airplane.name'); const imageDataUri = getFakerCommandHelp('image.dataUri'); + const uuid = getFakerCommandHelp('string.uuid'); expect(firstName.params).toEqual( expect.arrayContaining([ @@ -51,6 +52,14 @@ describe('faker command help metadata', () => { ); expect(imageDataUri.example.length).toBeGreaterThan(0); + expect(uuid.summary).toContain('Returns a UUID'); + expect(uuid.params).toEqual( + expect.arrayContaining([ + expect.objectContaining({ name: 'version', optional: true, type: '4 | 7' }), + expect.objectContaining({ name: 'refDate', optional: true, type: 'string | Date | number' }), + ]) + ); + expect(nestedPropertyAccess).toBeDefined(); expect(nestedPropertyAccess.summary.length).toBeGreaterThan(0); expect(Array.isArray(nestedPropertyAccess.params)).toBe(true); diff --git a/packages/core/js/data_generation/faker/fakerCommandRunner.js b/packages/core/js/data_generation/faker/fakerCommandRunner.js index 6f55a191..f1feb1a3 100644 --- a/packages/core/js/data_generation/faker/fakerCommandRunner.js +++ b/packages/core/js/data_generation/faker/fakerCommandRunner.js @@ -4,6 +4,7 @@ import { errorResponse } from '../ruleResponse.js'; import { parseFakerLiteralArguments } from './safeLiteralArgumentParser.js'; +import { isForbiddenFakerCommand } from '../../faker/faker-commands.js'; function parseArgumentsSafely(argString) { if (!argString || argString === '()') { @@ -165,6 +166,12 @@ function runFakerCommandWithFallback(thisCommand, theseArguments, usingFaker, pr } export function runFakerCommand(thisCommand, theseArguments, usingFaker, propertyAccessors = [], options = {}) { + if (isForbiddenFakerCommand(thisCommand)) { + return errorResponse( + `Forbidden faker command: ${thisCommand}. This command is known but not allowed through the API.` + ); + } + try { // First, try the safe approach (direct function calls) return runFakerCommandSafely(thisCommand, theseArguments, usingFaker, propertyAccessors); diff --git a/packages/core/js/domain/domain-custom-autoincrement-keyword-definitions.js b/packages/core/js/domain/domain-custom-autoincrement-keyword-definitions.js index 709347ac..ea5842d9 100644 --- a/packages/core/js/domain/domain-custom-autoincrement-keyword-definitions.js +++ b/packages/core/js/domain/domain-custom-autoincrement-keyword-definitions.js @@ -14,6 +14,7 @@ const DOMAIN_CUSTOM_AUTOINCREMENT_KEYWORD_DEFINITIONS = [ 'autoIncrement.timestamp()', 'autoIncrement.timestamp(start="20/03/1969", step=1, type="days")', 'autoIncrement.timestamp(start="2026-06-12 12:39:23", step=15, type="minutes", outputFormat="yyyy-MM-dd HH:mm:ss")', + 'autoIncrement.timestamp(start="20/03/1969", inputFormat="dd/MM/yyyy", step=1, type="days")', ], exampleReturnValues: ['2026-06-12T12:39:23Z', '2026-06-12T12:39:24Z', '2026-06-12T12:39:25Z'], returnType: 'string', diff --git a/packages/core/js/domain/domain-faker-string-keyword-definitions.js b/packages/core/js/domain/domain-faker-string-keyword-definitions.js index 412bc565..7b2d9955 100644 --- a/packages/core/js/domain/domain-faker-string-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-string-keyword-definitions.js @@ -316,13 +316,27 @@ const DOMAIN_FAKER_STRING_KEYWORD_DEFINITIONS = [ delegate: { type: 'faker', target: 'string.uuid', + argTransform: 'optionsFromHelpArgs', }, help: { - summary: 'Returns a UUID v4 (Universally Unique Identifier).', + summary: 'Returns a UUID (Universally Unique Identifier).', docsUrl: 'https://fakerjs.dev/api/string', example: '0628ae51-7b6c-4d33-9f24-dae19fb245df', returnType: 'string', - args: [], + args: [ + { + name: 'version', + type: '4|7', + required: false, + description: 'The specific UUID version to use.', + }, + { + name: 'refDate', + type: 'string|number|date', + required: false, + description: 'The timestamp to encode into the UUID. This parameter is only relevant for UUID v7.', + }, + ], }, }, ]; diff --git a/packages/core/js/domain/domain-keywords.js b/packages/core/js/domain/domain-keywords.js index c4ef90c9..b9463855 100644 --- a/packages/core/js/domain/domain-keywords.js +++ b/packages/core/js/domain/domain-keywords.js @@ -173,9 +173,11 @@ function isTypeMatch(value, typeName) { } const allowed = raw.split('|').map((entry) => entry.trim()); 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 === '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; if (item === 'regexp' && (value instanceof RegExp || typeof value === 'string')) return true; if (item === 'boolean' && typeof value === 'boolean') return true; if (item === 'array' && Array.isArray(value)) return true; diff --git a/packages/core/js/faker/faker-command-help-metadata.js b/packages/core/js/faker/faker-command-help-metadata.js index d27b89f5..ef32df71 100644 --- a/packages/core/js/faker/faker-command-help-metadata.js +++ b/packages/core/js/faker/faker-command-help-metadata.js @@ -1,5 +1,5 @@ // AUTO-GENERATED FILE. DO NOT EDIT BY HAND. -// Generated by scripts/generate-faker-help.js on 2026-06-17T11:49:31.907Z +// Generated by scripts/generate-faker-help.js on 2026-06-17T13:59:19.041Z const FAKER_COMMAND_HELP_METADATA = { 'datatype.boolean': { @@ -9,7 +9,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { probability?: number; }', - description: '', + description: 'The optional options object or the probability (`[0.00, 1.00]`) of returning `true`.', }, ], docsUrl: 'https://fakerjs.dev/api/datatype', @@ -22,11 +22,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: 'October', + example: 'January', }, 'date.weekday': { summary: 'Returns a random day of the week.', @@ -35,17 +35,17 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: 'Sunday', + example: 'Friday', }, 'date.timeZone': { summary: 'Returns a random IANA time zone relevant to this locale.', params: [], docsUrl: 'https://fakerjs.dev/api/date', - example: 'America/North_Dakota/Beulah', + example: 'America/Eirunepe', }, 'date.anytime': { summary: 'Generates a random date that can be either in the past or in the future.', @@ -54,11 +54,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-09-14T20:59:15.284Z"', + example: '"2026-09-02T05:33:22.911Z"', }, 'date.past': { summary: 'Generates a random date in the past.', @@ -67,11 +67,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2025-09-17T07:19:38.085Z"', + example: '"2026-05-06T00:25:19.398Z"', }, 'date.future': { summary: 'Generates a random date in the future.', @@ -80,11 +80,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2027-03-18T23:18:54.147Z"', + example: '"2027-05-09T20:30:18.671Z"', }, 'date.between': { summary: 'Generates a random date between the given boundaries.', @@ -93,7 +93,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: false, type: 'object', - description: '', + description: 'The options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', @@ -107,7 +107,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: false, type: 'object', - description: '', + description: 'The options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', @@ -120,11 +120,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-06-16T17:41:37.966Z"', + example: '"2026-06-17T01:26:41.116Z"', }, 'date.soon': { summary: 'Generates a random date in the near future.', @@ -133,11 +133,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"2026-06-18T00:55:28.430Z"', + example: '"2026-06-18T06:17:52.501Z"', }, 'date.birthdate': { summary: @@ -147,11 +147,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The options to use to generate the birthdate.', }, ], docsUrl: 'https://fakerjs.dev/api/date', - example: '"1964-06-02T20:33:04.726Z"', + example: '"1989-04-12T22:30:14.738Z"', }, 'helpers.fake': { summary: 'Interpolates faker template placeholders inside a string and returns the rendered result.', @@ -336,7 +336,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/helpers', - example: '6453-8782-0572-6865-8156', + example: '6453-3055-3531-6943-9296', examples: ['helpers.replaceCreditCardSymbols("1234-[4-9]-##!!-L")'], }, 'helpers.shuffle': { @@ -418,7 +418,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/helpers', - example: '1583794333621745', + example: '5248677481580853', examples: ['helpers.rangeToNumber({ min: 1, max: 2 })'], }, 'helpers.multiple': { @@ -448,11 +448,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { min?: number; max?: number; multipleOf?: number; }', - description: '', + description: 'Maximum value or options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '997459534487157', + example: '7150841710724570', }, 'number.float': { summary: @@ -462,11 +462,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { min?: number; max?: number; fractionDigits?: number; multipleOf?: ...', - description: '', + description: 'Upper bound or options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '0.6780317323962697', + example: '0.21833343025858343', }, 'number.binary': { summary: 'Returns a binary string.', @@ -475,11 +475,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '1', + example: '0', }, 'number.octal': { summary: 'Returns an octal string.', @@ -488,7 +488,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', @@ -501,11 +501,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { min?: number; max?: number; }', - description: '', + description: 'Maximum value or options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '3', + example: '9', }, 'number.bigInt': { summary: 'Returns a BigInt number.', @@ -514,11 +514,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'bigint | number | string | boolean | { min?: bigint | number | string | boole...', - description: '', + description: 'Maximum value or options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: '414538009825675', + example: '784863713077920', }, 'number.romanNumeral': { summary: 'Returns a roman numeral in String format.', @@ -527,11 +527,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { min?: number; max?: number; }', - description: '', + description: 'Maximum value or options object.', }, ], docsUrl: 'https://fakerjs.dev/api/number', - example: 'MMMXC', + example: 'CCXCII', }, 'string.fromCharacters': { summary: 'Generates a string from the given characters.', @@ -540,13 +540,14 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'characters', optional: false, type: 'string | ReadonlyArray', - description: '', + description: 'The characters to use for the string. Can be a string or an array of characters.', }, { name: 'length', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: + 'The length of the string to generate either as a fixed length or as a length range. Defaults to `1`.', }, ], docsUrl: 'https://fakerjs.dev/api/string', @@ -559,11 +560,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { length?: number | { min: number; max: number; }; casing?: Casing; ...', - description: '', + description: 'Either the length of the string to generate or the optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: 'i', + example: 'c', }, 'string.alphanumeric': { summary: 'Generating a string consisting of alpha characters and digits.', @@ -572,11 +573,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { length?: number | { min: number; max: number; }; casing?: Casing; ...', - description: '', + description: 'Either the length of the string to generate or the optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: 'r', + example: 'p', }, 'string.binary': { summary: 'Returns a binary string.', @@ -585,7 +586,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', @@ -598,11 +599,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '0o5', + example: '0o3', }, 'string.hexadecimal': { summary: 'Returns a hexadecimal string.', @@ -611,7 +612,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', @@ -624,11 +625,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { length?: number | { min: number; max: number; }; allowLeadingZeros...', - description: '', + description: 'Either the length of the string to generate or the optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '8', + example: '1', }, 'string.sample': { summary: 'Returns a string containing UTF-16 chars between 33 and 125 (`!` to `}`).', @@ -637,24 +638,31 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'length', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: + 'The length of the string (excluding the prefix) to generate either as a fixed length or as a length range. Defaults to `10`.', }, ], docsUrl: 'https://fakerjs.dev/api/string', - example: '(.poO_F}4f', + example: '%.9XN Date: Tue Jun 16 20:09:21...', + 'commit 1e47fefcc8dd034f10cad69ee33336d2e2b4c4dc Author: Tabitha_Carroll60 Date: Tue Jun 16 19:33:21 2026 -050...', }, 'git.commitMessage': { summary: 'Generates a random commit message.', params: [], docsUrl: 'https://fakerjs.dev/api/git', - example: 'compress bluetooth bandwidth', + example: 'bypass virtual panel', }, 'git.commitDate': { summary: 'Generates a date string for a git commit using the same format as `git log`.', @@ -1440,11 +1450,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/git', - example: 'Tue Jun 16 17:05:40 2026 -0700', + example: 'Wed Jun 17 02:30:07 2026 -0300', }, 'git.commitSha': { summary: 'Generates a random commit sha.', @@ -1453,59 +1463,59 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for the commit sha.', }, ], docsUrl: 'https://fakerjs.dev/api/git', - example: '49b639eac70a5bdba4ea953b99ed7eb4cd6439cc', + example: '13f5495ca719a28129d8786af9cfdafd499630ab', }, 'hacker.abbreviation': { summary: 'Returns a random hacker/IT abbreviation.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'TCP', + example: 'IB', }, 'hacker.adjective': { summary: 'Returns a random hacker/IT adjective.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'solid state', + example: 'online', }, 'hacker.noun': { summary: 'Returns a random hacker/IT noun.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'pixel', + example: 'bus', }, 'hacker.verb': { summary: 'Returns a random hacker/IT verb.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'quantify', + example: 'input', }, 'hacker.ingverb': { summary: 'Returns a random hacker/IT verb for continuous actions (en: ing suffix; e.g. hacking).', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'generating', + example: 'hacking', }, 'hacker.phrase': { summary: 'Generates a random hacker/IT phrase.', params: [], docsUrl: 'https://fakerjs.dev/api/hacker', - example: 'The UDP feed is down, quantify the cross-platform panel so we can synthesize the ADP feed!', + example: 'The CLI monitor is down, calculate the virtual card so we can hack the SSD feed!', }, 'image.avatar': { summary: 'Generates a random avatar image url.', params: [], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://avatars.githubusercontent.com/u/93003301', + example: 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/41.jpg', }, 'image.avatarGitHub': { summary: 'Generates a random avatar from GitHub.', params: [], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://avatars.githubusercontent.com/u/15980572', + example: 'https://avatars.githubusercontent.com/u/26821954', }, 'image.personPortrait': { summary: 'Generates a random square portrait (avatar) of a person.', @@ -1514,11 +1524,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for generating an AI avatar.', }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/56.jpg', + example: 'https://cdn.jsdelivr.net/gh/faker-js/assets-person-portrait/female/512/36.jpg', }, 'image.url': { summary: 'Generates a random image url.', @@ -1527,11 +1537,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for generating a URL for an image.', }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://picsum.photos/seed/GVKwWnHf/343/1942', + example: 'https://picsum.photos/seed/rzQTnoguH/3585/118', }, 'image.urlLoremFlickr': { summary: 'Generates a random image url provided via https://loremflickr.com.', @@ -1540,11 +1550,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for generating a URL for an image.', }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://loremflickr.com/2761/789?lock=6357438492435572', + example: 'https://loremflickr.com/3768/1590?lock=1884839181438131', }, 'image.urlPicsumPhotos': { summary: 'Generates a random image url provided via https://picsum.photos.', @@ -1553,11 +1563,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for generating a URL for an image.', }, ], docsUrl: 'https://fakerjs.dev/api/image', - example: 'https://picsum.photos/seed/R3e3QhYbWF/293/1440?grayscale&blur=5', + example: 'https://picsum.photos/seed/oMtfJo/3110/1710?blur=4', }, 'image.dataUri': { summary: 'Generates a random data uri containing an URL-encoded SVG image or a Base64-encoded SVG image.', @@ -1566,24 +1576,24 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options for generating a data uri.', }, ], docsUrl: 'https://fakerjs.dev/api/image', example: - 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgYmFzZVByb2ZpbGU9ImZ1bGwiIHdpZHRoPSIzMTA...', + 'data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20baseProfile%3D%22ful...', }, 'internet.email': { summary: 'Generates data using faker internet email.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Vilma_Romaguera@hotmail.com', + example: 'Grayce_Lockman25@hotmail.com', }, 'internet.exampleEmail': { summary: 'Generates data using faker internet example email.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Conrad46@example.org', + example: 'Ernest.Cummerata@example.com', }, 'internet.username': { summary: "Generates a username using the given person's name as base.", @@ -1592,11 +1602,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Cary.Boehm76', + example: 'Parker51', }, 'internet.displayName': { summary: "Generates a display name using the given person's name as base.", @@ -1605,23 +1615,23 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'Omar_Ferry', + example: 'Edmond.Purdy89', }, 'internet.protocol': { summary: 'Returns a random web protocol. Either `http` or `https`.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'https', + example: 'http', }, 'internet.httpMethod': { summary: 'Returns a random http method.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'DELETE', + example: 'POST', }, 'internet.httpStatusCode': { summary: 'Generates a random HTTP status code.', @@ -1630,11 +1640,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '425', + example: '200', }, 'internet.url': { summary: 'Generates a random http(s) url.', @@ -1643,35 +1653,35 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'https://livid-valley.org/', + example: 'https://messy-lender.info', }, 'internet.domainName': { summary: 'Generates a random domain name.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'quarterly-lashes.net', + example: 'babyish-coil.com', }, 'internet.domainSuffix': { summary: 'Returns a random domain suffix.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'info', + example: 'name', }, 'internet.domainWord': { summary: 'Generates a random domain word.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'fruitful-circumference', + example: 'dense-reboot', }, 'internet.ip': { summary: 'Generates a random IPv4 or IPv6 address.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: '186.200.80.77', + example: '182.79.48.165', }, 'internet.ipv4': { summary: 'Generates a random IPv4 address.', @@ -1680,30 +1690,30 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '84.115.56.19', + example: '64.28.230.183', }, 'internet.ipv6': { summary: 'Generates a random IPv6 address.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'c347:ecda:506f:824f:cdef:6372:c029:acfa', + example: '5dc7:dac3:d94f:49a4:e50a:65a6:6a8c:bed1', }, 'internet.port': { summary: 'Generates a random port number.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: '14657', + example: '16582', }, 'internet.userAgent': { summary: 'Generates a random user agent string.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', example: - 'Mozilla/5.0 (Linux; Android 11; SM-T800) AppleWebKit/538.25 (KHTML, like Gecko) Chrome/83.9.17.12 Mobile Safari/580.6', + 'Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/584.67.7 (KHTML, like Gecko) Version/13_0 Mobile/15E148 Safari/556.28', }, 'internet.mac': { summary: 'Generates a random mac address.', @@ -1712,11 +1722,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '3e:0e:2b:02:dd:a3', + example: 'f2:11:4f:58:7a:fb', }, 'internet.password': { summary: @@ -1726,11 +1736,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'zIuJbDmTtiArT9Z', + example: 'HJ_nOPuIg_ZKf_m', }, 'internet.emoji': { summary: 'Generates a random emoji.', @@ -1739,17 +1749,17 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', - example: '🎋', + example: '🎨', }, 'internet.jwtAlgorithm': { summary: 'Generates a random JWT (JSON Web Token) Algorithm.', params: [], docsUrl: 'https://fakerjs.dev/api/internet', - example: 'HS256', + example: 'HS384', }, 'internet.jwt': { summary: 'Generates a random JWT (JSON Web Token).', @@ -1758,36 +1768,36 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/internet', example: - 'eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2OTQ2NjMsImV4cCI6MTc4MTc0NDQ2MCwibmJmIjoxODAxMTgzMzcyLCJpc3MiOiJUaG9tcHNvbiAtIEVtYXJk...', + 'eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3ODE2NTQ3NDYsImV4cCI6MTc4MTY1NDg2NCwibmJmIjoxODA5ODU2MTE1LCJpc3MiOiJLb2VscGluIC0gU2tpbGVz...', }, 'location.zipCode': { summary: 'Generates data using faker location zip code.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '09774', + example: '59251-3772', }, 'location.city': { summary: 'Generates a random localized city name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Gorczanybury', + example: 'Spring Valley', }, 'location.buildingNumber': { summary: 'Generates a random building number.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '2449', + example: '34703', }, 'location.street': { summary: 'Generates a random localized street name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Izabella Drive', + example: 'Mathilde Brooks', }, 'location.streetAddress': { summary: 'Generates a random localized street address.', @@ -1796,36 +1806,36 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'boolean | { useFullAddress?: boolean; }', - description: '', + description: 'Whether to use a full address or an options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '345 Greenwood Road', + example: '9368 Lancaster Road', }, 'location.secondaryAddress': { summary: 'Generates a random localized secondary address. This refers to a specific location at a given address', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Apt. 766', + example: 'Suite 877', }, 'location.county': { summary: "Returns a random localized county, or other equivalent second-level administrative entity for the locale's country such as a district or department.", params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Adams County', + example: 'Carroll County', }, 'location.country': { summary: 'Returns a random country name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Ireland', + example: 'Tunisia', }, 'location.continent': { summary: 'Returns a random continent name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Asia', + example: 'South America', }, 'location.countryCode': { summary: 'Returns a random ISO_3166-1 country code.', @@ -1834,11 +1844,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "'alpha-2' | 'alpha-3' | 'numeric' | { variant?: 'alpha-2' | 'alpha-3' | 'nume...", - description: '', + description: 'The code to return or an options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'YT', + example: 'JE', }, 'location.state': { summary: @@ -1848,11 +1858,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Kentucky', + example: 'California', }, 'location.latitude': { summary: 'Generates a random latitude.', @@ -1861,11 +1871,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '-86.519', + example: '70.4568', }, 'location.longitude': { summary: 'Generates a random longitude.', @@ -1874,11 +1884,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '83.6923', + example: '-101.4125', }, 'location.direction': { summary: 'Returns a random direction (cardinal and ordinal; northwest, east, etc).', @@ -1887,11 +1897,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Northeast', + example: 'Southwest', }, 'location.cardinalDirection': { summary: 'Returns a random cardinal direction (north, east, south, west).', @@ -1900,11 +1910,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'East', + example: 'North', }, 'location.ordinalDirection': { summary: 'Returns a random ordinal direction (northwest, southeast, etc).', @@ -1913,11 +1923,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Whether to use abbreviated or an options object.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: 'Northwest', + example: 'Southwest', }, 'location.nearbyGPSCoordinate': { summary: 'Generates a random GPS coordinate within the specified radius from the given coordinate.', @@ -1926,23 +1936,23 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The options for generating a GPS coordinate.', }, ], docsUrl: 'https://fakerjs.dev/api/location', - example: '[-45.3198,171.691]', + example: '[77.1985,-142.0806]', }, 'location.timeZone': { summary: 'Returns a random IANA time zone name.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: 'America/Rankin_Inlet', + example: 'Europe/Jersey', }, 'location.language': { summary: 'Returns a random spoken language.', params: [], docsUrl: 'https://fakerjs.dev/api/location', - example: '{"name":"Tatar","alpha2":"tt","alpha3":"tat"}', + example: '{"name":"Finnish","alpha2":"fi","alpha3":"fin"}', }, 'lorem.word': { summary: 'Generates a word of a specified length.', @@ -1951,11 +1961,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'itaque', + example: 'ademptio', }, 'lorem.words': { summary: 'Generates a space separated list of words.', @@ -1964,11 +1974,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'wordCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of words to generate. Defaults to `3`.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'brevis sol explicabo', + example: 'totidem abundans contigo', }, 'lorem.sentence': { summary: 'Generates a space separated list of words beginning with a capital letter and ending with a period.', @@ -1977,11 +1987,12 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'wordCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: + 'The number of words, that should be in the sentence. Defaults to a random number between `3` and `10`.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'Veritatis virgo conitor trepide comes desino.', + example: 'Summisse consectetur trucido cornu alias vobis.', }, 'lorem.slug': { summary: 'Generates a slugified text consisting of the given number of hyphen separated words.', @@ -1990,11 +2001,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'wordCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of words to generate. Defaults to `3`.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'alioqui-uterque-cervus', + example: 'talis-decumbo-defero', }, 'lorem.sentences': { summary: 'Generates the given number of sentences.', @@ -2003,18 +2014,18 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sentenceCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of sentences to generate. Defaults to a random number between `2` and `6`.', }, { name: 'separator', optional: true, type: 'string', - description: '', + description: "The separator to add between sentences. Defaults to `' '`.", }, ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Avaritia comptus templum creber conqueror subnecto cogito esse cribro tristis. Cedo adiuvo absum verus consequuntur terror.', + 'Brevis alias tamen attero validus ante quam accendo. Verbum triumphus tenus deinde censura ager utroque theca clibanus arcesso. Adiuvo us...', }, 'lorem.paragraph': { summary: 'Generates a paragraph with the given number of sentences.', @@ -2023,12 +2034,12 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sentenceCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of sentences to generate. Defaults to `3`.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Verto caste conscendo tepesco. Cicuta sapiente ademptio suscipit tandem tenetur audeo pauci ab usus. Suffoco quo cilicium arcesso acer ab...', + 'Terreo aptus vel cubo. Sponte appositus arca conforto carpo tum communis deficio conduco. Cursim doloribus victoria sui commodo vinitor a...', }, 'lorem.paragraphs': { summary: 'Generates the given number of paragraphs.', @@ -2037,24 +2048,25 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'paragraphCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of paragraphs to generate. Defaults to `3`.', }, { name: 'separator', optional: true, type: 'string', - description: '', + description: "The separator to use. Defaults to `'\\n'`.", }, ], docsUrl: 'https://fakerjs.dev/api/lorem', example: - 'Vapulus cogo votum barba celebrer hic crepusculum. Culpa ea amitto sophismata autus stabilis tyrannus. Colligo adicio universe. Testimoni...', + 'Quia utpote tamdiu summopere laboriosam repellendus ubi certe comptus ipsa. Copia quisquam acsi atrocitas cupressus. Surculus uberrime au...', }, 'lorem.text': { summary: 'Generates a random text based on a random lorem method.', params: [], docsUrl: 'https://fakerjs.dev/api/lorem', - example: 'Tabernus ater harum tondeo tantum sum.', + example: + 'Vilis animi solus vapulus admoveo. Solvo comburo ab accusator urbs angustus coepi vel accedo vallum. Arbor volubilis aptus civitas amet s...', }, 'lorem.lines': { summary: "Generates the given number lines of lorem separated by `'\\n'`.", @@ -2063,36 +2075,35 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'lineCount', optional: true, type: 'number | { min: number; max: number; }', - description: '', + description: 'The number of lines to generate. Defaults to a random number between `1` and `5`.', }, ], docsUrl: 'https://fakerjs.dev/api/lorem', - example: - 'Callide sufficio aggero aufero. Validus subseco deprecator amissio strues omnis. Baiulus coerceo abundans nemo toties supra adfectus cibo...', + example: 'Audacia veritatis condico.', }, 'music.album': { summary: 'Returns a random album name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Stay Dangerous', + example: 'Editorial', }, 'music.artist': { summary: 'Returns a random artist name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Lil Skies', + example: 'Kacey Musgraves', }, 'music.genre': { summary: 'Returns a random music genre.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Worldbeat', + example: 'Arena Rock', }, 'music.songName': { summary: 'Returns a random song name.', params: [], docsUrl: 'https://fakerjs.dev/api/music', - example: 'Sugar Shack', + example: 'Ac-cent-tchu-ate the Positive', }, 'person.firstName': { summary: 'Returns a random first name.', @@ -2101,11 +2112,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sex', optional: true, type: "'female' | 'generic' | 'male'", - description: '', + description: 'The optional sex to use.', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Ila', + example: 'Jeffrey', }, 'person.lastName': { summary: 'Returns a random last name.', @@ -2114,11 +2125,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sex', optional: true, type: "'female' | 'generic' | 'male'", - description: '', + description: 'The optional sex to use.', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Koelpin-Witting', + example: 'Spencer', }, 'person.middleName': { summary: 'Returns a random middle name.', @@ -2127,11 +2138,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sex', optional: true, type: "'female' | 'generic' | 'male'", - description: '', + description: 'The optional sex to use.', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Amber', + example: 'Elliott', }, 'person.fullName': { summary: 'Generates a random full name.', @@ -2140,17 +2151,17 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Sadye Kulas IV', + example: 'Ms. Meda Yundt', }, 'person.gender': { summary: 'Returns a random gender.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Genderflux', + example: 'Cis man', }, 'person.sex': { summary: 'Returns a random sex.', @@ -2165,17 +2176,17 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options object.', }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'female', + example: 'male', }, 'person.bio': { summary: 'Returns a random short biography', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'artist, designer', + example: 'collectivization devotee', }, 'person.prefix': { summary: 'Returns a random person prefix.', @@ -2184,47 +2195,47 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'sex', optional: true, type: "'female' | 'generic' | 'male'", - description: '', + description: "The optional sex to use. Can be either `'female'` or `'male'`.", }, ], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Ms.', + example: 'Mr.', }, 'person.suffix': { summary: 'Returns a random person suffix.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'DDS', + example: 'Sr.', }, 'person.jobTitle': { summary: 'Generates a random job title.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Regional Directives Consultant', + example: 'Chief Research Strategist', }, 'person.jobDescriptor': { summary: 'Generates a random job descriptor.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Chief', + example: 'Senior', }, 'person.jobArea': { summary: 'Generates a random job area.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Metrics', + example: 'Integration', }, 'person.jobType': { summary: 'Generates a random job type.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Producer', + example: 'Liaison', }, 'person.zodiacSign': { summary: 'Returns a random zodiac sign.', params: [], docsUrl: 'https://fakerjs.dev/api/person', - example: 'Leo', + example: 'Taurus', }, 'phone.number': { summary: 'Generates a random phone number.', @@ -2233,35 +2244,35 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'Options object', }, ], docsUrl: 'https://fakerjs.dev/api/phone', - example: '1-807-497-5708 x90610', + example: '(335) 502-1989 x93402', }, 'phone.imei': { summary: 'Generates IMEI number.', params: [], docsUrl: 'https://fakerjs.dev/api/phone', - example: '32-366818-922037-3', + example: '38-776589-992047-5', }, 'science.chemicalElement.symbol': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: 'Ne', + example: 'As', }, 'science.chemicalElement.name': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: 'Chlorine', + example: 'Cerium', }, 'science.chemicalElement.atomicNumber': { summary: 'Returns a random periodic table element.', params: [], docsUrl: 'https://fakerjs.dev/api/science', - example: '75', + example: '48', }, 'science.unit': { summary: 'Returns a random scientific unit.', @@ -2276,11 +2287,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'An options object.', }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'so_whereas_seal.jpe', + example: 'spring.mjs', }, 'system.commonFileName': { summary: 'Returns a random file name with a given extension or a commonly used extension.', @@ -2289,17 +2300,17 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'extension', optional: true, type: 'string', - description: '', + description: 'The file extension to use. Empty string is considered to be not set.', }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'instead_instead_towards.m2a', + example: 'phrase_slope_shirk.wav', }, 'system.mimeType': { summary: 'Returns a mime-type.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'image/bmp', + example: 'application/ld+json', }, 'system.commonFileType': { summary: 'Returns a commonly used file type.', @@ -2311,13 +2322,13 @@ const FAKER_COMMAND_HELP_METADATA = { summary: 'Returns a commonly used file extension.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'wav', + example: 'html', }, 'system.fileType': { summary: 'Returns a file type.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: 'text', + example: 'audio', }, 'system.fileExt': { summary: 'Returns a file extension.', @@ -2326,7 +2337,7 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'mimeType', optional: true, type: 'string', - description: '', + description: 'Valid mime-type', }, ], docsUrl: 'https://fakerjs.dev/api/system', @@ -2336,19 +2347,19 @@ const FAKER_COMMAND_HELP_METADATA = { summary: 'Returns a directory path.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '/dev', + example: '/bin', }, 'system.filePath': { summary: 'Returns a file path.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '/etc/periodic/option_hastily_gosh.pkg', + example: '/home/user/wherever.doc', }, 'system.semver': { summary: 'Returns a semantic version.', params: [], docsUrl: 'https://fakerjs.dev/api/system', - example: '0.15.10', + example: '5.10.1', }, 'system.networkInterface': { summary: 'Returns a random network interface.', @@ -2357,11 +2368,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: 'wwp6s2f3', + example: 'P8wwp3s6f0d4', }, 'system.cron': { summary: 'Returns a random cron expression.', @@ -2370,65 +2381,65 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'object', - description: '', + description: 'The optional options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/system', - example: '* 7 * 8 THU', + example: '* 22 * * 0', }, 'vehicle.vehicle': { summary: 'Returns a random vehicle.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Maserati Mustang', + example: 'NIO ATS', }, 'vehicle.manufacturer': { summary: 'Returns a manufacturer name.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Honda', + example: 'NIO', }, 'vehicle.model': { summary: 'Returns a vehicle model.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: '1', + example: 'Wrangler', }, 'vehicle.type': { summary: 'Returns a vehicle type.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Coupe', + example: 'Passenger Van', }, 'vehicle.fuel': { summary: 'Returns a fuel type.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'Electric', + example: 'Hybrid', }, 'vehicle.vin': { summary: 'Returns a vehicle identification number (VIN).', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'R462W1NTECCK88223', + example: 'CEF1BK8XL1TH38388', }, 'vehicle.color': { summary: 'Returns a vehicle color.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'pink', + example: 'ivory', }, 'vehicle.vrm': { summary: 'Returns a vehicle registration number (Vehicle Registration Mark - VRM)', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'CO16SOB', + example: 'UW77UEA', }, 'vehicle.bicycle': { summary: 'Returns a type of bicycle.', params: [], docsUrl: 'https://fakerjs.dev/api/vehicle', - example: 'BMX Bicycle', + example: 'Touring Bicycle', }, 'word.adjective': { summary: 'Returns a random adjective.', @@ -2437,11 +2448,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'affectionate', + example: 'courteous', }, 'word.adverb': { summary: 'Returns a random adverb.', @@ -2450,11 +2461,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'mysteriously', + example: 'rapidly', }, 'word.conjunction': { summary: 'Returns a random conjunction.', @@ -2463,11 +2474,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'provided', + example: 'for', }, 'word.interjection': { summary: 'Returns a random interjection.', @@ -2476,11 +2487,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'oof', + example: 'drat', }, 'word.noun': { summary: 'Returns a random noun.', @@ -2489,11 +2500,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'wedding', + example: 'scholarship', }, 'word.preposition': { summary: 'Returns a random preposition.', @@ -2502,11 +2513,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'modulo', + example: 'of', }, 'word.verb': { summary: 'Returns a random verb.', @@ -2515,11 +2526,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'bore', + example: 'homeschool', }, 'word.sample': { summary: @@ -2529,11 +2540,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: "number | { length?: number | { min: number; max: number; }; strategy?: 'fail'...", - description: '', + description: 'The expected length of the word or the options to use.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'flight', + example: 'um', }, 'word.words': { summary: 'Returns a random string containing some words separated by spaces.', @@ -2542,11 +2553,11 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'options', optional: true, type: 'number | { count?: number | { min: number; max: number; }; }', - description: '', + description: 'The optional options object or the number of words to return.', }, ], docsUrl: 'https://fakerjs.dev/api/word', - example: 'back yuck pfft', + example: 'instead zowie', }, }; diff --git a/packages/core/src/index.js b/packages/core/src/index.js index 69174af3..aea7dd19 100644 --- a/packages/core/src/index.js +++ b/packages/core/src/index.js @@ -144,6 +144,30 @@ function hasSafeFakerArguments(ruleLine) { return hasSafeFakerLiteralArguments(ruleLine); } +function validateForbiddenFakerRules(textSpec) { + const ruleLines = extractRuleLines(textSpec); + + for (const ruleLine of ruleLines) { + if (!looksLikeFakerRule(ruleLine)) { + continue; + } + + const fakerCommand = getFakerCommandFromRule(ruleLine); + if (getDomainKeywordByAlias(fakerCommand)) { + continue; + } + + if (isForbiddenFakerCommand(fakerCommand)) { + return { + ok: false, + error: `Forbidden faker command: ${fakerCommand}. This command is known but not allowed through the API.`, + }; + } + } + + return { ok: true }; +} + export function validateSafeFakerRules(textSpec) { const ruleLines = extractRuleLines(textSpec); const allowedCommandSet = new Set(getAllowedFakerCommandsAlphabetical().filter((command) => command !== 'RegEx')); @@ -229,6 +253,20 @@ function compileGenerationState({ return { ok: false, errors: [CoreGenerationErrors.invalidTextSpecRequired()], diagnostics: {} }; } + const forbiddenValidation = validateForbiddenFakerRules(textSpec); + if (!forbiddenValidation.ok) { + return { + ok: false, + errors: [ + { + code: 'unsafe_faker_rule', + message: forbiddenValidation.error, + }, + ], + diagnostics: { mode: safeFakerRules ? 'safe' : 'default' }, + }; + } + if (safeFakerRules) { const safeValidation = validateSafeFakerRules(textSpec); if (!safeValidation.ok) { diff --git a/packages/core/src/tests/core-api/generateFromTextSpec.test.js b/packages/core/src/tests/core-api/generateFromTextSpec.test.js index 3b06a7e2..d0630fbf 100644 --- a/packages/core/src/tests/core-api/generateFromTextSpec.test.js +++ b/packages/core/src/tests/core-api/generateFromTextSpec.test.js @@ -274,6 +274,17 @@ test('validateSafeFakerRules rejects forbidden faker commands in safe mode', () expect(result.error).toMatch(/Forbidden faker command in safe mode/); }); +test('generateFromTextSpec rejects forbidden faker commands even without safe mode enabled', () => { + const result = generateFromTextSpec({ + textSpec: 'Value\nhelpers.objectKey({"red":"#f00"})', + rowCount: 1, + outputFormat: 'json', + }); + + expect(result.ok).toBe(false); + expect(result.errors[0]?.message || result.errors[0]).toMatch(/Forbidden faker command/); +}); + 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/unit/domain/domain-keyword-params-usage.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js index e153e764..8820ae3e 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-keyword-params-usage.test.js @@ -51,6 +51,11 @@ function sampleValueForType(type) { const allowed = String(type || '') .split('|') .map((entry) => entry.trim()); + const numericLiterals = allowed.filter((entry) => /^[+-]?\d+(\.\d+)?$/.test(entry)).map((entry) => Number(entry)); + + if (numericLiterals.length === allowed.length && numericLiterals.length > 0) { + return numericLiterals[0]; + } if (allowed.includes('integer')) { return 7; @@ -126,6 +131,7 @@ function sampleValueForKeywordArg(keywordName, argName, typeName) { if (key === 'commerce.upc.prefix') return '01234'; if (argName === 'prefix') return 'pre'; if (argName === 'symbol') return '$'; + if (argName === 'version') return 7; if (argName === 'refDate') return Date.now(); if (argName === 'from') return Date.now() - 86400000; if (argName === 'to') return Date.now() + 86400000; diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-param-invocation-coverage.test-helper.js b/packages/core/src/tests/data_generation/unit/domain/domain-param-invocation-coverage.test-helper.js index d67ed953..89af34de 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-param-invocation-coverage.test-helper.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-param-invocation-coverage.test-helper.js @@ -44,6 +44,7 @@ function sampleValueForKeywordArg(keywordName, argName, typeName) { if (argName === 'from') return 1577836800000; if (argName === 'to') return 1580428800000; if (argName === 'refDate') return 1716110400000; + if (argName === 'version') return 7; if (argName === 'count') return 3; if (argName === 'min') return 1; if (argName === 'max') return 10; diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js index 2ec0d74a..b9fa0b14 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js @@ -181,9 +181,14 @@ describe('string domain keyword execution', () => { expectMeaningfulString(result); }); - test('string.uuid rejects unexpected arguments because docs define none', () => { - expect(() => runWithSeed(1111, 'string.uuid', ['v4'])).toThrow( - 'Too many arguments supplied. Expected 0, received 1.' - ); + test('string.uuid accepts documented version and refDate args', () => { + const uuidV4 = runWithSeed(1111, 'string.uuid', [4]); + const uuidV7A = runWithSeed(1111, 'string.uuid', [7, 1]); + const uuidV7B = runWithSeed(1111, 'string.uuid', [7, 2]); + + expect(uuidV4).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/); + expect(uuidV7A).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/); + expect(uuidV7B).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/); + expect(uuidV7A).not.toBe(uuidV7B); }); }); 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 86fc7c09..074d17e3 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 @@ -342,6 +342,11 @@ function sampleValueForType(type) { const allowed = String(type || '') .split('|') .map((entry) => entry.trim()); + const numericLiterals = allowed.filter((entry) => /^[+-]?\d+(\.\d+)?$/.test(entry)).map((entry) => Number(entry)); + + if (numericLiterals.length === allowed.length && numericLiterals.length > 0) { + return numericLiterals[0]; + } if (allowed.includes('integer')) return 7; if (allowed.includes('number')) return 7; diff --git a/packages/core/src/tests/data_generation/unit/faker/hybridFakerCommandRunner.test.js b/packages/core/src/tests/data_generation/unit/faker/hybridFakerCommandRunner.test.js index 1f2276de..d20c70be 100644 --- a/packages/core/src/tests/data_generation/unit/faker/hybridFakerCommandRunner.test.js +++ b/packages/core/src/tests/data_generation/unit/faker/hybridFakerCommandRunner.test.js @@ -76,6 +76,13 @@ describe('Hybrid Faker Command Runner', () => { expect(result.errorMessage).toContain('Security'); }); + test('should block forbidden helper commands even with simple literal args', () => { + const result = runFakerCommand('helpers.objectKey', '({"red":"#f00"})', faker); + + expect(result.isError).toBe(true); + expect(result.errorMessage).toContain('Forbidden faker command'); + }); + test('should handle property accessors with safe method', () => { const result = runFakerCommand('airline.airplane', '()', faker, ['name']); diff --git a/scripts/generate-faker-help.js b/scripts/generate-faker-help.js index 6e5fafd9..3c0c6c53 100644 --- a/scripts/generate-faker-help.js +++ b/scripts/generate-faker-help.js @@ -204,7 +204,7 @@ function extractParamDocs(jsDocBlock) { .map(sanitizeDocLine); for (const line of lines) { - const paramMatch = line.match(/^@param\s+\{[^}]+\}\s+(\[[^\]]+\]|[A-Za-z_$][\w$\.\-]*)(?:\s+-?\s*)?(.*)$/); + const paramMatch = line.match(/^@param\s+(?:\{[^}]+\}\s+)?(\[[^\]]+\]|[A-Za-z_$][\w$\.\-]*)(?:\s+-?\s*)?(.*)$/); if (!paramMatch) { continue; } @@ -212,7 +212,7 @@ function extractParamDocs(jsDocBlock) { const rawName = paramMatch[1]; const nameWithoutBrackets = rawName.replace(/^\[/, '').replace(/\]$/, ''); const nameWithoutDefault = nameWithoutBrackets.split('=')[0]; - const normalizedName = nameWithoutDefault.split('.')[0].trim(); + const normalizedName = nameWithoutDefault.trim(); if (!normalizedName) { continue; } @@ -432,17 +432,43 @@ function formatExampleValue(value) { } function applyMetadataOverrides(command, metadata, helperOverrides = {}) { + const commandOverrides = { + 'string.uuid': { + summary: 'Returns a UUID (Universally Unique Identifier).', + params: [ + { + name: 'version', + optional: true, + type: '4 | 7', + description: 'The specific UUID version to use.', + }, + { + name: 'refDate', + optional: true, + type: 'string | Date | number', + description: 'The timestamp to encode into the UUID. This parameter is only relevant for UUID v7.', + }, + ], + }, + }; + + const commandOverride = commandOverrides[command]; const override = helperOverrides[command]; - if (!override) { + if (!override && !commandOverride) { return metadata; } + const combinedOverride = { + ...(commandOverride || {}), + ...(override || {}), + }; + return { ...metadata, - summary: override.summary || metadata.summary, - params: Array.isArray(override.params) ? override.params : metadata.params, - example: override.example || metadata.example, - examples: Array.isArray(override.examples) ? override.examples : metadata.examples, + summary: combinedOverride.summary || metadata.summary, + params: Array.isArray(combinedOverride.params) ? combinedOverride.params : metadata.params, + example: combinedOverride.example || metadata.example, + examples: Array.isArray(combinedOverride.examples) ? combinedOverride.examples : metadata.examples, }; } From 75f0a25be78163ccb2908906375df2be639d01f6 Mon Sep 17 00:00:00 2001 From: Alan Richardson Date: Wed, 17 Jun 2026 21:50:32 +0100 Subject: [PATCH 4/4] Tighten uuid domain wrapper behavior --- .../docs/040-test-data/domain/260-string.md | 8 +++++-- .../matrix/ui-scenario-parity-support.test.js | 3 +++ .../utils/faker-command-help-metadata.test.js | 7 ++++++ ...domain-faker-string-keyword-definitions.js | 6 +++-- packages/core/js/domain/domain-keywords.js | 22 +++++++++++++++++++ .../js/faker/faker-command-help-metadata.js | 8 ++++--- .../unit/domain/domain-string-exec.test.js | 11 ++++++++++ .../unit/domain/domainKeywords.test.js | 3 +++ scripts/generate-faker-help.js | 9 ++++++-- 9 files changed, 68 insertions(+), 9 deletions(-) diff --git a/docs-src/docs/040-test-data/domain/260-string.md b/docs-src/docs/040-test-data/domain/260-string.md index 98ec3212..44cedd9d 100644 --- a/docs-src/docs/040-test-data/domain/260-string.md +++ b/docs-src/docs/040-test-data/domain/260-string.md @@ -334,8 +334,8 @@ Returns a UUID (Universally Unique Identifier). | Arg | Type | Required | Description | | --- | --- | --- | --- | -| `version` | `4\|7` | no | The specific UUID version to use. | -| `refDate` | `string\|number\|date` | no | The timestamp to encode into the UUID. This parameter is only relevant for UUID v7. | +| `version` | `4\|7` | no | The specific UUID version to use. If `refDate` is supplied and `version` is omitted, version `7` is used automatically. | +| `refDate` | `string\|number\|date` | no | The timestamp to encode into the UUID. This is only valid for UUID v7. If `refDate` is supplied and `version` is omitted, version `7` is used automatically. Providing `refDate` with version `4` is invalid. | Examples: @@ -343,5 +343,9 @@ Examples: string.uuid() ``` +```txt +string.uuid(refDate=1) +``` + Example return values: - `0628ae51-7b6c-4d33-9f24-dae19fb245df` 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 index 8c083f9d..f57631a8 100644 --- 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 @@ -30,6 +30,9 @@ describe('ui scenario parity support', () => { 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) ); 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 2b7437ed..0d8fd73d 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 @@ -59,6 +59,12 @@ describe('faker command help metadata', () => { expect.objectContaining({ name: 'refDate', optional: true, type: 'string | Date | number' }), ]) ); + expect(uuid.params.find((param) => param.name === 'version')?.description).toContain( + 'version 7 is used automatically' + ); + expect(uuid.params.find((param) => param.name === 'refDate')?.description).toContain( + 'Providing refDate with version 4 is invalid' + ); expect(nestedPropertyAccess).toBeDefined(); expect(nestedPropertyAccess.summary.length).toBeGreaterThan(0); @@ -92,6 +98,7 @@ describe('faker command help metadata', () => { }), ]) ); + expect(rangeToNumber.example).toBe('2'); expect(rangeToNumber.examples).toContain('helpers.rangeToNumber({ min: 1, max: 2 })'); }); }); diff --git a/packages/core/js/domain/domain-faker-string-keyword-definitions.js b/packages/core/js/domain/domain-faker-string-keyword-definitions.js index 7b2d9955..5163385c 100644 --- a/packages/core/js/domain/domain-faker-string-keyword-definitions.js +++ b/packages/core/js/domain/domain-faker-string-keyword-definitions.js @@ -328,13 +328,15 @@ const DOMAIN_FAKER_STRING_KEYWORD_DEFINITIONS = [ name: 'version', type: '4|7', required: false, - description: 'The specific UUID version to use.', + description: + 'The specific UUID version to use. If refDate is supplied and version is omitted, version 7 is used automatically.', }, { name: 'refDate', type: 'string|number|date', required: false, - description: 'The timestamp to encode into the UUID. This parameter is only relevant for UUID v7.', + description: + 'The timestamp to encode into the UUID. This is only valid for UUID v7. If refDate is supplied and version is omitted, version 7 is used automatically. Providing refDate with version 4 is invalid.', }, ], }, diff --git a/packages/core/js/domain/domain-keywords.js b/packages/core/js/domain/domain-keywords.js index b9463855..37efeb46 100644 --- a/packages/core/js/domain/domain-keywords.js +++ b/packages/core/js/domain/domain-keywords.js @@ -199,6 +199,25 @@ function coerceHelpArgValue(spec, value) { return value; } +function normaliseStringUuidOptions(options) { + if (!Object.prototype.hasOwnProperty.call(options, 'refDate')) { + return options; + } + + if (!Object.prototype.hasOwnProperty.call(options, 'version')) { + return { + ...options, + version: 7, + }; + } + + if (options.version === 4) { + throw new Error('Invalid argument combination for string.uuid: refDate requires version 7.'); + } + + return options; +} + function applyFakerArgTransform(keyword, args = []) { const transformName = String(keyword?.delegate?.argTransform || '').trim(); if (!transformName) { @@ -221,6 +240,9 @@ function applyFakerArgTransform(keyword, args = []) { } options[key] = coerceHelpArgValue(argSchema[index], argValue); } + if (keyword?.keyword === 'string.uuid') { + return Object.keys(options).length > 0 ? [normaliseStringUuidOptions(options)] : []; + } return Object.keys(options).length > 0 ? [options] : []; } return args; diff --git a/packages/core/js/faker/faker-command-help-metadata.js b/packages/core/js/faker/faker-command-help-metadata.js index ef32df71..88e78f80 100644 --- a/packages/core/js/faker/faker-command-help-metadata.js +++ b/packages/core/js/faker/faker-command-help-metadata.js @@ -418,7 +418,7 @@ const FAKER_COMMAND_HELP_METADATA = { }, ], docsUrl: 'https://fakerjs.dev/api/helpers', - example: '5248677481580853', + example: '2', examples: ['helpers.rangeToNumber({ min: 1, max: 2 })'], }, 'helpers.multiple': { @@ -652,13 +652,15 @@ const FAKER_COMMAND_HELP_METADATA = { name: 'version', optional: true, type: '4 | 7', - description: 'The specific UUID version to use.', + description: + 'The specific UUID version to use. If refDate is supplied and version is omitted, version 7 is used automatically.', }, { name: 'refDate', optional: true, type: 'string | Date | number', - description: 'The timestamp to encode into the UUID. This parameter is only relevant for UUID v7.', + description: + 'The timestamp to encode into the UUID. This is only valid for UUID v7. If refDate is supplied and version is omitted, version 7 is used automatically. Providing refDate with version 4 is invalid.', }, ], docsUrl: 'https://fakerjs.dev/api/string', diff --git a/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js b/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js index b9fa0b14..c9cb5a8b 100644 --- a/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js +++ b/packages/core/src/tests/data_generation/unit/domain/domain-string-exec.test.js @@ -191,4 +191,15 @@ describe('string domain keyword execution', () => { expect(uuidV7B).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/); expect(uuidV7A).not.toBe(uuidV7B); }); + + test('string.uuid defaults to version 7 when refDate is provided without version', () => { + const uuid = executeDomainKeyword('string.uuid', { faker, args: [undefined, 1] }); + expect(uuid).toMatch(/^[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[0-9a-f]{4}-[0-9a-f]{12}$/); + }); + + test('string.uuid rejects refDate with version 4', () => { + expect(() => executeDomainKeyword('string.uuid', { faker, args: [4, 1] })).toThrow( + 'Invalid argument combination for string.uuid: refDate requires version 7.' + ); + }); }); 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 074d17e3..25b23f13 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 @@ -402,6 +402,9 @@ describe('faker keyword invocation styles', () => { for (const keyword of fakerKeywordsWithArgs) { test(`${keyword.keyword} supports equivalent positional and named argument invocation`, () => { const sampleArgs = keyword.help.args.map((arg) => sampleValueForType(arg.type)); + if (keyword.keyword === 'string.uuid' && sampleArgs.length >= 2) { + sampleArgs[0] = 7; + } const positionalInvocation = `${keyword.keyword}(${sampleArgs.map(valueToInvocationLiteral).join(', ')})`; const namedInvocation = `${keyword.keyword}(${keyword.help.args diff --git a/scripts/generate-faker-help.js b/scripts/generate-faker-help.js index 3c0c6c53..8480a148 100644 --- a/scripts/generate-faker-help.js +++ b/scripts/generate-faker-help.js @@ -433,6 +433,9 @@ function formatExampleValue(value) { function applyMetadataOverrides(command, metadata, helperOverrides = {}) { const commandOverrides = { + 'helpers.rangeToNumber': { + example: '2', + }, 'string.uuid': { summary: 'Returns a UUID (Universally Unique Identifier).', params: [ @@ -440,13 +443,15 @@ function applyMetadataOverrides(command, metadata, helperOverrides = {}) { name: 'version', optional: true, type: '4 | 7', - description: 'The specific UUID version to use.', + description: + 'The specific UUID version to use. If refDate is supplied and version is omitted, version 7 is used automatically.', }, { name: 'refDate', optional: true, type: 'string | Date | number', - description: 'The timestamp to encode into the UUID. This parameter is only relevant for UUID v7.', + description: + 'The timestamp to encode into the UUID. This is only valid for UUID v7. If refDate is supplied and version is omitted, version 7 is used automatically. Providing refDate with version 4 is invalid.', }, ], },