components.schemas.OrderOut
{
"properties": {
"id": {
"type": "integer",
"title": "Id"
},
"checkout_attempt_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Checkout Attempt Id"
},
"source": {
"type": "string",
"title": "Source"
},
"external_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "External Id"
},
"order_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Order Number"
},
"image_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Image Url"
},
"display_title": {
"type": "string",
"title": "Display Title"
},
"display_image": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Display Image"
},
"retailer": {
"type": "string",
"title": "Retailer"
},
"status": {
"type": "string",
"title": "Status"
},
"subtotal_cents": {
"type": "integer",
"title": "Subtotal Cents"
},
"shipping_cents": {
"type": "integer",
"title": "Shipping Cents"
},
"tax_cents": {
"type": "integer",
"title": "Tax Cents"
},
"total_cents": {
"type": "integer",
"title": "Total Cents"
},
"active_total_cents": {
"type": "integer",
"title": "Active Total Cents"
},
"currency": {
"type": "string",
"title": "Currency"
},
"cancellation_reason": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Cancellation Reason"
},
"cancellation_source": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Cancellation Source"
},
"cancelled_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Cancelled At"
},
"buying_account_email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Buying Account Email"
},
"master_inbox_email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Master Inbox Email"
},
"ship_to_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ship To Name"
},
"shipping_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Shipping Address"
},
"address_signature": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Address Signature"
},
"house_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "House Id"
},
"ordered_at": {
"type": "string",
"format": "date-time",
"title": "Ordered At"
},
"updated_at": {
"type": "string",
"format": "date-time",
"title": "Updated At"
},
"items": {
"items": {
"$ref": "#/components/schemas/OrderItemOut"
},
"type": "array",
"title": "Items"
}
},
"type": "object",
"required": [
"id",
"checkout_attempt_id",
"source",
"external_id",
"order_number",
"image_url",
"display_title",
"display_image",
"retailer",
"status",
"subtotal_cents",
"shipping_cents",
"tax_cents",
"total_cents",
"active_total_cents",
"currency",
"cancellation_reason",
"cancellation_source",
"cancelled_at",
"buying_account_email",
"master_inbox_email",
"ship_to_name",
"shipping_address",
"address_signature",
"house_id",
"ordered_at",
"updated_at",
"items"
],
"title": "OrderOut"
}