Skip to content

Commit

Permalink
Merge pull request #321 from se-omar/product-descs
Browse files Browse the repository at this point in the history
Product descs
  • Loading branch information
brianvoe committed Jan 16, 2024
2 parents 904850d + d9644ea commit 03cec6d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions product.go
Expand Up @@ -162,7 +162,7 @@ func addProductLookup() {
AddFuncLookup("product", Info{
Display: "Product",
Category: "product",
Description: "Random product info",
Description: "An item created for sale or use",
Example: `{
"name": "olive copper monitor",
"description": "Backwards caused quarterly without week it hungry thing someone him regularly. Whomever this revolt hence from his timing as quantity us these yours.",
Expand All @@ -188,7 +188,7 @@ func addProductLookup() {
AddFuncLookup("productname", Info{
Display: "Product Name",
Category: "product",
Description: "Random product name",
Description: "Distinctive title or label assigned to a product for identification and marketing",
Example: "olive copper monitor",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -199,7 +199,7 @@ func addProductLookup() {
AddFuncLookup("productdescription", Info{
Display: "Product Description",
Category: "product",
Description: "Random product description",
Description: "Explanation detailing the features and characteristics of a product",
Example: "Backwards caused quarterly without week it hungry thing someone him regularly. Whomever this revolt hence from his timing as quantity us these yours.",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -210,7 +210,7 @@ func addProductLookup() {
AddFuncLookup("productcategory", Info{
Display: "Product Category",
Category: "product",
Description: "Random product category",
Description: "Classification grouping similar products based on shared characteristics or functions",
Example: "clothing",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -221,7 +221,7 @@ func addProductLookup() {
AddFuncLookup("productfeature", Info{
Display: "Product Feature",
Category: "product",
Description: "Random product feature",
Description: "Specific characteristic of a product that distinguishes it from others products",
Example: "ultra-lightweight",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -232,7 +232,7 @@ func addProductLookup() {
AddFuncLookup("productmaterial", Info{
Display: "Product Material",
Category: "product",
Description: "Random product material",
Description: "The substance from which a product is made, influencing its appearance, durability, and properties",
Example: "brass",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -243,7 +243,7 @@ func addProductLookup() {
AddFuncLookup("productupc", Info{
Display: "Product UPC",
Category: "product",
Description: "Random product UPC",
Description: "Standardized barcode used for product identification and tracking in retail and commerce",
Example: "012780949980",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 03cec6d

Please sign in to comment.