Domain Test Data
Domain keywords provide a stable AnyWayData abstraction over Faker-backed generators.
Note: helpers.* is intentionally faker-only and not part of the domain abstraction.
Most common Faker usage is mapped to domain methods so schemas can use a curated, stable surface.
Each domain page lists methods, arguments, and executable examples.
Quick Examples
FirstName
person.firstName()
LastName
person.lastName()
Email
internet.email()
Address
location.streetAddress()
Direction
location.cardinalDirection(abbreviated=true)
Date
date.between(from=1577836800000, to=1659312000000)
IBAN
finance.iban(formatted=true, countryCode="GB")
IBANDE
finance.iban(formatted=false, countryCode="DE")
Num
number.int(min=32, max=47)
For faker helper templates and utility functions, use faker helpers: