CosmicWorks is an open source set of tools and libraries to generate data quickly for your proof of concept or sample applications.
Contains model classes for various items created by other CosmicWorks tools.
💡 The CosmicWorks sample data is partially derived from AdventureWorksLT.
Here's schemas for the data generated by using this tool:
classDiagram
direction RL
class Product {
+string name
+string description
+string category
+string subCategory
+string sku
+List~string~ tags
+decimal price
+integer quantity
+boolean clearance
+string type = "Product"
}
classDiagram
direction RL
Employee "1" --o "1" Name
Employee "1" --o "0..*" Address
class Employee {
+Name name
+List~Address~ addresses
+string company$
+string department$
+string emailAddress
+string phoneNumber
+string territory$
+string type = "Employee"
}
class Name {
+string first
+string last
}
class Address {
+string name
+string street
+string city
+string state
+string zipCode
+string type
}