An item created for sale or use.
a random product
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.product.product())
}
Output (formatted as JSON value)
{"Name":"Quartz Teal Scale","Description":"Bravo mirror hundreds his party nobody. Anything wit she from above Chinese those choir toilet as you of other enormously.","Categories":["mobile phones","food and groceries","furniture"],"Price":82.9,"Features":["durable"],"Color":"green","Material":"bronze","UPC":"084020104876"}
Classification grouping similar products based on shared characteristics or functions.
a random product category
Explanation detailing the features and characteristics of a product.
a random product description
import { Faker } from "k6/x/faker"
let faker = new Faker(11)
export default function () {
console.log(faker.product.productDescription())
}
Output (formatted as JSON value)
"Up brace lung anyway then bravo mirror hundreds his party. Person anything wit she from above Chinese those choir toilet as you."
Specific characteristic of a product that distinguishes it from others products.
a random product feature
The substance from which a product is made, influencing its appearance, durability, and properties.
a random product material
Distinctive title or label assigned to a product for identification and marketing.
a random product name
Standardized barcode used for product identification and tracking in retail and commerce.
a random product upc
Generator to generate product related entries.