Order Schema

Schema for representing customer orders

3 of 3

Properties

Property
Type
Description
orderId*
stringUnique order identifier
customer*
objectCustomer information
items*
arrayList of items in the order
totalAmount*
numberTotal order amount
orderDate*
datetimeDate and time when the order was placed
status*
stringCurrent order status (pending, processing, shipped, delivered)

Tree View

Schema Structure

Complete property hierarchy

Order ID (orderId): string
Unique order identifier
Customer (customer)
Customer information
Customer ID (customerId): string
Customer identifier
Customer Name (name): string
Customer full name
Order Items (items): array
List of items in the order
Total Amount (totalAmount): number
Total order amount
Order Date (orderDate): datetime
Date and time when the order was placed
Order Status (status): string
Current order status (pending, processing, shipped, delivered)