address.address1
Generates realistic street address line 1 values consisting of a street number, street name, and street type. Perfect for generating test data, mock addresses, or simulation scenarios requiring physical locations.
Behavior
Generated addresses consist of three components:
- Street number: A random number between 1 and 9999
- Street name: Selected from a list of 50 common street names (Main, Oak, Elm, Park, Maple, Cedar, Pine, Washington, etc.)
- Street type: Selected from 16 standard street types (Street, Avenue, Boulevard, Road, Lane, Drive, Court, Circle, Way, Place, etc.)
Additional characteristics:
- Values are not guaranteed to be unique
- Generation is deterministic based on the simulation seed
- Addresses follow standard US street address formatting
- No special parameters or configuration required
Examples
Basic usage:
{
"type": "address.address1"
}Example outputs:
123 Main Street456 Oak Avenue789 Elm Boulevard2341 Park Road567 Maple Lane8910 Cedar Drive
In an entity definition:
{
"entities": {
"customer": {
"fields": {
"name": {
"type": "person.name"
},
"email": {
"type": "internet.email"
},
"streetAddress": {
"type": "address.address1"
},
"phone": {
"type": "phone.number"
}
}
}
}
}Notes
This schema generates only the street address line (address line 1). For complete mailing addresses, you would typically combine this with additional fields for city, state, and postal code.
The generated addresses are fictional and suitable for testing and simulation purposes. They follow realistic patterns but are not real addresses.