{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-hardwareorderresponse.json", "title": "HardwareOrderResponse", "description": "HardwareOrderResponse from Verifone Order API", "allOf": [ { "$ref": "#/components/schemas/HardwareOrder" }, { "properties": { "orderId": { "$ref": "#/components/schemas/OrderId" }, "status": { "$ref": "#/components/schemas/OrderStatusEnum" }, "createdUserUid": { "$ref": "#/components/schemas/CreatedUserId" }, "createdBy": { "$ref": "#/components/schemas/UserName" }, "createdDate": { "type": "string", "description": "The created date for this order.", "format": "date-time" }, "modifiedUserUid": { "description": "The assigned User_ID corresponding to the Order Modified By.", "type": "string", "format": "uuid" }, "modifiedBy": { "$ref": "#/components/schemas/UserName" }, "modifiedDate": { "type": "string", "description": "The last modified date for this order.", "format": "date-time" }, "orderType": { "type": "string", "default": "HardwareOrder" }, "internal": { "$ref": "#/components/schemas/InternalAllocatedInformation" } } } ], "required": [ "orderId", "status", "orderType", "merchantCompanyEntityUid" ] }