{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-poiorderresponse.json", "title": "PoiOrderResponse", "description": "PoiOrderResponse from Verifone Order API", "allOf": [ { "$ref": "#/components/schemas/PoiOrder" }, { "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": "POIOrder" }, "entityUid": { "$ref": "#/components/schemas/EntityUid" }, "merchantCompanyEntityUid": { "$ref": "#/components/schemas/MerchantCompanyEntityUid" }, "merchant": { "$ref": "#/components/schemas/MerchantNameWrapper" }, "internal": { "$ref": "#/components/schemas/InternalAllocatedInformation" } } } ], "required": [ "orderId", "status", "orderType" ] }