diff --git a/.changes/next-release/feature-AmazonDynamoDBEnhancedClient-798234c.json b/.changes/next-release/feature-AmazonDynamoDBEnhancedClient-798234c.json new file mode 100644 index 000000000000..06adc54fd049 --- /dev/null +++ b/.changes/next-release/feature-AmazonDynamoDBEnhancedClient-798234c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon DynamoDB Enhanced Client", + "contributor": "", + "description": "Optimize implementation of the `EnhancedDocument#toJson()` and `EnhancedDocument#getJson()`." +} diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DefaultEnhancedDocument.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DefaultEnhancedDocument.java index 1ec72a21b82a..8a9eb68f58f3 100644 --- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DefaultEnhancedDocument.java +++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DefaultEnhancedDocument.java @@ -17,8 +17,6 @@ import static java.util.Collections.unmodifiableList; import static java.util.Collections.unmodifiableMap; -import static software.amazon.awssdk.enhanced.dynamodb.internal.document.JsonStringFormatHelper.addEscapeCharacters; -import static software.amazon.awssdk.enhanced.dynamodb.internal.document.JsonStringFormatHelper.stringValue; import java.util.ArrayList; import java.util.Arrays; @@ -193,7 +191,7 @@ public String getJson(String attributeName) { if (attributeValue == null) { return null; } - return stringValue(JSON_ATTRIBUTE_CONVERTER.transformTo(attributeValue)); + return DocumentJsonSerializer.serializeSingleAttributeValue(attributeValue); } @Override @@ -230,12 +228,7 @@ public String toJson() { if (nonAttributeValueMap.isEmpty()) { return "{}"; } - return attributeValueMap.getValue().entrySet().stream() - .map(entry -> "\"" - + addEscapeCharacters(entry.getKey()) - + "\":" - + stringValue(JSON_ATTRIBUTE_CONVERTER.transformTo(entry.getValue()))) - .collect(Collectors.joining(",", "{", "}")); + return DocumentJsonSerializer.serializeAttributeValueMap(attributeValueMap.getValue()); } @Override diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DocumentJsonSerializer.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DocumentJsonSerializer.java new file mode 100644 index 000000000000..973f4dd34620 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/document/DocumentJsonSerializer.java @@ -0,0 +1,121 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.internal.document; + +import java.io.IOException; +import java.io.OutputStream; +import java.nio.charset.StandardCharsets; +import java.util.Map; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.SdkBytes; +import software.amazon.awssdk.protocols.json.SdkJsonGenerator; +import software.amazon.awssdk.services.dynamodb.model.AttributeValue; +import software.amazon.awssdk.thirdparty.jackson.core.JsonFactory; +import software.amazon.awssdk.thirdparty.jackson.core.JsonGenerator; + +/** + * JSON serializer for DynamoDB Enhanced Client document operations. + */ +@SdkInternalApi +final class DocumentJsonSerializer { + private static final JsonFactory JSON_FACTORY = new JsonFactory() { + @Override + public JsonGenerator createGenerator(OutputStream out) throws IOException { + return super.createGenerator(out).enable(JsonGenerator.Feature.COMBINE_UNICODE_SURROGATES_IN_UTF8); + } + }; + + private DocumentJsonSerializer() { + } + + public static String serializeAttributeValueMap(Map map) { + SdkJsonGenerator jsonGen = new SdkJsonGenerator(JSON_FACTORY, "application/json"); + + jsonGen.writeStartObject(); + map.forEach((key, value) -> { + jsonGen.writeFieldName(key); + serializeAttributeValue(jsonGen, value); + }); + jsonGen.writeEndObject(); + + return new String(jsonGen.getBytes(), StandardCharsets.UTF_8); + } + + public static String serializeSingleAttributeValue(AttributeValue av) { + SdkJsonGenerator jsonGen = new SdkJsonGenerator(JSON_FACTORY, "application/json"); + serializeAttributeValue(jsonGen, av); + return new String(jsonGen.getBytes(), StandardCharsets.UTF_8); + } + + public static void serializeAttributeValue(SdkJsonGenerator generator, AttributeValue av) { + switch (av.type()) { + case NUL: + generator.writeNull(); + break; + case S: + generator.writeValue(av.s()); + break; + case N: + generator.writeNumber(av.n()); + break; + case BOOL: + generator.writeValue(av.bool()); + break; + case B: + generator.writeValue(av.b().asByteBuffer()); + break; + case L: + generator.writeStartArray(); + for (AttributeValue item : av.l()) { + serializeAttributeValue(generator, item); + } + generator.writeEndArray(); + break; + case M: + generator.writeStartObject(); + for (Map.Entry entry : av.m().entrySet()) { + generator.writeFieldName(entry.getKey()); + serializeAttributeValue(generator, entry.getValue()); + } + generator.writeEndObject(); + break; + case SS: + generator.writeStartArray(); + for (String s : av.ss()) { + generator.writeValue(s); + } + generator.writeEndArray(); + break; + case NS: + generator.writeStartArray(); + for (String n : av.ns()) { + generator.writeNumber(n); + } + generator.writeEndArray(); + break; + case BS: + generator.writeStartArray(); + for (SdkBytes b : av.bs()) { + generator.writeValue(b.asByteBuffer()); + } + generator.writeEndArray(); + break; + default: + throw new IllegalArgumentException("Unsupported AttributeValue type: " + av.type()); + } + } + +} \ No newline at end of file diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/DocumentTableSchemaTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/DocumentTableSchemaTest.java index 8eede432dd34..dcafaae6c66d 100644 --- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/DocumentTableSchemaTest.java +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/DocumentTableSchemaTest.java @@ -31,6 +31,7 @@ import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ArgumentsSource; import software.amazon.awssdk.enhanced.dynamodb.AttributeValueType; +import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider; import software.amazon.awssdk.enhanced.dynamodb.EnhancedType; import software.amazon.awssdk.enhanced.dynamodb.TableMetadata; import software.amazon.awssdk.enhanced.dynamodb.converters.document.CustomAttributeForDocumentConverterProvider; diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/EnhancedDocumentTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/EnhancedDocumentTest.java index 6115964b80a4..18852dce08a8 100644 --- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/EnhancedDocumentTest.java +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/document/EnhancedDocumentTest.java @@ -24,8 +24,13 @@ import static software.amazon.awssdk.enhanced.dynamodb.document.EnhancedDocumentTestData.testDataInstance; import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; +import java.io.IOException; import java.math.BigDecimal; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Paths; import java.time.LocalDate; import java.util.ArrayList; import java.util.Arrays; @@ -45,6 +50,7 @@ import org.junit.jupiter.params.provider.ValueSource; import software.amazon.awssdk.core.SdkBytes; import software.amazon.awssdk.core.SdkNumber; +import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider; import software.amazon.awssdk.enhanced.dynamodb.DefaultAttributeConverterProvider; import software.amazon.awssdk.enhanced.dynamodb.EnhancedType; import software.amazon.awssdk.enhanced.dynamodb.converters.document.CustomAttributeForDocumentConverterProvider; @@ -52,6 +58,8 @@ class EnhancedDocumentTest { + ObjectMapper mapper = new ObjectMapper(); + private static Stream escapeDocumentStrings() { char c = 0x0a; return Stream.of( @@ -496,4 +504,213 @@ void error_when_usingClassGetPut_for_CollectionValues(){ () -> EnhancedDocument.builder().build().get("listKey" , List.class)) .withMessage("Values of type List are not supported by this API, please use the getList API instead"); } + + @Test + void toJson_numberFormatting_veryLargeNumbers() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putNumber("longMax", Long.MAX_VALUE) + .putNumber("longMin", Long.MIN_VALUE) + .putNumber("doubleMax", Double.MAX_VALUE) + .putNumber("scientific", 1.23e+100) + .putNumber("manyDecimals", 1.123456789012345) + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"longMax\":9223372036854775807,\"longMin\":-9223372036854775808," + + "\"doubleMax\":1.7976931348623157E308,\"scientific\":1.23E100," + + "\"manyDecimals\":1.123456789012345}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_numberFormatting_trailingZeros() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putNumber("twoPointZero", 2.0) + .putNumber("tenPointZeroZero", 10.00) + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"twoPointZero\":2.0,\"tenPointZeroZero\":10.0}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_stringEscaping_allControlCharacters() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putString("allEscapes", "line1\nline2\ttab\"quote\\backslash\r\f") + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"allEscapes\":\"line1\\nline2\\ttab\\\"quote\\\\backslash\\r\\f\"}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_stringEscaping_forwardSlash() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putString("slash", "path/to/resource") + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"slash\":\"path/to/resource\"}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_emptyString() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putString("empty", "") + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"empty\":\"\"}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_bytesEncoding_emptyBytes() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putBytes("empty", SdkBytes.fromByteArray(new byte[0])) + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"empty\":\"\"}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_listWithAllNulls() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putJson("nullList", "[null,null,null]") + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"nullList\":[null,null,null]}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_mapWithNullValues() throws JsonProcessingException { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putJson("nullValues", "{\"key1\":null,\"key2\":\"value\",\"key3\":null}") + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"nullValues\":{\"key1\":null,\"key2\":\"value\",\"key3\":null}}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_deeplyNestedStructure() throws JsonProcessingException { + String deepJson = "{\"level1\":{\"level2\":{\"level3\":{\"level4\":" + + "{\"level5\":{\"level6\":{\"level7\":{\"value\":\"deep\"}}}}}}}}"; + + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putJson("nested", deepJson) + .build(); + + String json = doc.toJson(); + + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"nested\":" + deepJson + "}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_deeplyNestedArrays() throws JsonProcessingException { + String deepArrayJson = "[[[[[[\"innermost\"]]]]]]"; + + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putJson("nestedArrays", deepArrayJson) + .build(); + + String json = doc.toJson(); + JsonNode actual = mapper.readTree(json); + JsonNode expected = mapper.readTree("{\"nestedArrays\":" + deepArrayJson + "}"); + assertThat(expected).isEqualTo(actual); + } + + @Test + void toJson_emoji() { + + String emoji = "{\"smile\":\"Hello 😀 World\"}"; + + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putJson("emoji", emoji) + .build(); + + String json = doc.toJson(); + assertThat(json).isEqualTo("{\"emoji\":" + emoji + "}"); + } + + @Test + void getJson_returnsRawValue() { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putString("key", "value") + .build(); + + String result = doc.getJson("key"); + assertThat(result).isEqualTo("\"value\""); + } + + @Test + void getJson_nonExistentAttribute() { + EnhancedDocument doc = EnhancedDocument.builder() + .attributeConverterProviders(defaultProvider()) + .putString("exists", "value") + .build(); + + String result = doc.getJson("doesNotExist"); + assertThat(result).isNull(); + } + + @Test + void toJson_fixtureFile_largeData() throws IOException { + String largeDataJson = new String(Files.readAllBytes( + Paths.get("src/test/resources/large_data_input.json"))); + + EnhancedDocument doc = EnhancedDocument.fromJson(largeDataJson); + String actualOutput = doc.toJson(); + + // This fixture file is generated after running legacy toJson() + String goldenOutput = new String(Files.readAllBytes( + Paths.get("src/test/resources/large_data_fixture.json"))); + + assertThat(actualOutput).isEqualTo(goldenOutput); + } + + @Test + void toJson_fixtureFile_binaryEdgeCases() throws IOException { + String inputJson = new String(Files.readAllBytes( + Paths.get("src/test/resources/binary_edge_cases_input.json")), StandardCharsets.UTF_8); + + EnhancedDocument doc = EnhancedDocument.fromJson(inputJson); + String actualOutput = doc.toJson(); + + // This fixture file is generated after running legacy toJson() + String goldenOutput = new String(Files.readAllBytes( + Paths.get("src/test/resources/binary_edge_cases_fixture.json")), StandardCharsets.UTF_8); + + assertThat(actualOutput).isEqualTo(goldenOutput); + } } diff --git a/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_fixture.json b/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_fixture.json new file mode 100644 index 000000000000..9f0c798c9547 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_fixture.json @@ -0,0 +1 @@ +{"empty_bytes":"","one_byte":"AQ==","two_bytes":"AQI=","three_bytes":"AQID","four_bytes":"AQIDBA==","five_bytes":"AQIDBAU=","plus_slash_bytes":"++//","large_blob":"AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXp7fH1+fw==","bs_set":["AQ==","","AgME"],"nested":{"bytes_in_map":"AQIDBA=="},"list_with_bytes":["AQ==","AQI=","AQID"]} \ No newline at end of file diff --git a/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_input.json b/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_input.json new file mode 100644 index 000000000000..75dd6e8092fb --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/resources/binary_edge_cases_input.json @@ -0,0 +1,15 @@ +{ + "empty_bytes": "", + "one_byte": "AQ==", + "two_bytes": "AQI=", + "three_bytes": "AQID", + "four_bytes": "AQIDBA==", + "five_bytes": "AQIDBAU=", + "plus_slash_bytes": "++//", + "large_blob": "AQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXp7fH1+fw==", + "bs_set": ["AQ==", "", "AgME"], + "nested": { + "bytes_in_map": "AQIDBA==" + }, + "list_with_bytes": ["AQ==", "AQI=", "AQID"] +} diff --git a/services-custom/dynamodb-enhanced/src/test/resources/large_data_fixture.json b/services-custom/dynamodb-enhanced/src/test/resources/large_data_fixture.json new file mode 100644 index 000000000000..cb6f8fde6186 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/resources/large_data_fixture.json @@ -0,0 +1 @@ +{"hash_set":"randomUUID_234","dataSet":"Large JSON Example","version":"1.0","timestamp":"2025-09-30T12:05:53.277729","records":[{"id":"rec-00001","createdAt":"2025-04-08T04:11:11Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-70076884","name":"Umbrella Corp","segment":"mid-market","industry":"retail","yearFounded":1952,"contacts":[{"type":"primary","name":"Sarah Wilson","email":"jennifer.davis@mock.co","phone":"+1-912-209-3424"},{"type":"technical","name":"James Johnson","email":"william.moore@demo.net","phone":"+1-974-301-9214"}]},"subscription":{"plan":"custom","startDate":"2023-12-21","renewalDate":"2026-12-21","amount":17636.69,"currency":"EUR","services":[{"id":"svc-427","name":"Security","quantity":7893,"unit":"user","unitPrice":428.2},{"id":"svc-449","name":"Support Plan","quantity":73,"unit":"unit","unitPrice":213.17}]}},{"id":"rec-00002","createdAt":"2022-09-11T21:11:38Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-28364622","name":"Acme Corp","segment":"enterprise","industry":"technology","yearFounded":2018,"contacts":[{"type":"primary","name":"Susan Smith","email":"karen.garcia@fake.tech","phone":"+1-679-619-6165"},{"type":"technical","name":"Sarah Moore","email":"joseph.harris@demo.net","phone":"+1-611-631-7486"}]},"subscription":{"plan":"free","startDate":"2024-06-27","renewalDate":"2026-06-27","amount":44828.85,"currency":"USD","services":[{"id":"svc-322","name":"Security","quantity":2950,"unit":"instance","unitPrice":305.83},{"id":"svc-400","name":"Support Plan","quantity":44,"unit":"package","unitPrice":1746.27}]}},{"id":"rec-00003","createdAt":"2020-03-26T13:16:42Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-54191800","name":"Soylent Corp","segment":"mid-market","industry":"retail","yearFounded":1983,"contacts":[{"type":"primary","name":"James Wilson","email":"patricia.robinson@mock.co","phone":"+1-344-439-2194"},{"type":"technical","name":"Richard Williams","email":"sarah.davis@test.org","phone":"+1-455-734-9918"}]},"subscription":{"plan":"free","startDate":"2022-11-11","renewalDate":"2024-11-11","amount":39652.42,"currency":"AUD","services":[{"id":"svc-519","name":"Cloud Storage","quantity":8699,"unit":"user","unitPrice":132.31},{"id":"svc-930","name":"Consulting","quantity":82,"unit":"session","unitPrice":1487.05}]}},{"id":"rec-00004","createdAt":"2024-07-09T16:41:49Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["returning","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-70271868","name":"Massive Dynamic","segment":"startup","industry":"healthcare","yearFounded":2012,"contacts":[{"type":"primary","name":"James Martin","email":"jennifer.williams@example.com","phone":"+1-335-306-3010"},{"type":"technical","name":"Thomas Williams","email":"patricia.johnson@fake.tech","phone":"+1-534-903-8193"}]},"subscription":{"plan":"custom","startDate":"2023-01-11","renewalDate":"2025-01-11","amount":44770.12,"currency":"GBP","services":[{"id":"svc-706","name":"Security","quantity":5842,"unit":"user","unitPrice":197.81},{"id":"svc-595","name":"Support Plan","quantity":64,"unit":"package","unitPrice":46.85}]}},{"id":"rec-00005","createdAt":"2023-10-22T17:38:35Z","type":"lead","status":"inactive","priority":"medium","metadata":{"source":"api","region":"us-west-2","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-80579834","name":"Acme Corp","segment":"mid-market","industry":"education","yearFounded":1986,"contacts":[{"type":"primary","name":"Nancy Robinson","email":"thomas.harris@mock.co","phone":"+1-678-861-3936"},{"type":"technical","name":"Michael Brown","email":"william.miller@example.com","phone":"+1-322-951-1749"}]},"subscription":{"plan":"basic","startDate":"2021-01-20","renewalDate":"2023-01-20","amount":22972.97,"currency":"GBP","services":[{"id":"svc-405","name":"Security","quantity":1330,"unit":"instance","unitPrice":62.91},{"id":"svc-128","name":"Maintenance","quantity":87,"unit":"subscription","unitPrice":923.25}]}},{"id":"rec-00006","createdAt":"2024-01-28T00:20:57Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"import","region":"sa-east-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-58023552","name":"Aperture Science","segment":"startup","industry":"education","yearFounded":1964,"contacts":[{"type":"primary","name":"Charles Brown","email":"karen.white@fake.tech","phone":"+1-486-503-2582"},{"type":"technical","name":"Charles Martin","email":"susan.martin@test.org","phone":"+1-640-619-1111"}]},"subscription":{"plan":"free","startDate":"2021-01-12","renewalDate":"2023-01-12","amount":40285.91,"currency":"AUD","services":[{"id":"svc-889","name":"Analytics","quantity":3566,"unit":"user","unitPrice":178.13},{"id":"svc-228","name":"Implementation","quantity":76,"unit":"hour","unitPrice":1757.28}]}},{"id":"rec-00007","createdAt":"2022-10-11T07:29:57Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-39449154","name":"Globex","segment":"mid-market","industry":"education","yearFounded":2000,"contacts":[{"type":"primary","name":"Patricia Garcia","email":"mary.anderson@example.com","phone":"+1-758-819-6787"},{"type":"technical","name":"Jennifer Robinson","email":"charles.white@fake.tech","phone":"+1-297-383-6857"}]},"subscription":{"plan":"custom","startDate":"2024-06-08","renewalDate":"2025-06-08","amount":39445.96,"currency":"GBP","services":[{"id":"svc-160","name":"Compute Instances","quantity":7786,"unit":"TB","unitPrice":125.49},{"id":"svc-886","name":"Maintenance","quantity":32,"unit":"subscription","unitPrice":1005.59}]}},{"id":"rec-00008","createdAt":"2024-02-03T13:22:12Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"web","region":"ap-southeast-1","tags":["returning","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-32081886","name":"Soylent Corp","segment":"startup","industry":"manufacturing","yearFounded":1993,"contacts":[{"type":"primary","name":"David Thompson","email":"charles.smith@fake.tech","phone":"+1-523-176-6629"},{"type":"technical","name":"John Miller","email":"john.johnson@test.org","phone":"+1-574-819-9936"}]},"subscription":{"plan":"custom","startDate":"2021-06-08","renewalDate":"2022-06-08","amount":13022.52,"currency":"CAD","services":[{"id":"svc-117","name":"Cloud Storage","quantity":3916,"unit":"user","unitPrice":258.93},{"id":"svc-919","name":"Support Plan","quantity":63,"unit":"package","unitPrice":1675.84}]}},{"id":"rec-00009","createdAt":"2022-02-05T04:17:59Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-38149848","name":"Virtucon","segment":"startup","industry":"education","yearFounded":1965,"contacts":[{"type":"primary","name":"Thomas Garcia","email":"michael.johnson@example.com","phone":"+1-670-314-5503"},{"type":"technical","name":"Joseph Brown","email":"robert.thompson@example.com","phone":"+1-915-974-7880"}]},"subscription":{"plan":"basic","startDate":"2022-12-04","renewalDate":"2025-12-04","amount":5176.52,"currency":"USD","services":[{"id":"svc-908","name":"Security","quantity":7079,"unit":"instance","unitPrice":276.19},{"id":"svc-768","name":"Implementation","quantity":18,"unit":"session","unitPrice":114.25}]}},{"id":"rec-00010","createdAt":"2024-11-21T21:06:41Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"mobile","region":"eu-west-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-15016584","name":"Acme Corp","segment":"startup","industry":"finance","yearFounded":1978,"contacts":[{"type":"primary","name":"Karen Anderson","email":"sarah.white@fake.tech","phone":"+1-679-916-6553"},{"type":"technical","name":"James Wilson","email":"mary.moore@mock.co","phone":"+1-782-382-5171"}]},"subscription":{"plan":"custom","startDate":"2024-09-25","renewalDate":"2026-09-25","amount":26746.13,"currency":"AUD","services":[{"id":"svc-821","name":"Database","quantity":2243,"unit":"user","unitPrice":364.03},{"id":"svc-997","name":"Consulting","quantity":59,"unit":"subscription","unitPrice":367.09}]}},{"id":"rec-00011","createdAt":"2022-04-05T09:37:13Z","type":"customer","status":"active","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-81777961","name":"Weyland-Yutani","segment":"small-business","industry":"manufacturing","yearFounded":2009,"contacts":[{"type":"primary","name":"Jessica Martinez","email":"robert.thompson@demo.net","phone":"+1-633-564-8491"},{"type":"technical","name":"Sarah Thompson","email":"linda.robinson@example.com","phone":"+1-393-181-2938"}]},"subscription":{"plan":"professional","startDate":"2021-04-06","renewalDate":"2024-04-06","amount":26411.57,"currency":"EUR","services":[{"id":"svc-915","name":"Security","quantity":5950,"unit":"instance","unitPrice":316.69},{"id":"svc-638","name":"Implementation","quantity":39,"unit":"session","unitPrice":1206.52}]}},{"id":"rec-00012","createdAt":"2021-11-15T15:04:07Z","type":"customer","status":"active","priority":"high","metadata":{"source":"web","region":"us-west-2","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-36654983","name":"LexCorp","segment":"small-business","industry":"technology","yearFounded":2012,"contacts":[{"type":"primary","name":"Michael Moore","email":"nancy.robinson@demo.net","phone":"+1-408-802-2677"},{"type":"technical","name":"Michael Davis","email":"sarah.martinez@sample.io","phone":"+1-569-462-6357"}]},"subscription":{"plan":"free","startDate":"2021-04-16","renewalDate":"2022-04-16","amount":37071.98,"currency":"EUR","services":[{"id":"svc-788","name":"Cloud Storage","quantity":5092,"unit":"user","unitPrice":365.43},{"id":"svc-310","name":"Training","quantity":11,"unit":"session","unitPrice":1323.88}]}},{"id":"rec-00013","createdAt":"2021-02-07T12:50:23Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-76547029","name":"Nakatomi Trading Corp","segment":"startup","industry":"technology","yearFounded":1952,"contacts":[{"type":"primary","name":"Thomas Wilson","email":"karen.brown@test.org","phone":"+1-366-582-8787"},{"type":"technical","name":"Elizabeth Martinez","email":"charles.martinez@test.org","phone":"+1-498-750-4342"}]},"subscription":{"plan":"professional","startDate":"2023-07-04","renewalDate":"2026-07-04","amount":21247.08,"currency":"EUR","services":[{"id":"svc-553","name":"Database","quantity":6057,"unit":"user","unitPrice":304.73},{"id":"svc-736","name":"Implementation","quantity":81,"unit":"session","unitPrice":1335.25}]}},{"id":"rec-00014","createdAt":"2023-08-25T19:23:19Z","type":"partner","status":"active","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["new","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-83168502","name":"Oscorp","segment":"enterprise","industry":"education","yearFounded":2016,"contacts":[{"type":"primary","name":"Linda Robinson","email":"richard.williams@fake.tech","phone":"+1-838-809-2641"},{"type":"technical","name":"Jennifer Brown","email":"sarah.martin@example.com","phone":"+1-440-880-7682"}]},"subscription":{"plan":"free","startDate":"2020-08-17","renewalDate":"2021-08-17","amount":18984.2,"currency":"AUD","services":[{"id":"svc-320","name":"Cloud Storage","quantity":3411,"unit":"license","unitPrice":56.8},{"id":"svc-445","name":"Maintenance","quantity":77,"unit":"hour","unitPrice":1226.1}]}},{"id":"rec-00015","createdAt":"2022-05-13T08:10:39Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-west-2","tags":["returning","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-88614658","name":"Weyland-Yutani","segment":"startup","industry":"technology","yearFounded":2004,"contacts":[{"type":"primary","name":"Linda Jones","email":"nancy.taylor@sample.io","phone":"+1-211-212-4484"},{"type":"technical","name":"Sarah Miller","email":"jennifer.wilson@sample.io","phone":"+1-438-943-5799"}]},"subscription":{"plan":"free","startDate":"2022-03-03","renewalDate":"2024-03-03","amount":1999.11,"currency":"GBP","services":[{"id":"svc-791","name":"Database","quantity":4275,"unit":"license","unitPrice":182.01},{"id":"svc-180","name":"Implementation","quantity":59,"unit":"session","unitPrice":720.75}]}},{"id":"rec-00016","createdAt":"2020-12-04T01:34:41Z","type":"lead","status":"active","priority":"high","metadata":{"source":"api","region":"sa-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-61209491","name":"Virtucon","segment":"small-business","industry":"finance","yearFounded":2010,"contacts":[{"type":"primary","name":"William Jackson","email":"robert.moore@test.org","phone":"+1-426-997-1567"},{"type":"technical","name":"Susan Thomas","email":"mary.taylor@sample.io","phone":"+1-589-534-7255"}]},"subscription":{"plan":"basic","startDate":"2022-08-09","renewalDate":"2023-08-09","amount":31504.16,"currency":"GBP","services":[{"id":"svc-838","name":"Compute Instances","quantity":4493,"unit":"user","unitPrice":254.28},{"id":"svc-435","name":"Support Plan","quantity":11,"unit":"session","unitPrice":599.02}]}},{"id":"rec-00017","createdAt":"2021-08-06T23:00:30Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-25440159","name":"Virtucon","segment":"mid-market","industry":"retail","yearFounded":1953,"contacts":[{"type":"primary","name":"Susan Williams","email":"susan.thomas@demo.net","phone":"+1-281-979-2151"},{"type":"technical","name":"Thomas Garcia","email":"sarah.davis@sample.io","phone":"+1-345-883-3631"}]},"subscription":{"plan":"basic","startDate":"2022-11-19","renewalDate":"2023-11-19","amount":40990.81,"currency":"AUD","services":[{"id":"svc-783","name":"Cloud Storage","quantity":2572,"unit":"user","unitPrice":283.2},{"id":"svc-908","name":"Consulting","quantity":93,"unit":"hour","unitPrice":1530.95}]}},{"id":"rec-00018","createdAt":"2022-05-13T08:46:42Z","type":"lead","status":"inactive","priority":"low","metadata":{"source":"manual","region":"us-east-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-14407421","name":"Oscorp","segment":"small-business","industry":"technology","yearFounded":1969,"contacts":[{"type":"primary","name":"Robert Smith","email":"patricia.wilson@test.org","phone":"+1-695-505-6900"},{"type":"technical","name":"David Williams","email":"patricia.johnson@mock.co","phone":"+1-698-221-5826"}]},"subscription":{"plan":"professional","startDate":"2020-11-21","renewalDate":"2023-11-21","amount":23597.82,"currency":"USD","services":[{"id":"svc-559","name":"Security","quantity":6496,"unit":"GB","unitPrice":311.0},{"id":"svc-937","name":"Support Plan","quantity":82,"unit":"package","unitPrice":501.79}]}},{"id":"rec-00019","createdAt":"2024-04-18T04:55:38Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"web","region":"sa-east-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-48542985","name":"Stark Industries","segment":"mid-market","industry":"technology","yearFounded":2012,"contacts":[{"type":"primary","name":"Karen Martinez","email":"jessica.wilson@test.org","phone":"+1-610-924-2089"},{"type":"technical","name":"Michael Martin","email":"david.davis@example.com","phone":"+1-259-574-8568"}]},"subscription":{"plan":"free","startDate":"2022-12-12","renewalDate":"2023-12-12","amount":20338.79,"currency":"CAD","services":[{"id":"svc-118","name":"Analytics","quantity":3931,"unit":"user","unitPrice":485.26},{"id":"svc-937","name":"Maintenance","quantity":7,"unit":"subscription","unitPrice":1457.96}]}},{"id":"rec-00020","createdAt":"2020-11-22T03:03:15Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"api","region":"us-east-1","tags":["trial","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-93756742","name":"Acme Corp","segment":"mid-market","industry":"technology","yearFounded":2023,"contacts":[{"type":"primary","name":"Jennifer Brown","email":"mary.wilson@test.org","phone":"+1-709-484-8691"},{"type":"technical","name":"Susan Harris","email":"joseph.thompson@mock.co","phone":"+1-315-802-4369"}]},"subscription":{"plan":"free","startDate":"2024-05-07","renewalDate":"2025-05-07","amount":34001.93,"currency":"GBP","services":[{"id":"svc-386","name":"Database","quantity":2667,"unit":"TB","unitPrice":153.91},{"id":"svc-767","name":"Support Plan","quantity":10,"unit":"unit","unitPrice":1819.59}]}},{"id":"rec-00021","createdAt":"2021-08-05T17:57:12Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-24992172","name":"Acme Corp","segment":"startup","industry":"healthcare","yearFounded":1991,"contacts":[{"type":"primary","name":"Mary Martin","email":"michael.white@demo.net","phone":"+1-838-975-3962"},{"type":"technical","name":"Karen Anderson","email":"jessica.moore@example.com","phone":"+1-617-401-5707"}]},"subscription":{"plan":"professional","startDate":"2021-02-24","renewalDate":"2023-02-24","amount":12879.47,"currency":"AUD","services":[{"id":"svc-897","name":"Compute Instances","quantity":7612,"unit":"GB","unitPrice":160.88},{"id":"svc-516","name":"Training","quantity":47,"unit":"session","unitPrice":1883.64}]}},{"id":"rec-00022","createdAt":"2020-08-15T04:11:58Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"import","region":"eu-west-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-33256966","name":"LexCorp","segment":"startup","industry":"education","yearFounded":1972,"contacts":[{"type":"primary","name":"David Anderson","email":"susan.jackson@fake.tech","phone":"+1-698-954-8687"},{"type":"technical","name":"Patricia Williams","email":"charles.miller@fake.tech","phone":"+1-992-565-1368"}]},"subscription":{"plan":"basic","startDate":"2021-04-07","renewalDate":"2022-04-07","amount":45093.74,"currency":"CAD","services":[{"id":"svc-402","name":"Analytics","quantity":6813,"unit":"TB","unitPrice":32.65},{"id":"svc-539","name":"Implementation","quantity":18,"unit":"subscription","unitPrice":356.41}]}},{"id":"rec-00023","createdAt":"2025-03-24T07:52:45Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-50301956","name":"LexCorp","segment":"small-business","industry":"retail","yearFounded":1986,"contacts":[{"type":"primary","name":"Jessica Thomas","email":"john.johnson@example.com","phone":"+1-804-103-8993"},{"type":"technical","name":"Thomas Jackson","email":"patricia.moore@mock.co","phone":"+1-444-306-2481"}]},"subscription":{"plan":"free","startDate":"2020-02-18","renewalDate":"2023-02-18","amount":36897.13,"currency":"EUR","services":[{"id":"svc-132","name":"Compute Instances","quantity":8962,"unit":"GB","unitPrice":21.22},{"id":"svc-438","name":"Implementation","quantity":32,"unit":"hour","unitPrice":34.21}]}},{"id":"rec-00024","createdAt":"2024-04-18T15:08:00Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["new","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-79505886","name":"Umbrella Corp","segment":"mid-market","industry":"retail","yearFounded":2009,"contacts":[{"type":"primary","name":"Joseph Anderson","email":"joseph.anderson@mock.co","phone":"+1-574-862-1592"},{"type":"technical","name":"David Harris","email":"david.anderson@example.com","phone":"+1-540-856-6930"}]},"subscription":{"plan":"free","startDate":"2024-12-07","renewalDate":"2026-12-07","amount":11681.22,"currency":"GBP","services":[{"id":"svc-291","name":"Security","quantity":7256,"unit":"TB","unitPrice":178.56},{"id":"svc-247","name":"Training","quantity":91,"unit":"package","unitPrice":837.38}]}},{"id":"rec-00025","createdAt":"2024-07-01T04:15:07Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-67409474","name":"Massive Dynamic","segment":"small-business","industry":"education","yearFounded":1951,"contacts":[{"type":"primary","name":"Michael Taylor","email":"jennifer.miller@test.org","phone":"+1-265-368-3310"},{"type":"technical","name":"John Jackson","email":"linda.robinson@test.org","phone":"+1-267-245-8659"}]},"subscription":{"plan":"enterprise","startDate":"2021-02-22","renewalDate":"2024-02-22","amount":6940.9,"currency":"CAD","services":[{"id":"svc-901","name":"Compute Instances","quantity":6909,"unit":"license","unitPrice":227.51},{"id":"svc-862","name":"Training","quantity":89,"unit":"session","unitPrice":1055.5}]}},{"id":"rec-00026","createdAt":"2023-03-15T06:02:53Z","type":"partner","status":"inactive","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["new","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-49134371","name":"Aperture Science","segment":"mid-market","industry":"healthcare","yearFounded":2008,"contacts":[{"type":"primary","name":"William Harris","email":"john.davis@example.com","phone":"+1-418-356-7639"},{"type":"technical","name":"Mary Jones","email":"david.thomas@example.com","phone":"+1-825-560-8093"}]},"subscription":{"plan":"enterprise","startDate":"2023-06-25","renewalDate":"2026-06-25","amount":20731.41,"currency":"AUD","services":[{"id":"svc-845","name":"Database","quantity":1221,"unit":"TB","unitPrice":330.5},{"id":"svc-855","name":"Consulting","quantity":81,"unit":"unit","unitPrice":878.09}]}},{"id":"rec-00027","createdAt":"2024-07-15T17:59:26Z","type":"lead","status":"inactive","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-85120899","name":"Initech","segment":"startup","industry":"technology","yearFounded":1971,"contacts":[{"type":"primary","name":"Susan Smith","email":"michael.martinez@demo.net","phone":"+1-480-339-3538"},{"type":"technical","name":"Elizabeth Martinez","email":"jennifer.martinez@sample.io","phone":"+1-893-774-1670"}]},"subscription":{"plan":"professional","startDate":"2024-02-24","renewalDate":"2027-02-24","amount":35934.32,"currency":"AUD","services":[{"id":"svc-701","name":"Security","quantity":8255,"unit":"user","unitPrice":263.27},{"id":"svc-431","name":"Consulting","quantity":4,"unit":"subscription","unitPrice":1017.4}]}},{"id":"rec-00028","createdAt":"2025-08-02T22:23:53Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"eu-west-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-71519544","name":"Umbrella Corp","segment":"enterprise","industry":"retail","yearFounded":1977,"contacts":[{"type":"primary","name":"Jessica Smith","email":"nancy.thomas@mock.co","phone":"+1-366-171-5838"},{"type":"technical","name":"Patricia Moore","email":"mary.williams@mock.co","phone":"+1-599-903-8527"}]},"subscription":{"plan":"professional","startDate":"2021-05-28","renewalDate":"2022-05-28","amount":48776.2,"currency":"AUD","services":[{"id":"svc-751","name":"Analytics","quantity":9646,"unit":"TB","unitPrice":47.77},{"id":"svc-681","name":"Training","quantity":69,"unit":"session","unitPrice":1642.49}]}},{"id":"rec-00029","createdAt":"2025-07-28T21:19:01Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-25650992","name":"Wayne Enterprises","segment":"small-business","industry":"manufacturing","yearFounded":2019,"contacts":[{"type":"primary","name":"Michael Smith","email":"richard.thomas@sample.io","phone":"+1-304-848-6999"},{"type":"technical","name":"Joseph Williams","email":"jennifer.johnson@sample.io","phone":"+1-647-138-9790"}]},"subscription":{"plan":"free","startDate":"2022-12-16","renewalDate":"2025-12-16","amount":39856.5,"currency":"CAD","services":[{"id":"svc-352","name":"Analytics","quantity":3769,"unit":"GB","unitPrice":267.73},{"id":"svc-216","name":"Support Plan","quantity":6,"unit":"unit","unitPrice":1790.84}]}},{"id":"rec-00030","createdAt":"2022-04-02T03:43:22Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-76867830","name":"LexCorp","segment":"small-business","industry":"education","yearFounded":1951,"contacts":[{"type":"primary","name":"Robert Harris","email":"linda.thomas@demo.net","phone":"+1-431-348-9282"},{"type":"technical","name":"Thomas Thompson","email":"james.thomas@test.org","phone":"+1-298-905-8120"}]},"subscription":{"plan":"professional","startDate":"2020-02-01","renewalDate":"2023-02-01","amount":34471.27,"currency":"GBP","services":[{"id":"svc-633","name":"Analytics","quantity":5718,"unit":"user","unitPrice":350.94},{"id":"svc-774","name":"Implementation","quantity":28,"unit":"hour","unitPrice":845.63}]}},{"id":"rec-00031","createdAt":"2020-02-09T19:33:24Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["returning","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-13706198","name":"Aperture Science","segment":"startup","industry":"finance","yearFounded":1993,"contacts":[{"type":"primary","name":"Robert Taylor","email":"michael.johnson@fake.tech","phone":"+1-200-352-1195"},{"type":"technical","name":"Thomas White","email":"joseph.miller@demo.net","phone":"+1-606-211-4371"}]},"subscription":{"plan":"professional","startDate":"2024-01-28","renewalDate":"2025-01-28","amount":19260.16,"currency":"USD","services":[{"id":"svc-430","name":"Analytics","quantity":6155,"unit":"instance","unitPrice":277.14},{"id":"svc-440","name":"Support Plan","quantity":92,"unit":"session","unitPrice":966.84}]}},{"id":"rec-00032","createdAt":"2025-02-12T06:53:12Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-28389993","name":"Virtucon","segment":"enterprise","industry":"education","yearFounded":2013,"contacts":[{"type":"primary","name":"Sarah Garcia","email":"michael.thomas@test.org","phone":"+1-430-168-6663"},{"type":"technical","name":"Michael Harris","email":"sarah.anderson@example.com","phone":"+1-737-608-9786"}]},"subscription":{"plan":"enterprise","startDate":"2021-07-17","renewalDate":"2023-07-17","amount":35764.98,"currency":"USD","services":[{"id":"svc-823","name":"Cloud Storage","quantity":752,"unit":"user","unitPrice":328.82},{"id":"svc-953","name":"Support Plan","quantity":65,"unit":"hour","unitPrice":127.49}]}},{"id":"rec-00033","createdAt":"2025-04-12T05:37:10Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"eu-west-1","tags":["trial","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-14053749","name":"Aperture Science","segment":"startup","industry":"manufacturing","yearFounded":2018,"contacts":[{"type":"primary","name":"Jennifer Martin","email":"james.anderson@mock.co","phone":"+1-348-958-1736"},{"type":"technical","name":"Joseph Martin","email":"william.anderson@demo.net","phone":"+1-945-880-1324"}]},"subscription":{"plan":"free","startDate":"2022-12-12","renewalDate":"2023-12-12","amount":29898.13,"currency":"USD","services":[{"id":"svc-632","name":"Analytics","quantity":8266,"unit":"instance","unitPrice":188.81},{"id":"svc-155","name":"Implementation","quantity":50,"unit":"subscription","unitPrice":77.69}]}},{"id":"rec-00034","createdAt":"2024-02-17T22:02:15Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-35198933","name":"Umbrella Corp","segment":"mid-market","industry":"finance","yearFounded":1996,"contacts":[{"type":"primary","name":"Nancy Smith","email":"robert.anderson@example.com","phone":"+1-292-861-1308"},{"type":"technical","name":"Nancy Smith","email":"patricia.garcia@fake.tech","phone":"+1-435-934-1413"}]},"subscription":{"plan":"free","startDate":"2023-04-13","renewalDate":"2026-04-13","amount":38687.44,"currency":"GBP","services":[{"id":"svc-784","name":"Security","quantity":8449,"unit":"user","unitPrice":276.44},{"id":"svc-641","name":"Implementation","quantity":56,"unit":"session","unitPrice":1157.26}]}},{"id":"rec-00035","createdAt":"2023-01-09T19:35:54Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-62939492","name":"Nakatomi Trading Corp","segment":"startup","industry":"healthcare","yearFounded":2010,"contacts":[{"type":"primary","name":"Charles Jackson","email":"nancy.anderson@sample.io","phone":"+1-621-556-6659"},{"type":"technical","name":"William Jones","email":"jennifer.williams@mock.co","phone":"+1-616-399-7450"}]},"subscription":{"plan":"basic","startDate":"2023-05-18","renewalDate":"2024-05-18","amount":1323.37,"currency":"EUR","services":[{"id":"svc-331","name":"Analytics","quantity":3079,"unit":"instance","unitPrice":133.52},{"id":"svc-281","name":"Consulting","quantity":47,"unit":"package","unitPrice":1354.49}]}},{"id":"rec-00036","createdAt":"2020-09-10T05:58:28Z","type":"customer","status":"active","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["trial","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-55882893","name":"Weyland-Yutani","segment":"small-business","industry":"healthcare","yearFounded":2013,"contacts":[{"type":"primary","name":"Michael Harris","email":"sarah.jackson@fake.tech","phone":"+1-923-749-8195"},{"type":"technical","name":"Elizabeth Thomas","email":"karen.miller@fake.tech","phone":"+1-985-819-2967"}]},"subscription":{"plan":"free","startDate":"2022-02-26","renewalDate":"2025-02-26","amount":4809.55,"currency":"GBP","services":[{"id":"svc-737","name":"Database","quantity":1913,"unit":"instance","unitPrice":11.9},{"id":"svc-928","name":"Support Plan","quantity":19,"unit":"package","unitPrice":1433.26}]}},{"id":"rec-00037","createdAt":"2023-01-13T03:37:38Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"web","region":"us-east-1","tags":["new","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-34386314","name":"Weyland-Yutani","segment":"enterprise","industry":"technology","yearFounded":1960,"contacts":[{"type":"primary","name":"Nancy Thomas","email":"thomas.williams@mock.co","phone":"+1-588-743-1252"},{"type":"technical","name":"Karen Garcia","email":"susan.thomas@mock.co","phone":"+1-602-994-1669"}]},"subscription":{"plan":"enterprise","startDate":"2021-02-16","renewalDate":"2023-02-16","amount":33488.0,"currency":"AUD","services":[{"id":"svc-233","name":"Analytics","quantity":5044,"unit":"instance","unitPrice":176.15},{"id":"svc-544","name":"Training","quantity":51,"unit":"package","unitPrice":1970.0}]}},{"id":"rec-00038","createdAt":"2025-07-19T18:23:27Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"api","region":"us-west-2","tags":["new","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-68804565","name":"Acme Corp","segment":"startup","industry":"education","yearFounded":1975,"contacts":[{"type":"primary","name":"Jessica Moore","email":"sarah.garcia@example.com","phone":"+1-430-379-7711"},{"type":"technical","name":"Elizabeth White","email":"patricia.martinez@sample.io","phone":"+1-986-796-3228"}]},"subscription":{"plan":"basic","startDate":"2024-10-21","renewalDate":"2027-10-21","amount":32821.12,"currency":"EUR","services":[{"id":"svc-341","name":"Security","quantity":102,"unit":"instance","unitPrice":468.12},{"id":"svc-813","name":"Implementation","quantity":28,"unit":"package","unitPrice":331.85}]}},{"id":"rec-00039","createdAt":"2022-03-04T21:55:03Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"manual","region":"ap-southeast-1","tags":["vip","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-57103067","name":"Globex","segment":"small-business","industry":"education","yearFounded":2000,"contacts":[{"type":"primary","name":"William Robinson","email":"sarah.miller@sample.io","phone":"+1-734-314-9328"},{"type":"technical","name":"Joseph Jackson","email":"david.davis@fake.tech","phone":"+1-720-337-7122"}]},"subscription":{"plan":"enterprise","startDate":"2022-03-21","renewalDate":"2025-03-21","amount":30910.02,"currency":"AUD","services":[{"id":"svc-105","name":"Cloud Storage","quantity":8041,"unit":"license","unitPrice":445.63},{"id":"svc-402","name":"Implementation","quantity":100,"unit":"session","unitPrice":803.4}]}},{"id":"rec-00040","createdAt":"2024-04-15T23:57:32Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"mobile","region":"us-east-1","tags":["trial","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-48301178","name":"Acme Corp","segment":"small-business","industry":"manufacturing","yearFounded":2005,"contacts":[{"type":"primary","name":"Richard Robinson","email":"robert.martinez@mock.co","phone":"+1-731-740-5622"},{"type":"technical","name":"John Johnson","email":"robert.miller@mock.co","phone":"+1-230-543-1510"}]},"subscription":{"plan":"professional","startDate":"2024-12-03","renewalDate":"2025-12-03","amount":14640.95,"currency":"GBP","services":[{"id":"svc-161","name":"Compute Instances","quantity":6179,"unit":"user","unitPrice":361.89},{"id":"svc-292","name":"Training","quantity":92,"unit":"package","unitPrice":1687.8}]}},{"id":"rec-00041","createdAt":"2023-05-10T03:17:25Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-10177514","name":"Stark Industries","segment":"startup","industry":"healthcare","yearFounded":1976,"contacts":[{"type":"primary","name":"Charles Martin","email":"james.williams@test.org","phone":"+1-860-385-7637"},{"type":"technical","name":"Charles Anderson","email":"nancy.anderson@demo.net","phone":"+1-292-215-7585"}]},"subscription":{"plan":"enterprise","startDate":"2020-06-18","renewalDate":"2022-06-18","amount":23263.0,"currency":"GBP","services":[{"id":"svc-978","name":"Analytics","quantity":2774,"unit":"user","unitPrice":330.95},{"id":"svc-834","name":"Maintenance","quantity":90,"unit":"package","unitPrice":1567.97}]}},{"id":"rec-00042","createdAt":"2021-01-09T12:52:03Z","type":"customer","status":"active","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-90686181","name":"Cyberdyne Systems","segment":"startup","industry":"manufacturing","yearFounded":2010,"contacts":[{"type":"primary","name":"Thomas Williams","email":"patricia.williams@mock.co","phone":"+1-777-544-8143"},{"type":"technical","name":"Nancy Martin","email":"james.jones@sample.io","phone":"+1-590-814-7003"}]},"subscription":{"plan":"custom","startDate":"2024-04-04","renewalDate":"2026-04-04","amount":3615.35,"currency":"USD","services":[{"id":"svc-398","name":"Analytics","quantity":3218,"unit":"instance","unitPrice":97.46},{"id":"svc-900","name":"Training","quantity":16,"unit":"hour","unitPrice":912.73}]}},{"id":"rec-00043","createdAt":"2025-03-22T01:11:31Z","type":"customer","status":"active","priority":"low","metadata":{"source":"import","region":"ap-southeast-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-53738002","name":"Initech","segment":"enterprise","industry":"finance","yearFounded":1987,"contacts":[{"type":"primary","name":"William Moore","email":"elizabeth.garcia@demo.net","phone":"+1-715-775-8757"},{"type":"technical","name":"William Williams","email":"john.smith@fake.tech","phone":"+1-239-405-2198"}]},"subscription":{"plan":"professional","startDate":"2024-04-04","renewalDate":"2026-04-04","amount":14907.82,"currency":"GBP","services":[{"id":"svc-681","name":"Compute Instances","quantity":4579,"unit":"license","unitPrice":194.49},{"id":"svc-409","name":"Training","quantity":99,"unit":"hour","unitPrice":1096.28}]}},{"id":"rec-00044","createdAt":"2025-12-12T16:15:23Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"manual","region":"ap-southeast-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-39410024","name":"Cyberdyne Systems","segment":"mid-market","industry":"retail","yearFounded":1996,"contacts":[{"type":"primary","name":"David Brown","email":"elizabeth.wilson@fake.tech","phone":"+1-923-559-2375"},{"type":"technical","name":"John Thomas","email":"mary.moore@fake.tech","phone":"+1-888-161-2680"}]},"subscription":{"plan":"free","startDate":"2021-05-06","renewalDate":"2022-05-06","amount":38131.9,"currency":"USD","services":[{"id":"svc-365","name":"Analytics","quantity":2856,"unit":"user","unitPrice":174.04},{"id":"svc-868","name":"Implementation","quantity":92,"unit":"session","unitPrice":1752.46}]}},{"id":"rec-00045","createdAt":"2021-06-04T06:11:25Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["trial","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-68824251","name":"Cyberdyne Systems","segment":"small-business","industry":"technology","yearFounded":2019,"contacts":[{"type":"primary","name":"David Williams","email":"robert.taylor@sample.io","phone":"+1-768-399-4964"},{"type":"technical","name":"Elizabeth Harris","email":"william.jackson@test.org","phone":"+1-743-402-2402"}]},"subscription":{"plan":"custom","startDate":"2021-01-04","renewalDate":"2024-01-04","amount":30450.81,"currency":"AUD","services":[{"id":"svc-431","name":"Analytics","quantity":6523,"unit":"TB","unitPrice":24.57},{"id":"svc-709","name":"Support Plan","quantity":2,"unit":"session","unitPrice":801.13}]}},{"id":"rec-00046","createdAt":"2022-11-25T00:32:34Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"api","region":"us-west-2","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-26142993","name":"Wayne Enterprises","segment":"enterprise","industry":"finance","yearFounded":2017,"contacts":[{"type":"primary","name":"James Miller","email":"nancy.thompson@sample.io","phone":"+1-492-339-6612"},{"type":"technical","name":"Joseph Miller","email":"linda.white@test.org","phone":"+1-263-775-3594"}]},"subscription":{"plan":"professional","startDate":"2021-06-08","renewalDate":"2023-06-08","amount":9189.67,"currency":"GBP","services":[{"id":"svc-277","name":"Security","quantity":4352,"unit":"user","unitPrice":137.67},{"id":"svc-377","name":"Training","quantity":22,"unit":"subscription","unitPrice":58.03}]}},{"id":"rec-00047","createdAt":"2025-04-22T04:21:59Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-42850140","name":"Weyland-Yutani","segment":"mid-market","industry":"finance","yearFounded":1952,"contacts":[{"type":"primary","name":"James Garcia","email":"joseph.brown@mock.co","phone":"+1-977-229-6403"},{"type":"technical","name":"Linda Williams","email":"thomas.anderson@example.com","phone":"+1-918-778-5957"}]},"subscription":{"plan":"professional","startDate":"2023-07-11","renewalDate":"2026-07-11","amount":6815.16,"currency":"GBP","services":[{"id":"svc-377","name":"Security","quantity":2456,"unit":"GB","unitPrice":139.64},{"id":"svc-166","name":"Consulting","quantity":89,"unit":"package","unitPrice":1852.73}]}},{"id":"rec-00048","createdAt":"2022-05-10T20:46:50Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["returning","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-65955720","name":"Massive Dynamic","segment":"startup","industry":"education","yearFounded":1967,"contacts":[{"type":"primary","name":"Mary Williams","email":"patricia.white@demo.net","phone":"+1-383-930-4589"},{"type":"technical","name":"Susan Wilson","email":"charles.jones@example.com","phone":"+1-752-822-5590"}]},"subscription":{"plan":"basic","startDate":"2023-06-02","renewalDate":"2026-06-02","amount":29757.31,"currency":"GBP","services":[{"id":"svc-826","name":"Compute Instances","quantity":2807,"unit":"user","unitPrice":186.61},{"id":"svc-991","name":"Training","quantity":59,"unit":"unit","unitPrice":686.45}]}},{"id":"rec-00049","createdAt":"2022-01-25T02:08:23Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"import","region":"ap-southeast-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-96519192","name":"Initech","segment":"mid-market","industry":"finance","yearFounded":2010,"contacts":[{"type":"primary","name":"William Robinson","email":"mary.white@test.org","phone":"+1-975-726-3811"},{"type":"technical","name":"Robert Williams","email":"sarah.moore@example.com","phone":"+1-665-728-4665"}]},"subscription":{"plan":"free","startDate":"2022-04-03","renewalDate":"2025-04-03","amount":20932.02,"currency":"CAD","services":[{"id":"svc-201","name":"Analytics","quantity":613,"unit":"GB","unitPrice":354.53},{"id":"svc-455","name":"Implementation","quantity":100,"unit":"subscription","unitPrice":472.27}]}},{"id":"rec-00050","createdAt":"2025-04-02T00:46:38Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["trial","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-37512572","name":"Acme Corp","segment":"small-business","industry":"manufacturing","yearFounded":1984,"contacts":[{"type":"primary","name":"Jennifer White","email":"john.robinson@test.org","phone":"+1-354-412-3267"},{"type":"technical","name":"Thomas Wilson","email":"michael.miller@test.org","phone":"+1-619-415-2929"}]},"subscription":{"plan":"enterprise","startDate":"2022-09-06","renewalDate":"2023-09-06","amount":5333.07,"currency":"AUD","services":[{"id":"svc-610","name":"Cloud Storage","quantity":9142,"unit":"instance","unitPrice":26.18},{"id":"svc-309","name":"Maintenance","quantity":94,"unit":"subscription","unitPrice":1073.22}]}},{"id":"rec-00051","createdAt":"2022-06-16T19:33:53Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["returning","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-11328097","name":"Stark Industries","segment":"enterprise","industry":"education","yearFounded":2018,"contacts":[{"type":"primary","name":"Karen Thomas","email":"linda.miller@fake.tech","phone":"+1-785-734-1065"},{"type":"technical","name":"Joseph Miller","email":"michael.davis@fake.tech","phone":"+1-748-971-5612"}]},"subscription":{"plan":"basic","startDate":"2020-10-08","renewalDate":"2022-10-08","amount":32587.92,"currency":"USD","services":[{"id":"svc-725","name":"Compute Instances","quantity":7693,"unit":"TB","unitPrice":138.49},{"id":"svc-187","name":"Implementation","quantity":72,"unit":"hour","unitPrice":109.55}]}},{"id":"rec-00052","createdAt":"2022-04-18T12:56:38Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-94959579","name":"Initech","segment":"startup","industry":"manufacturing","yearFounded":1988,"contacts":[{"type":"primary","name":"David White","email":"mary.thomas@sample.io","phone":"+1-868-825-8490"},{"type":"technical","name":"Jennifer Moore","email":"robert.wilson@example.com","phone":"+1-477-103-3756"}]},"subscription":{"plan":"custom","startDate":"2020-09-03","renewalDate":"2021-09-03","amount":330.9,"currency":"GBP","services":[{"id":"svc-854","name":"Security","quantity":7225,"unit":"GB","unitPrice":442.31},{"id":"svc-593","name":"Maintenance","quantity":75,"unit":"session","unitPrice":1961.69}]}},{"id":"rec-00053","createdAt":"2021-12-10T17:12:43Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-49473846","name":"LexCorp","segment":"enterprise","industry":"technology","yearFounded":2020,"contacts":[{"type":"primary","name":"David Jones","email":"thomas.williams@demo.net","phone":"+1-392-515-9326"},{"type":"technical","name":"James White","email":"sarah.white@example.com","phone":"+1-340-805-1914"}]},"subscription":{"plan":"free","startDate":"2023-03-08","renewalDate":"2024-03-08","amount":33763.99,"currency":"USD","services":[{"id":"svc-232","name":"Security","quantity":758,"unit":"GB","unitPrice":466.47},{"id":"svc-801","name":"Consulting","quantity":69,"unit":"package","unitPrice":1639.73}]}},{"id":"rec-00054","createdAt":"2021-10-07T04:55:54Z","type":"partner","status":"active","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["new","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-17125401","name":"Virtucon","segment":"small-business","industry":"healthcare","yearFounded":1977,"contacts":[{"type":"primary","name":"Mary Johnson","email":"jennifer.anderson@test.org","phone":"+1-332-785-5936"},{"type":"technical","name":"Joseph Jackson","email":"karen.martin@example.com","phone":"+1-620-305-5171"}]},"subscription":{"plan":"professional","startDate":"2022-03-13","renewalDate":"2023-03-13","amount":21434.47,"currency":"AUD","services":[{"id":"svc-173","name":"Compute Instances","quantity":1966,"unit":"GB","unitPrice":429.72},{"id":"svc-327","name":"Implementation","quantity":33,"unit":"session","unitPrice":204.75}]}},{"id":"rec-00055","createdAt":"2021-05-16T11:04:19Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"import","region":"sa-east-1","tags":["returning","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-51477241","name":"Stark Industries","segment":"small-business","industry":"manufacturing","yearFounded":1978,"contacts":[{"type":"primary","name":"Joseph Wilson","email":"thomas.miller@test.org","phone":"+1-970-817-7280"},{"type":"technical","name":"Thomas Harris","email":"michael.wilson@test.org","phone":"+1-719-610-6903"}]},"subscription":{"plan":"basic","startDate":"2020-12-26","renewalDate":"2022-12-26","amount":42924.11,"currency":"GBP","services":[{"id":"svc-641","name":"Cloud Storage","quantity":5799,"unit":"TB","unitPrice":378.03},{"id":"svc-161","name":"Support Plan","quantity":34,"unit":"session","unitPrice":1504.87}]}},{"id":"rec-00056","createdAt":"2023-08-27T08:47:21Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"api","region":"sa-east-1","tags":["new","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-41803607","name":"Acme Corp","segment":"small-business","industry":"finance","yearFounded":1980,"contacts":[{"type":"primary","name":"Michael Robinson","email":"mary.brown@demo.net","phone":"+1-396-610-8143"},{"type":"technical","name":"Linda Jackson","email":"sarah.wilson@sample.io","phone":"+1-957-214-5939"}]},"subscription":{"plan":"basic","startDate":"2021-06-05","renewalDate":"2022-06-05","amount":18195.64,"currency":"EUR","services":[{"id":"svc-104","name":"Database","quantity":2862,"unit":"license","unitPrice":145.94},{"id":"svc-845","name":"Training","quantity":6,"unit":"package","unitPrice":1188.72}]}},{"id":"rec-00057","createdAt":"2025-05-15T00:44:00Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-44331048","name":"Aperture Science","segment":"enterprise","industry":"manufacturing","yearFounded":1962,"contacts":[{"type":"primary","name":"Susan Anderson","email":"john.thomas@sample.io","phone":"+1-485-737-2395"},{"type":"technical","name":"Jennifer Williams","email":"elizabeth.garcia@sample.io","phone":"+1-686-612-8939"}]},"subscription":{"plan":"enterprise","startDate":"2024-03-09","renewalDate":"2027-03-09","amount":35849.93,"currency":"GBP","services":[{"id":"svc-975","name":"Database","quantity":2688,"unit":"license","unitPrice":168.35},{"id":"svc-743","name":"Consulting","quantity":70,"unit":"session","unitPrice":1640.39}]}},{"id":"rec-00058","createdAt":"2024-08-10T04:48:50Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-86157252","name":"Initech","segment":"mid-market","industry":"healthcare","yearFounded":2014,"contacts":[{"type":"primary","name":"Nancy Taylor","email":"william.smith@demo.net","phone":"+1-553-495-2249"},{"type":"technical","name":"John Thompson","email":"jessica.martin@sample.io","phone":"+1-341-252-3034"}]},"subscription":{"plan":"custom","startDate":"2023-01-25","renewalDate":"2024-01-25","amount":38150.73,"currency":"USD","services":[{"id":"svc-150","name":"Database","quantity":5427,"unit":"TB","unitPrice":444.97},{"id":"svc-450","name":"Support Plan","quantity":20,"unit":"session","unitPrice":1041.36}]}},{"id":"rec-00059","createdAt":"2020-04-24T21:40:12Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"mobile","region":"us-east-1","tags":["new","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-85440772","name":"Massive Dynamic","segment":"small-business","industry":"finance","yearFounded":1958,"contacts":[{"type":"primary","name":"Thomas Moore","email":"robert.moore@mock.co","phone":"+1-437-123-5499"},{"type":"technical","name":"Karen Thomas","email":"david.miller@test.org","phone":"+1-766-439-2046"}]},"subscription":{"plan":"professional","startDate":"2022-04-13","renewalDate":"2024-04-13","amount":43074.06,"currency":"GBP","services":[{"id":"svc-384","name":"Security","quantity":2319,"unit":"GB","unitPrice":18.96},{"id":"svc-542","name":"Implementation","quantity":24,"unit":"session","unitPrice":1439.6}]}},{"id":"rec-00060","createdAt":"2025-01-27T01:53:50Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-36171168","name":"Initech","segment":"mid-market","industry":"education","yearFounded":1966,"contacts":[{"type":"primary","name":"Karen Johnson","email":"william.moore@mock.co","phone":"+1-783-979-9168"},{"type":"technical","name":"Karen Smith","email":"robert.miller@demo.net","phone":"+1-523-812-2883"}]},"subscription":{"plan":"enterprise","startDate":"2023-06-10","renewalDate":"2025-06-10","amount":38633.17,"currency":"AUD","services":[{"id":"svc-879","name":"Database","quantity":6974,"unit":"license","unitPrice":405.15},{"id":"svc-600","name":"Maintenance","quantity":6,"unit":"session","unitPrice":1776.01}]}},{"id":"rec-00061","createdAt":"2023-06-05T19:27:25Z","type":"lead","status":"active","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["trial","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-76157537","name":"Cyberdyne Systems","segment":"small-business","industry":"retail","yearFounded":1978,"contacts":[{"type":"primary","name":"Robert Miller","email":"jessica.white@fake.tech","phone":"+1-691-849-4432"},{"type":"technical","name":"Sarah Miller","email":"jennifer.wilson@sample.io","phone":"+1-776-394-7370"}]},"subscription":{"plan":"basic","startDate":"2021-09-05","renewalDate":"2024-09-05","amount":18416.23,"currency":"AUD","services":[{"id":"svc-577","name":"Security","quantity":3647,"unit":"instance","unitPrice":121.01},{"id":"svc-183","name":"Support Plan","quantity":24,"unit":"package","unitPrice":1856.85}]}},{"id":"rec-00062","createdAt":"2024-08-06T18:38:31Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["trial","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-75857128","name":"Globex","segment":"startup","industry":"finance","yearFounded":1960,"contacts":[{"type":"primary","name":"Jennifer Jackson","email":"jessica.white@mock.co","phone":"+1-810-993-3636"},{"type":"technical","name":"Jessica Robinson","email":"james.thompson@sample.io","phone":"+1-682-494-2135"}]},"subscription":{"plan":"free","startDate":"2024-08-19","renewalDate":"2025-08-19","amount":30413.78,"currency":"AUD","services":[{"id":"svc-731","name":"Cloud Storage","quantity":2284,"unit":"instance","unitPrice":118.17},{"id":"svc-176","name":"Implementation","quantity":6,"unit":"package","unitPrice":267.19}]}},{"id":"rec-00063","createdAt":"2021-02-12T03:58:05Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-42156235","name":"Stark Industries","segment":"small-business","industry":"technology","yearFounded":2012,"contacts":[{"type":"primary","name":"Linda White","email":"john.jackson@demo.net","phone":"+1-520-631-9453"},{"type":"technical","name":"Elizabeth Davis","email":"william.johnson@mock.co","phone":"+1-386-593-2785"}]},"subscription":{"plan":"enterprise","startDate":"2020-08-27","renewalDate":"2023-08-27","amount":16646.91,"currency":"CAD","services":[{"id":"svc-276","name":"Security","quantity":4618,"unit":"instance","unitPrice":375.31},{"id":"svc-502","name":"Support Plan","quantity":77,"unit":"session","unitPrice":1442.82}]}},{"id":"rec-00064","createdAt":"2022-05-12T17:21:04Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["vip","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-74856989","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"finance","yearFounded":1958,"contacts":[{"type":"primary","name":"Jessica White","email":"richard.martin@demo.net","phone":"+1-671-876-9306"},{"type":"technical","name":"John Thompson","email":"thomas.thompson@test.org","phone":"+1-454-375-2331"}]},"subscription":{"plan":"basic","startDate":"2023-01-12","renewalDate":"2026-01-12","amount":41710.57,"currency":"USD","services":[{"id":"svc-611","name":"Compute Instances","quantity":3549,"unit":"user","unitPrice":274.48},{"id":"svc-264","name":"Implementation","quantity":47,"unit":"session","unitPrice":1912.29}]}},{"id":"rec-00065","createdAt":"2023-11-09T16:04:33Z","type":"lead","status":"pending","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-40380607","name":"Cyberdyne Systems","segment":"small-business","industry":"manufacturing","yearFounded":1976,"contacts":[{"type":"primary","name":"Jennifer Robinson","email":"john.davis@test.org","phone":"+1-569-164-9435"},{"type":"technical","name":"Karen White","email":"patricia.anderson@mock.co","phone":"+1-220-694-9134"}]},"subscription":{"plan":"custom","startDate":"2020-03-20","renewalDate":"2022-03-20","amount":20780.63,"currency":"GBP","services":[{"id":"svc-505","name":"Database","quantity":3938,"unit":"instance","unitPrice":167.11},{"id":"svc-633","name":"Implementation","quantity":77,"unit":"session","unitPrice":790.23}]}},{"id":"rec-00066","createdAt":"2022-10-18T12:26:22Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-48819566","name":"Globex","segment":"small-business","industry":"education","yearFounded":2017,"contacts":[{"type":"primary","name":"Elizabeth White","email":"nancy.jones@demo.net","phone":"+1-439-135-1987"},{"type":"technical","name":"Mary Harris","email":"nancy.garcia@sample.io","phone":"+1-735-714-3194"}]},"subscription":{"plan":"enterprise","startDate":"2022-06-09","renewalDate":"2025-06-09","amount":49135.24,"currency":"USD","services":[{"id":"svc-541","name":"Analytics","quantity":3890,"unit":"TB","unitPrice":227.08},{"id":"svc-152","name":"Implementation","quantity":70,"unit":"hour","unitPrice":1333.82}]}},{"id":"rec-00067","createdAt":"2021-11-25T20:39:21Z","type":"partner","status":"inactive","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-80507989","name":"Soylent Corp","segment":"mid-market","industry":"finance","yearFounded":1951,"contacts":[{"type":"primary","name":"Charles Brown","email":"charles.williams@sample.io","phone":"+1-597-846-1305"},{"type":"technical","name":"Richard Garcia","email":"jessica.taylor@example.com","phone":"+1-427-794-1636"}]},"subscription":{"plan":"custom","startDate":"2020-07-05","renewalDate":"2022-07-05","amount":19315.82,"currency":"CAD","services":[{"id":"svc-311","name":"Analytics","quantity":1915,"unit":"TB","unitPrice":395.81},{"id":"svc-853","name":"Maintenance","quantity":99,"unit":"session","unitPrice":1178.26}]}},{"id":"rec-00068","createdAt":"2022-11-14T05:20:58Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["trial","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-36551999","name":"Initech","segment":"small-business","industry":"manufacturing","yearFounded":1977,"contacts":[{"type":"primary","name":"Jessica Moore","email":"john.brown@fake.tech","phone":"+1-629-431-6715"},{"type":"technical","name":"Patricia Smith","email":"charles.moore@demo.net","phone":"+1-222-281-3002"}]},"subscription":{"plan":"custom","startDate":"2021-06-11","renewalDate":"2022-06-11","amount":41855.49,"currency":"USD","services":[{"id":"svc-797","name":"Database","quantity":6009,"unit":"user","unitPrice":203.94},{"id":"svc-979","name":"Maintenance","quantity":11,"unit":"session","unitPrice":1552.82}]}},{"id":"rec-00069","createdAt":"2024-01-26T01:19:29Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-41661537","name":"Wayne Enterprises","segment":"mid-market","industry":"healthcare","yearFounded":1992,"contacts":[{"type":"primary","name":"James Taylor","email":"patricia.brown@demo.net","phone":"+1-756-247-2336"},{"type":"technical","name":"Robert Jackson","email":"susan.harris@sample.io","phone":"+1-408-525-6340"}]},"subscription":{"plan":"enterprise","startDate":"2021-03-02","renewalDate":"2024-03-02","amount":8526.83,"currency":"CAD","services":[{"id":"svc-667","name":"Analytics","quantity":7167,"unit":"GB","unitPrice":161.4},{"id":"svc-462","name":"Training","quantity":4,"unit":"subscription","unitPrice":1667.4}]}},{"id":"rec-00070","createdAt":"2024-08-15T07:46:37Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["vip","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-96111441","name":"Umbrella Corp","segment":"enterprise","industry":"technology","yearFounded":2013,"contacts":[{"type":"primary","name":"Jennifer Robinson","email":"susan.wilson@demo.net","phone":"+1-905-956-7413"},{"type":"technical","name":"James Thompson","email":"patricia.smith@example.com","phone":"+1-274-556-7198"}]},"subscription":{"plan":"custom","startDate":"2021-12-25","renewalDate":"2023-12-25","amount":39558.38,"currency":"AUD","services":[{"id":"svc-747","name":"Compute Instances","quantity":5315,"unit":"TB","unitPrice":220.36},{"id":"svc-444","name":"Implementation","quantity":68,"unit":"session","unitPrice":1538.1}]}},{"id":"rec-00071","createdAt":"2020-10-11T04:30:49Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-81567721","name":"Soylent Corp","segment":"mid-market","industry":"education","yearFounded":2022,"contacts":[{"type":"primary","name":"Joseph Johnson","email":"jessica.williams@sample.io","phone":"+1-543-821-2026"},{"type":"technical","name":"James Jackson","email":"robert.smith@fake.tech","phone":"+1-517-941-2608"}]},"subscription":{"plan":"enterprise","startDate":"2022-09-11","renewalDate":"2025-09-11","amount":28489.09,"currency":"USD","services":[{"id":"svc-432","name":"Database","quantity":8861,"unit":"user","unitPrice":217.05},{"id":"svc-418","name":"Support Plan","quantity":62,"unit":"session","unitPrice":1938.73}]}},{"id":"rec-00072","createdAt":"2024-12-03T12:46:07Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-70310190","name":"Nakatomi Trading Corp","segment":"enterprise","industry":"healthcare","yearFounded":2012,"contacts":[{"type":"primary","name":"John Martin","email":"karen.wilson@fake.tech","phone":"+1-334-398-2394"},{"type":"technical","name":"William Anderson","email":"richard.williams@sample.io","phone":"+1-887-409-4550"}]},"subscription":{"plan":"custom","startDate":"2023-01-09","renewalDate":"2026-01-09","amount":205.25,"currency":"GBP","services":[{"id":"svc-139","name":"Analytics","quantity":5282,"unit":"TB","unitPrice":234.49},{"id":"svc-576","name":"Training","quantity":81,"unit":"session","unitPrice":1696.41}]}},{"id":"rec-00073","createdAt":"2025-09-01T20:37:24Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-29009073","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"technology","yearFounded":1995,"contacts":[{"type":"primary","name":"Michael Moore","email":"john.jones@test.org","phone":"+1-222-818-9249"},{"type":"technical","name":"Joseph Wilson","email":"john.davis@fake.tech","phone":"+1-769-629-6601"}]},"subscription":{"plan":"enterprise","startDate":"2021-01-26","renewalDate":"2024-01-26","amount":6288.1,"currency":"GBP","services":[{"id":"svc-691","name":"Cloud Storage","quantity":6315,"unit":"GB","unitPrice":493.2},{"id":"svc-466","name":"Implementation","quantity":57,"unit":"unit","unitPrice":303.41}]}},{"id":"rec-00074","createdAt":"2023-05-15T15:23:35Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"manual","region":"sa-east-1","tags":["new","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-99297191","name":"Acme Corp","segment":"small-business","industry":"healthcare","yearFounded":1986,"contacts":[{"type":"primary","name":"Richard Wilson","email":"michael.williams@test.org","phone":"+1-945-903-4364"},{"type":"technical","name":"Mary Moore","email":"jennifer.robinson@sample.io","phone":"+1-248-925-1412"}]},"subscription":{"plan":"basic","startDate":"2023-02-16","renewalDate":"2025-02-16","amount":47681.91,"currency":"AUD","services":[{"id":"svc-200","name":"Database","quantity":1201,"unit":"license","unitPrice":203.96},{"id":"svc-272","name":"Implementation","quantity":52,"unit":"hour","unitPrice":1710.02}]}},{"id":"rec-00075","createdAt":"2022-02-21T12:40:20Z","type":"lead","status":"inactive","priority":"low","metadata":{"source":"import","region":"sa-east-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-95321140","name":"Cyberdyne Systems","segment":"enterprise","industry":"education","yearFounded":1965,"contacts":[{"type":"primary","name":"Sarah Thompson","email":"michael.jackson@example.com","phone":"+1-864-250-8690"},{"type":"technical","name":"Richard Robinson","email":"michael.brown@demo.net","phone":"+1-894-930-3184"}]},"subscription":{"plan":"basic","startDate":"2022-12-28","renewalDate":"2025-12-28","amount":3932.41,"currency":"GBP","services":[{"id":"svc-814","name":"Analytics","quantity":678,"unit":"GB","unitPrice":189.74},{"id":"svc-878","name":"Implementation","quantity":32,"unit":"session","unitPrice":1426.5}]}},{"id":"rec-00076","createdAt":"2021-02-23T10:59:47Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-38245529","name":"Oscorp","segment":"mid-market","industry":"education","yearFounded":2023,"contacts":[{"type":"primary","name":"Karen Jackson","email":"james.davis@sample.io","phone":"+1-328-465-7505"},{"type":"technical","name":"Thomas Smith","email":"william.white@example.com","phone":"+1-485-973-5903"}]},"subscription":{"plan":"basic","startDate":"2023-03-09","renewalDate":"2025-03-09","amount":35353.9,"currency":"AUD","services":[{"id":"svc-352","name":"Analytics","quantity":1343,"unit":"GB","unitPrice":366.95},{"id":"svc-445","name":"Consulting","quantity":11,"unit":"unit","unitPrice":486.39}]}},{"id":"rec-00077","createdAt":"2024-11-05T02:56:22Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-73950537","name":"LexCorp","segment":"small-business","industry":"retail","yearFounded":1959,"contacts":[{"type":"primary","name":"Karen Jones","email":"thomas.anderson@mock.co","phone":"+1-282-525-2723"},{"type":"technical","name":"Michael Johnson","email":"mary.robinson@sample.io","phone":"+1-275-153-2269"}]},"subscription":{"plan":"custom","startDate":"2024-05-28","renewalDate":"2027-05-28","amount":49516.48,"currency":"GBP","services":[{"id":"svc-605","name":"Compute Instances","quantity":8121,"unit":"license","unitPrice":72.38},{"id":"svc-556","name":"Consulting","quantity":24,"unit":"subscription","unitPrice":1749.84}]}},{"id":"rec-00078","createdAt":"2025-12-17T03:49:58Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"web","region":"sa-east-1","tags":["trial","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-52490010","name":"Oscorp","segment":"startup","industry":"retail","yearFounded":1970,"contacts":[{"type":"primary","name":"Mary Miller","email":"nancy.brown@fake.tech","phone":"+1-557-999-3005"},{"type":"technical","name":"Mary Anderson","email":"james.thomas@fake.tech","phone":"+1-232-454-7797"}]},"subscription":{"plan":"basic","startDate":"2023-03-28","renewalDate":"2025-03-28","amount":45493.48,"currency":"AUD","services":[{"id":"svc-673","name":"Security","quantity":23,"unit":"instance","unitPrice":285.79},{"id":"svc-902","name":"Consulting","quantity":80,"unit":"hour","unitPrice":385.53}]}},{"id":"rec-00079","createdAt":"2021-05-26T01:37:11Z","type":"customer","status":"active","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-59619366","name":"Aperture Science","segment":"enterprise","industry":"technology","yearFounded":1956,"contacts":[{"type":"primary","name":"Michael Harris","email":"linda.thomas@demo.net","phone":"+1-920-857-8777"},{"type":"technical","name":"William Williams","email":"john.garcia@fake.tech","phone":"+1-682-138-1471"}]},"subscription":{"plan":"custom","startDate":"2020-06-08","renewalDate":"2022-06-08","amount":6149.92,"currency":"GBP","services":[{"id":"svc-226","name":"Cloud Storage","quantity":5949,"unit":"license","unitPrice":392.87},{"id":"svc-203","name":"Implementation","quantity":85,"unit":"subscription","unitPrice":689.44}]}},{"id":"rec-00080","createdAt":"2020-06-20T22:14:28Z","type":"lead","status":"active","priority":"high","metadata":{"source":"manual","region":"ap-southeast-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-96243345","name":"Aperture Science","segment":"enterprise","industry":"technology","yearFounded":1973,"contacts":[{"type":"primary","name":"Michael Miller","email":"linda.thompson@test.org","phone":"+1-303-952-6395"},{"type":"technical","name":"Thomas Smith","email":"susan.moore@demo.net","phone":"+1-703-418-4615"}]},"subscription":{"plan":"professional","startDate":"2023-10-01","renewalDate":"2025-10-01","amount":12466.69,"currency":"USD","services":[{"id":"svc-292","name":"Compute Instances","quantity":6172,"unit":"TB","unitPrice":7.79},{"id":"svc-754","name":"Training","quantity":48,"unit":"hour","unitPrice":955.68}]}},{"id":"rec-00081","createdAt":"2024-09-26T05:51:48Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-44492255","name":"Aperture Science","segment":"mid-market","industry":"manufacturing","yearFounded":2007,"contacts":[{"type":"primary","name":"James Thompson","email":"nancy.johnson@test.org","phone":"+1-218-941-4409"},{"type":"technical","name":"Nancy Martinez","email":"joseph.garcia@example.com","phone":"+1-350-846-6205"}]},"subscription":{"plan":"basic","startDate":"2023-04-17","renewalDate":"2025-04-17","amount":4738.64,"currency":"USD","services":[{"id":"svc-284","name":"Analytics","quantity":3864,"unit":"instance","unitPrice":121.95},{"id":"svc-989","name":"Support Plan","quantity":83,"unit":"hour","unitPrice":621.3}]}},{"id":"rec-00082","createdAt":"2025-05-17T04:31:56Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"import","region":"eu-west-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-61230385","name":"Stark Industries","segment":"startup","industry":"retail","yearFounded":2004,"contacts":[{"type":"primary","name":"Sarah Garcia","email":"patricia.thomas@demo.net","phone":"+1-672-313-8161"},{"type":"technical","name":"Patricia Brown","email":"james.robinson@sample.io","phone":"+1-548-709-2938"}]},"subscription":{"plan":"basic","startDate":"2024-08-18","renewalDate":"2026-08-18","amount":312.68,"currency":"AUD","services":[{"id":"svc-118","name":"Compute Instances","quantity":785,"unit":"instance","unitPrice":313.36},{"id":"svc-636","name":"Implementation","quantity":29,"unit":"subscription","unitPrice":1848.52}]}},{"id":"rec-00083","createdAt":"2023-05-01T00:48:53Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-31109855","name":"Soylent Corp","segment":"small-business","industry":"healthcare","yearFounded":1979,"contacts":[{"type":"primary","name":"John Anderson","email":"sarah.wilson@sample.io","phone":"+1-436-898-5343"},{"type":"technical","name":"Mary Anderson","email":"richard.davis@test.org","phone":"+1-653-303-1661"}]},"subscription":{"plan":"custom","startDate":"2021-07-16","renewalDate":"2023-07-16","amount":36815.25,"currency":"CAD","services":[{"id":"svc-380","name":"Database","quantity":381,"unit":"license","unitPrice":140.6},{"id":"svc-668","name":"Support Plan","quantity":17,"unit":"subscription","unitPrice":572.76}]}},{"id":"rec-00084","createdAt":"2023-03-11T20:03:07Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-13013065","name":"Massive Dynamic","segment":"small-business","industry":"finance","yearFounded":2017,"contacts":[{"type":"primary","name":"John Jones","email":"john.harris@fake.tech","phone":"+1-579-168-4228"},{"type":"technical","name":"Susan Taylor","email":"michael.moore@mock.co","phone":"+1-694-835-5421"}]},"subscription":{"plan":"professional","startDate":"2022-06-06","renewalDate":"2023-06-06","amount":47112.43,"currency":"USD","services":[{"id":"svc-877","name":"Database","quantity":6035,"unit":"user","unitPrice":462.89},{"id":"svc-318","name":"Implementation","quantity":19,"unit":"unit","unitPrice":822.33}]}},{"id":"rec-00085","createdAt":"2025-03-07T17:15:26Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-27940502","name":"Virtucon","segment":"enterprise","industry":"healthcare","yearFounded":1974,"contacts":[{"type":"primary","name":"Jessica Smith","email":"john.johnson@example.com","phone":"+1-363-344-6984"},{"type":"technical","name":"Sarah Smith","email":"john.harris@test.org","phone":"+1-441-756-3110"}]},"subscription":{"plan":"basic","startDate":"2023-12-03","renewalDate":"2024-12-03","amount":2192.44,"currency":"EUR","services":[{"id":"svc-478","name":"Analytics","quantity":8986,"unit":"user","unitPrice":213.37},{"id":"svc-953","name":"Consulting","quantity":37,"unit":"unit","unitPrice":89.8}]}},{"id":"rec-00086","createdAt":"2024-11-25T05:51:51Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-21960480","name":"Acme Corp","segment":"small-business","industry":"education","yearFounded":2018,"contacts":[{"type":"primary","name":"Susan Taylor","email":"linda.martinez@test.org","phone":"+1-483-515-3114"},{"type":"technical","name":"Nancy Martin","email":"michael.smith@fake.tech","phone":"+1-888-849-6877"}]},"subscription":{"plan":"custom","startDate":"2021-10-19","renewalDate":"2024-10-19","amount":8096.62,"currency":"CAD","services":[{"id":"svc-224","name":"Cloud Storage","quantity":626,"unit":"instance","unitPrice":299.99},{"id":"svc-510","name":"Implementation","quantity":24,"unit":"package","unitPrice":1688.23}]}},{"id":"rec-00087","createdAt":"2022-02-09T21:56:54Z","type":"lead","status":"active","priority":"low","metadata":{"source":"manual","region":"us-east-1","tags":["returning","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-43926931","name":"Soylent Corp","segment":"enterprise","industry":"manufacturing","yearFounded":1981,"contacts":[{"type":"primary","name":"Karen Williams","email":"michael.davis@example.com","phone":"+1-740-158-4463"},{"type":"technical","name":"Joseph Johnson","email":"robert.thompson@demo.net","phone":"+1-906-861-6653"}]},"subscription":{"plan":"enterprise","startDate":"2022-03-23","renewalDate":"2024-03-23","amount":1776.59,"currency":"AUD","services":[{"id":"svc-718","name":"Compute Instances","quantity":2234,"unit":"TB","unitPrice":399.28},{"id":"svc-339","name":"Consulting","quantity":2,"unit":"package","unitPrice":205.99}]}},{"id":"rec-00088","createdAt":"2020-07-05T12:18:52Z","type":"partner","status":"pending","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-59049785","name":"Initech","segment":"enterprise","industry":"healthcare","yearFounded":2013,"contacts":[{"type":"primary","name":"William Jones","email":"thomas.smith@test.org","phone":"+1-768-420-2814"},{"type":"technical","name":"Nancy Anderson","email":"jessica.anderson@example.com","phone":"+1-869-125-3955"}]},"subscription":{"plan":"professional","startDate":"2021-08-11","renewalDate":"2022-08-11","amount":23984.17,"currency":"GBP","services":[{"id":"svc-192","name":"Compute Instances","quantity":5413,"unit":"user","unitPrice":201.46},{"id":"svc-678","name":"Maintenance","quantity":25,"unit":"package","unitPrice":903.6}]}},{"id":"rec-00089","createdAt":"2025-09-06T10:34:19Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-97596784","name":"Virtucon","segment":"mid-market","industry":"finance","yearFounded":2010,"contacts":[{"type":"primary","name":"Nancy Robinson","email":"mary.garcia@example.com","phone":"+1-654-363-5818"},{"type":"technical","name":"Charles Jackson","email":"thomas.martinez@test.org","phone":"+1-268-455-8859"}]},"subscription":{"plan":"free","startDate":"2021-09-26","renewalDate":"2023-09-26","amount":17110.43,"currency":"EUR","services":[{"id":"svc-504","name":"Analytics","quantity":9922,"unit":"GB","unitPrice":459.64},{"id":"svc-968","name":"Consulting","quantity":18,"unit":"session","unitPrice":525.85}]}},{"id":"rec-00090","createdAt":"2023-09-28T05:50:41Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"web","region":"us-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-11498917","name":"Nakatomi Trading Corp","segment":"startup","industry":"manufacturing","yearFounded":1969,"contacts":[{"type":"primary","name":"David Harris","email":"john.white@test.org","phone":"+1-502-932-4199"},{"type":"technical","name":"Elizabeth Miller","email":"michael.davis@demo.net","phone":"+1-849-565-1394"}]},"subscription":{"plan":"professional","startDate":"2021-01-23","renewalDate":"2023-01-23","amount":36566.22,"currency":"EUR","services":[{"id":"svc-866","name":"Security","quantity":6884,"unit":"instance","unitPrice":291.8},{"id":"svc-260","name":"Training","quantity":24,"unit":"subscription","unitPrice":1300.52}]}},{"id":"rec-00091","createdAt":"2024-01-05T07:38:58Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-73362464","name":"Massive Dynamic","segment":"enterprise","industry":"manufacturing","yearFounded":1962,"contacts":[{"type":"primary","name":"William Martin","email":"elizabeth.thomas@test.org","phone":"+1-242-277-7827"},{"type":"technical","name":"Patricia Johnson","email":"sarah.harris@demo.net","phone":"+1-793-474-8119"}]},"subscription":{"plan":"free","startDate":"2020-11-20","renewalDate":"2023-11-20","amount":5023.14,"currency":"CAD","services":[{"id":"svc-121","name":"Compute Instances","quantity":6797,"unit":"TB","unitPrice":401.01},{"id":"svc-244","name":"Support Plan","quantity":53,"unit":"package","unitPrice":1866.05}]}},{"id":"rec-00092","createdAt":"2025-05-24T05:57:51Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-21096051","name":"Umbrella Corp","segment":"mid-market","industry":"finance","yearFounded":1953,"contacts":[{"type":"primary","name":"Joseph Jackson","email":"mary.smith@sample.io","phone":"+1-963-284-1812"},{"type":"technical","name":"Karen Johnson","email":"jennifer.garcia@mock.co","phone":"+1-660-864-2699"}]},"subscription":{"plan":"professional","startDate":"2023-12-26","renewalDate":"2026-12-26","amount":29263.25,"currency":"EUR","services":[{"id":"svc-856","name":"Database","quantity":8265,"unit":"instance","unitPrice":2.46},{"id":"svc-154","name":"Consulting","quantity":84,"unit":"hour","unitPrice":1551.15}]}},{"id":"rec-00093","createdAt":"2020-01-01T23:35:18Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"manual","region":"us-east-1","tags":["returning","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-45348091","name":"Weyland-Yutani","segment":"mid-market","industry":"manufacturing","yearFounded":1968,"contacts":[{"type":"primary","name":"Linda Smith","email":"william.davis@sample.io","phone":"+1-320-617-4464"},{"type":"technical","name":"Michael Brown","email":"patricia.davis@test.org","phone":"+1-884-874-1813"}]},"subscription":{"plan":"enterprise","startDate":"2021-03-19","renewalDate":"2024-03-19","amount":33253.53,"currency":"GBP","services":[{"id":"svc-381","name":"Cloud Storage","quantity":6462,"unit":"user","unitPrice":322.41},{"id":"svc-989","name":"Implementation","quantity":73,"unit":"unit","unitPrice":1423.73}]}},{"id":"rec-00094","createdAt":"2025-11-23T01:37:27Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-66893113","name":"Globex","segment":"enterprise","industry":"retail","yearFounded":2004,"contacts":[{"type":"primary","name":"Charles Brown","email":"patricia.white@sample.io","phone":"+1-847-544-6353"},{"type":"technical","name":"Mary Robinson","email":"thomas.davis@example.com","phone":"+1-624-231-2688"}]},"subscription":{"plan":"free","startDate":"2023-05-24","renewalDate":"2024-05-24","amount":39071.26,"currency":"GBP","services":[{"id":"svc-951","name":"Compute Instances","quantity":3605,"unit":"GB","unitPrice":104.95},{"id":"svc-609","name":"Implementation","quantity":30,"unit":"unit","unitPrice":570.29}]}},{"id":"rec-00095","createdAt":"2024-11-15T13:06:00Z","type":"customer","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-62947040","name":"Cyberdyne Systems","segment":"small-business","industry":"healthcare","yearFounded":1980,"contacts":[{"type":"primary","name":"Thomas Williams","email":"michael.williams@test.org","phone":"+1-934-131-1817"},{"type":"technical","name":"William Martin","email":"nancy.thomas@fake.tech","phone":"+1-976-801-4848"}]},"subscription":{"plan":"basic","startDate":"2024-07-01","renewalDate":"2026-07-01","amount":32259.33,"currency":"USD","services":[{"id":"svc-134","name":"Compute Instances","quantity":5259,"unit":"instance","unitPrice":298.79},{"id":"svc-437","name":"Training","quantity":81,"unit":"package","unitPrice":1837.65}]}},{"id":"rec-00096","createdAt":"2020-11-18T09:18:42Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-46868022","name":"Soylent Corp","segment":"startup","industry":"finance","yearFounded":1963,"contacts":[{"type":"primary","name":"Susan Harris","email":"charles.jackson@test.org","phone":"+1-848-482-6552"},{"type":"technical","name":"Jennifer Thomas","email":"linda.martin@sample.io","phone":"+1-524-816-5807"}]},"subscription":{"plan":"basic","startDate":"2024-11-07","renewalDate":"2026-11-07","amount":36122.66,"currency":"GBP","services":[{"id":"svc-280","name":"Compute Instances","quantity":4971,"unit":"instance","unitPrice":192.83},{"id":"svc-505","name":"Maintenance","quantity":6,"unit":"unit","unitPrice":1010.84}]}},{"id":"rec-00097","createdAt":"2024-01-04T03:28:31Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["trial","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-56565323","name":"Massive Dynamic","segment":"startup","industry":"retail","yearFounded":2011,"contacts":[{"type":"primary","name":"Nancy Jackson","email":"robert.miller@sample.io","phone":"+1-766-185-2365"},{"type":"technical","name":"Robert Martin","email":"william.taylor@example.com","phone":"+1-785-525-9562"}]},"subscription":{"plan":"enterprise","startDate":"2021-10-03","renewalDate":"2023-10-03","amount":36405.77,"currency":"EUR","services":[{"id":"svc-827","name":"Cloud Storage","quantity":1534,"unit":"license","unitPrice":41.48},{"id":"svc-454","name":"Support Plan","quantity":49,"unit":"hour","unitPrice":954.48}]}},{"id":"rec-00098","createdAt":"2022-02-28T04:58:01Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-82889714","name":"Stark Industries","segment":"mid-market","industry":"retail","yearFounded":1993,"contacts":[{"type":"primary","name":"Richard Garcia","email":"michael.white@fake.tech","phone":"+1-825-790-6638"},{"type":"technical","name":"Robert Martin","email":"richard.miller@demo.net","phone":"+1-318-716-3190"}]},"subscription":{"plan":"professional","startDate":"2022-06-08","renewalDate":"2025-06-08","amount":9024.5,"currency":"CAD","services":[{"id":"svc-289","name":"Database","quantity":767,"unit":"instance","unitPrice":217.31},{"id":"svc-923","name":"Maintenance","quantity":31,"unit":"session","unitPrice":816.03}]}},{"id":"rec-00099","createdAt":"2022-01-02T22:24:51Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-32450068","name":"Aperture Science","segment":"mid-market","industry":"manufacturing","yearFounded":1973,"contacts":[{"type":"primary","name":"Jennifer Taylor","email":"david.wilson@demo.net","phone":"+1-519-603-8386"},{"type":"technical","name":"Sarah Martinez","email":"jennifer.davis@example.com","phone":"+1-637-800-8416"}]},"subscription":{"plan":"basic","startDate":"2020-03-24","renewalDate":"2023-03-24","amount":19747.68,"currency":"GBP","services":[{"id":"svc-765","name":"Analytics","quantity":5774,"unit":"instance","unitPrice":264.83},{"id":"svc-439","name":"Maintenance","quantity":3,"unit":"subscription","unitPrice":62.02}]}},{"id":"rec-00100","createdAt":"2023-04-10T21:15:34Z","type":"partner","status":"active","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["returning","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-21335075","name":"Wayne Enterprises","segment":"startup","industry":"finance","yearFounded":2022,"contacts":[{"type":"primary","name":"Charles Martin","email":"joseph.garcia@fake.tech","phone":"+1-439-225-6556"},{"type":"technical","name":"David Johnson","email":"linda.harris@demo.net","phone":"+1-347-971-6133"}]},"subscription":{"plan":"basic","startDate":"2022-07-11","renewalDate":"2025-07-11","amount":2815.42,"currency":"AUD","services":[{"id":"svc-399","name":"Cloud Storage","quantity":9439,"unit":"TB","unitPrice":233.82},{"id":"svc-849","name":"Maintenance","quantity":72,"unit":"hour","unitPrice":199.55}]}},{"id":"rec-00101","createdAt":"2022-09-20T17:53:46Z","type":"customer","status":"active","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-17679378","name":"Soylent Corp","segment":"enterprise","industry":"healthcare","yearFounded":1956,"contacts":[{"type":"primary","name":"Michael Wilson","email":"jennifer.garcia@fake.tech","phone":"+1-529-868-3473"},{"type":"technical","name":"Richard Robinson","email":"jennifer.brown@test.org","phone":"+1-956-431-3302"}]},"subscription":{"plan":"custom","startDate":"2020-04-18","renewalDate":"2022-04-18","amount":2261.59,"currency":"AUD","services":[{"id":"svc-899","name":"Database","quantity":2624,"unit":"user","unitPrice":231.48},{"id":"svc-878","name":"Consulting","quantity":75,"unit":"session","unitPrice":1455.63}]}},{"id":"rec-00102","createdAt":"2023-09-11T01:06:32Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["new","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-45615295","name":"Umbrella Corp","segment":"startup","industry":"healthcare","yearFounded":1963,"contacts":[{"type":"primary","name":"Karen Taylor","email":"robert.garcia@demo.net","phone":"+1-486-718-3861"},{"type":"technical","name":"Richard Davis","email":"david.martinez@mock.co","phone":"+1-531-344-2737"}]},"subscription":{"plan":"custom","startDate":"2020-09-04","renewalDate":"2023-09-04","amount":38410.93,"currency":"USD","services":[{"id":"svc-978","name":"Database","quantity":4455,"unit":"instance","unitPrice":70.05},{"id":"svc-189","name":"Training","quantity":51,"unit":"unit","unitPrice":1140.41}]}},{"id":"rec-00103","createdAt":"2020-03-14T01:33:16Z","type":"partner","status":"active","priority":"low","metadata":{"source":"manual","region":"us-east-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-29230777","name":"Initech","segment":"small-business","industry":"finance","yearFounded":1994,"contacts":[{"type":"primary","name":"John Moore","email":"susan.smith@demo.net","phone":"+1-565-305-7274"},{"type":"technical","name":"Nancy Brown","email":"elizabeth.williams@mock.co","phone":"+1-483-536-9781"}]},"subscription":{"plan":"professional","startDate":"2022-08-08","renewalDate":"2025-08-08","amount":12155.85,"currency":"GBP","services":[{"id":"svc-272","name":"Compute Instances","quantity":9399,"unit":"user","unitPrice":468.97},{"id":"svc-848","name":"Consulting","quantity":9,"unit":"package","unitPrice":1701.45}]}},{"id":"rec-00104","createdAt":"2021-03-20T18:47:54Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["returning","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-63829055","name":"Umbrella Corp","segment":"mid-market","industry":"education","yearFounded":1971,"contacts":[{"type":"primary","name":"Linda Thompson","email":"william.smith@mock.co","phone":"+1-933-793-4494"},{"type":"technical","name":"Robert Moore","email":"richard.johnson@mock.co","phone":"+1-837-551-6261"}]},"subscription":{"plan":"basic","startDate":"2021-07-24","renewalDate":"2022-07-24","amount":10304.53,"currency":"GBP","services":[{"id":"svc-298","name":"Cloud Storage","quantity":6207,"unit":"GB","unitPrice":454.83},{"id":"svc-590","name":"Maintenance","quantity":19,"unit":"subscription","unitPrice":719.5}]}},{"id":"rec-00105","createdAt":"2025-09-08T23:23:06Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"web","region":"ap-southeast-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-16528524","name":"Soylent Corp","segment":"mid-market","industry":"healthcare","yearFounded":2009,"contacts":[{"type":"primary","name":"John Martinez","email":"nancy.thomas@fake.tech","phone":"+1-988-329-7215"},{"type":"technical","name":"Patricia Jones","email":"jennifer.taylor@sample.io","phone":"+1-450-391-3012"}]},"subscription":{"plan":"basic","startDate":"2020-11-12","renewalDate":"2022-11-12","amount":8655.45,"currency":"USD","services":[{"id":"svc-808","name":"Cloud Storage","quantity":9,"unit":"TB","unitPrice":236.17},{"id":"svc-843","name":"Implementation","quantity":64,"unit":"package","unitPrice":1649.69}]}},{"id":"rec-00106","createdAt":"2024-12-11T23:28:11Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"web","region":"us-east-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-92068622","name":"Stark Industries","segment":"startup","industry":"manufacturing","yearFounded":1955,"contacts":[{"type":"primary","name":"Robert Johnson","email":"james.smith@demo.net","phone":"+1-345-501-5518"},{"type":"technical","name":"James Martinez","email":"nancy.moore@test.org","phone":"+1-441-630-9590"}]},"subscription":{"plan":"custom","startDate":"2021-12-14","renewalDate":"2022-12-14","amount":8590.32,"currency":"USD","services":[{"id":"svc-404","name":"Security","quantity":4831,"unit":"license","unitPrice":345.14},{"id":"svc-767","name":"Support Plan","quantity":59,"unit":"hour","unitPrice":1595.47}]}},{"id":"rec-00107","createdAt":"2024-04-22T18:17:21Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-40855505","name":"Wayne Enterprises","segment":"small-business","industry":"technology","yearFounded":1988,"contacts":[{"type":"primary","name":"Joseph Moore","email":"robert.jones@sample.io","phone":"+1-599-760-7342"},{"type":"technical","name":"Robert Miller","email":"sarah.thompson@mock.co","phone":"+1-280-768-8190"}]},"subscription":{"plan":"custom","startDate":"2022-01-21","renewalDate":"2024-01-21","amount":7857.2,"currency":"USD","services":[{"id":"svc-975","name":"Compute Instances","quantity":7885,"unit":"license","unitPrice":143.51},{"id":"svc-473","name":"Maintenance","quantity":38,"unit":"session","unitPrice":783.92}]}},{"id":"rec-00108","createdAt":"2022-01-23T12:58:34Z","type":"partner","status":"active","priority":"low","metadata":{"source":"web","region":"ap-southeast-1","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-38107078","name":"Soylent Corp","segment":"enterprise","industry":"retail","yearFounded":2006,"contacts":[{"type":"primary","name":"Elizabeth Jackson","email":"nancy.white@fake.tech","phone":"+1-639-729-2566"},{"type":"technical","name":"Susan Smith","email":"jessica.wilson@fake.tech","phone":"+1-881-842-5035"}]},"subscription":{"plan":"enterprise","startDate":"2022-06-03","renewalDate":"2024-06-03","amount":11570.74,"currency":"GBP","services":[{"id":"svc-947","name":"Analytics","quantity":2740,"unit":"TB","unitPrice":459.71},{"id":"svc-290","name":"Training","quantity":66,"unit":"session","unitPrice":1327.63}]}},{"id":"rec-00109","createdAt":"2020-10-05T18:58:54Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"manual","region":"us-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-15343208","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"manufacturing","yearFounded":2013,"contacts":[{"type":"primary","name":"Thomas Wilson","email":"thomas.smith@test.org","phone":"+1-897-990-6261"},{"type":"technical","name":"Mary Thompson","email":"thomas.smith@demo.net","phone":"+1-247-610-4331"}]},"subscription":{"plan":"enterprise","startDate":"2020-06-24","renewalDate":"2022-06-24","amount":48174.17,"currency":"USD","services":[{"id":"svc-586","name":"Cloud Storage","quantity":1812,"unit":"TB","unitPrice":172.91},{"id":"svc-264","name":"Maintenance","quantity":57,"unit":"session","unitPrice":1611.83}]}},{"id":"rec-00110","createdAt":"2025-04-08T22:49:29Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"us-west-2","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-90202539","name":"Cyberdyne Systems","segment":"mid-market","industry":"education","yearFounded":2023,"contacts":[{"type":"primary","name":"Karen Johnson","email":"karen.jones@test.org","phone":"+1-831-620-8953"},{"type":"technical","name":"Mary Anderson","email":"susan.wilson@fake.tech","phone":"+1-717-210-6655"}]},"subscription":{"plan":"basic","startDate":"2023-08-11","renewalDate":"2025-08-11","amount":32971.1,"currency":"USD","services":[{"id":"svc-150","name":"Cloud Storage","quantity":4814,"unit":"license","unitPrice":387.15},{"id":"svc-889","name":"Support Plan","quantity":45,"unit":"package","unitPrice":1840.0}]}},{"id":"rec-00111","createdAt":"2023-12-25T14:14:46Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-51048128","name":"Initech","segment":"small-business","industry":"manufacturing","yearFounded":1983,"contacts":[{"type":"primary","name":"Mary Harris","email":"richard.miller@sample.io","phone":"+1-309-418-5013"},{"type":"technical","name":"Linda Smith","email":"jessica.anderson@mock.co","phone":"+1-444-195-8903"}]},"subscription":{"plan":"enterprise","startDate":"2024-03-23","renewalDate":"2026-03-23","amount":5740.7,"currency":"AUD","services":[{"id":"svc-724","name":"Cloud Storage","quantity":7201,"unit":"license","unitPrice":34.1},{"id":"svc-303","name":"Support Plan","quantity":5,"unit":"hour","unitPrice":1783.34}]}},{"id":"rec-00112","createdAt":"2021-12-16T16:51:10Z","type":"customer","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["returning","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-55299262","name":"Soylent Corp","segment":"small-business","industry":"education","yearFounded":2001,"contacts":[{"type":"primary","name":"James Miller","email":"john.garcia@mock.co","phone":"+1-913-330-2869"},{"type":"technical","name":"Thomas White","email":"jennifer.martinez@test.org","phone":"+1-361-845-9744"}]},"subscription":{"plan":"enterprise","startDate":"2021-01-20","renewalDate":"2024-01-20","amount":15567.11,"currency":"CAD","services":[{"id":"svc-602","name":"Analytics","quantity":2168,"unit":"TB","unitPrice":218.75},{"id":"svc-659","name":"Implementation","quantity":54,"unit":"subscription","unitPrice":1896.21}]}},{"id":"rec-00113","createdAt":"2025-08-05T12:07:05Z","type":"partner","status":"active","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-67050018","name":"LexCorp","segment":"startup","industry":"retail","yearFounded":2022,"contacts":[{"type":"primary","name":"Susan Martinez","email":"charles.thompson@demo.net","phone":"+1-297-304-4307"},{"type":"technical","name":"Patricia White","email":"james.johnson@demo.net","phone":"+1-681-883-9063"}]},"subscription":{"plan":"professional","startDate":"2024-08-25","renewalDate":"2027-08-25","amount":43280.8,"currency":"CAD","services":[{"id":"svc-516","name":"Compute Instances","quantity":6880,"unit":"license","unitPrice":23.54},{"id":"svc-365","name":"Maintenance","quantity":99,"unit":"subscription","unitPrice":788.31}]}},{"id":"rec-00114","createdAt":"2025-10-06T03:28:31Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"us-west-2","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-50379890","name":"Stark Industries","segment":"startup","industry":"retail","yearFounded":1964,"contacts":[{"type":"primary","name":"Patricia Anderson","email":"richard.taylor@example.com","phone":"+1-742-372-5989"},{"type":"technical","name":"Mary Anderson","email":"james.miller@mock.co","phone":"+1-760-784-2647"}]},"subscription":{"plan":"enterprise","startDate":"2024-11-05","renewalDate":"2027-11-05","amount":35479.27,"currency":"CAD","services":[{"id":"svc-576","name":"Security","quantity":1076,"unit":"user","unitPrice":314.18},{"id":"svc-783","name":"Maintenance","quantity":41,"unit":"package","unitPrice":1782.63}]}},{"id":"rec-00115","createdAt":"2021-11-10T07:48:08Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-58030592","name":"Stark Industries","segment":"small-business","industry":"finance","yearFounded":1979,"contacts":[{"type":"primary","name":"Jennifer Moore","email":"robert.martinez@sample.io","phone":"+1-210-199-8551"},{"type":"technical","name":"Charles Miller","email":"elizabeth.anderson@sample.io","phone":"+1-333-223-4945"}]},"subscription":{"plan":"free","startDate":"2022-09-08","renewalDate":"2023-09-08","amount":11610.62,"currency":"CAD","services":[{"id":"svc-931","name":"Database","quantity":7052,"unit":"user","unitPrice":465.02},{"id":"svc-357","name":"Implementation","quantity":68,"unit":"unit","unitPrice":906.78}]}},{"id":"rec-00116","createdAt":"2024-03-13T20:43:05Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-20531742","name":"Weyland-Yutani","segment":"small-business","industry":"healthcare","yearFounded":2008,"contacts":[{"type":"primary","name":"Elizabeth Jackson","email":"david.williams@demo.net","phone":"+1-675-273-2013"},{"type":"technical","name":"John Martinez","email":"jessica.garcia@sample.io","phone":"+1-633-660-7310"}]},"subscription":{"plan":"enterprise","startDate":"2022-01-01","renewalDate":"2025-01-01","amount":24886.55,"currency":"GBP","services":[{"id":"svc-213","name":"Database","quantity":3167,"unit":"instance","unitPrice":76.79},{"id":"svc-314","name":"Support Plan","quantity":78,"unit":"package","unitPrice":371.91}]}},{"id":"rec-00117","createdAt":"2024-07-26T02:40:16Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-33158353","name":"Globex","segment":"startup","industry":"healthcare","yearFounded":2015,"contacts":[{"type":"primary","name":"Jennifer Johnson","email":"sarah.williams@demo.net","phone":"+1-747-972-4961"},{"type":"technical","name":"John Martinez","email":"jessica.robinson@mock.co","phone":"+1-481-388-7783"}]},"subscription":{"plan":"enterprise","startDate":"2021-12-14","renewalDate":"2023-12-14","amount":43541.25,"currency":"CAD","services":[{"id":"svc-573","name":"Compute Instances","quantity":7707,"unit":"TB","unitPrice":77.22},{"id":"svc-803","name":"Implementation","quantity":48,"unit":"session","unitPrice":1656.65}]}},{"id":"rec-00118","createdAt":"2021-08-05T11:46:42Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-86373581","name":"Globex","segment":"startup","industry":"education","yearFounded":1979,"contacts":[{"type":"primary","name":"William Martin","email":"thomas.jones@mock.co","phone":"+1-299-478-9000"},{"type":"technical","name":"David Jackson","email":"joseph.garcia@sample.io","phone":"+1-737-126-5881"}]},"subscription":{"plan":"free","startDate":"2022-05-13","renewalDate":"2024-05-13","amount":36622.14,"currency":"USD","services":[{"id":"svc-990","name":"Cloud Storage","quantity":7997,"unit":"TB","unitPrice":494.62},{"id":"svc-558","name":"Maintenance","quantity":90,"unit":"session","unitPrice":1930.08}]}},{"id":"rec-00119","createdAt":"2023-06-27T02:11:37Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-west-2","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-15361895","name":"Oscorp","segment":"enterprise","industry":"manufacturing","yearFounded":2015,"contacts":[{"type":"primary","name":"Mary Garcia","email":"richard.harris@sample.io","phone":"+1-843-636-7295"},{"type":"technical","name":"Charles Martinez","email":"linda.johnson@mock.co","phone":"+1-665-520-7216"}]},"subscription":{"plan":"professional","startDate":"2022-07-05","renewalDate":"2024-07-05","amount":27719.15,"currency":"EUR","services":[{"id":"svc-576","name":"Database","quantity":6608,"unit":"user","unitPrice":446.33},{"id":"svc-582","name":"Support Plan","quantity":55,"unit":"session","unitPrice":972.47}]}},{"id":"rec-00120","createdAt":"2021-07-16T19:51:22Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"manual","region":"us-east-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-92552104","name":"Nakatomi Trading Corp","segment":"startup","industry":"technology","yearFounded":1994,"contacts":[{"type":"primary","name":"Charles Martinez","email":"susan.miller@demo.net","phone":"+1-958-724-3788"},{"type":"technical","name":"Jennifer Smith","email":"michael.davis@test.org","phone":"+1-321-427-6292"}]},"subscription":{"plan":"basic","startDate":"2024-09-18","renewalDate":"2027-09-18","amount":28818.84,"currency":"CAD","services":[{"id":"svc-495","name":"Cloud Storage","quantity":7348,"unit":"TB","unitPrice":210.56},{"id":"svc-562","name":"Maintenance","quantity":67,"unit":"unit","unitPrice":1184.09}]}},{"id":"rec-00121","createdAt":"2024-12-20T13:41:15Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-90630211","name":"Massive Dynamic","segment":"small-business","industry":"retail","yearFounded":1997,"contacts":[{"type":"primary","name":"David Smith","email":"jennifer.moore@test.org","phone":"+1-437-563-2460"},{"type":"technical","name":"Charles Thompson","email":"david.jones@test.org","phone":"+1-695-569-1303"}]},"subscription":{"plan":"basic","startDate":"2022-12-16","renewalDate":"2024-12-16","amount":10566.28,"currency":"EUR","services":[{"id":"svc-182","name":"Compute Instances","quantity":5541,"unit":"instance","unitPrice":63.5},{"id":"svc-977","name":"Consulting","quantity":13,"unit":"hour","unitPrice":735.69}]}},{"id":"rec-00122","createdAt":"2024-05-22T20:40:46Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"eu-west-1","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-76455711","name":"Umbrella Corp","segment":"startup","industry":"technology","yearFounded":1998,"contacts":[{"type":"primary","name":"Elizabeth Harris","email":"james.martin@example.com","phone":"+1-832-178-1442"},{"type":"technical","name":"Nancy Thompson","email":"sarah.brown@example.com","phone":"+1-274-145-4901"}]},"subscription":{"plan":"enterprise","startDate":"2024-11-02","renewalDate":"2027-11-02","amount":18192.34,"currency":"GBP","services":[{"id":"svc-833","name":"Cloud Storage","quantity":817,"unit":"instance","unitPrice":292.9},{"id":"svc-365","name":"Maintenance","quantity":12,"unit":"subscription","unitPrice":1371.8}]}},{"id":"rec-00123","createdAt":"2023-07-19T18:12:05Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"import","region":"eu-west-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-90160164","name":"Oscorp","segment":"enterprise","industry":"technology","yearFounded":2020,"contacts":[{"type":"primary","name":"Patricia Moore","email":"john.harris@demo.net","phone":"+1-592-206-8940"},{"type":"technical","name":"Karen Thomas","email":"jessica.johnson@fake.tech","phone":"+1-516-507-1935"}]},"subscription":{"plan":"basic","startDate":"2022-01-26","renewalDate":"2025-01-26","amount":8261.72,"currency":"GBP","services":[{"id":"svc-859","name":"Database","quantity":6713,"unit":"instance","unitPrice":334.73},{"id":"svc-234","name":"Maintenance","quantity":85,"unit":"unit","unitPrice":998.28}]}},{"id":"rec-00124","createdAt":"2023-02-02T05:22:32Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"web","region":"us-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-80939258","name":"Umbrella Corp","segment":"enterprise","industry":"healthcare","yearFounded":2013,"contacts":[{"type":"primary","name":"Thomas Brown","email":"jessica.williams@fake.tech","phone":"+1-872-732-1421"},{"type":"technical","name":"Sarah Robinson","email":"michael.johnson@mock.co","phone":"+1-731-111-4360"}]},"subscription":{"plan":"enterprise","startDate":"2024-10-02","renewalDate":"2025-10-02","amount":42605.46,"currency":"USD","services":[{"id":"svc-542","name":"Compute Instances","quantity":8654,"unit":"license","unitPrice":140.4},{"id":"svc-487","name":"Implementation","quantity":15,"unit":"session","unitPrice":1270.2}]}},{"id":"rec-00125","createdAt":"2023-03-06T19:54:32Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"manual","region":"us-west-2","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-18687597","name":"Wayne Enterprises","segment":"small-business","industry":"finance","yearFounded":1995,"contacts":[{"type":"primary","name":"James Jones","email":"linda.davis@test.org","phone":"+1-367-952-4106"},{"type":"technical","name":"Susan White","email":"susan.smith@demo.net","phone":"+1-952-304-7242"}]},"subscription":{"plan":"free","startDate":"2023-10-18","renewalDate":"2026-10-18","amount":19572.1,"currency":"AUD","services":[{"id":"svc-525","name":"Database","quantity":9844,"unit":"user","unitPrice":313.44},{"id":"svc-200","name":"Support Plan","quantity":45,"unit":"unit","unitPrice":1339.5}]}},{"id":"rec-00126","createdAt":"2020-05-11T12:52:59Z","type":"customer","status":"inactive","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-14903291","name":"Stark Industries","segment":"mid-market","industry":"finance","yearFounded":2017,"contacts":[{"type":"primary","name":"John Harris","email":"elizabeth.brown@sample.io","phone":"+1-863-310-6443"},{"type":"technical","name":"Jennifer Martinez","email":"joseph.harris@example.com","phone":"+1-993-854-6143"}]},"subscription":{"plan":"free","startDate":"2021-06-13","renewalDate":"2024-06-13","amount":46419.62,"currency":"EUR","services":[{"id":"svc-144","name":"Database","quantity":4287,"unit":"GB","unitPrice":467.32},{"id":"svc-599","name":"Implementation","quantity":99,"unit":"subscription","unitPrice":528.8}]}},{"id":"rec-00127","createdAt":"2020-01-06T00:56:47Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"api","region":"sa-east-1","tags":["new","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-35356753","name":"Aperture Science","segment":"small-business","industry":"finance","yearFounded":1956,"contacts":[{"type":"primary","name":"Karen Garcia","email":"mary.thompson@example.com","phone":"+1-707-621-8124"},{"type":"technical","name":"Karen Davis","email":"karen.martin@sample.io","phone":"+1-437-545-6326"}]},"subscription":{"plan":"custom","startDate":"2020-02-23","renewalDate":"2022-02-23","amount":42418.17,"currency":"AUD","services":[{"id":"svc-710","name":"Compute Instances","quantity":7543,"unit":"GB","unitPrice":137.9},{"id":"svc-695","name":"Implementation","quantity":34,"unit":"unit","unitPrice":1707.32}]}},{"id":"rec-00128","createdAt":"2020-12-07T00:01:19Z","type":"lead","status":"active","priority":"high","metadata":{"source":"web","region":"us-west-2","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-57253248","name":"Cyberdyne Systems","segment":"enterprise","industry":"healthcare","yearFounded":2011,"contacts":[{"type":"primary","name":"Jessica Wilson","email":"linda.martinez@example.com","phone":"+1-577-100-9700"},{"type":"technical","name":"Susan Wilson","email":"thomas.garcia@sample.io","phone":"+1-227-133-8220"}]},"subscription":{"plan":"professional","startDate":"2021-02-12","renewalDate":"2023-02-12","amount":16311.61,"currency":"EUR","services":[{"id":"svc-121","name":"Database","quantity":1958,"unit":"instance","unitPrice":145.28},{"id":"svc-409","name":"Implementation","quantity":49,"unit":"subscription","unitPrice":1875.86}]}},{"id":"rec-00129","createdAt":"2022-10-14T20:51:32Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-66205556","name":"Umbrella Corp","segment":"mid-market","industry":"finance","yearFounded":2000,"contacts":[{"type":"primary","name":"Michael Jackson","email":"robert.johnson@mock.co","phone":"+1-875-419-5239"},{"type":"technical","name":"Elizabeth Williams","email":"john.thomas@fake.tech","phone":"+1-295-307-2250"}]},"subscription":{"plan":"free","startDate":"2024-05-26","renewalDate":"2026-05-26","amount":12129.27,"currency":"CAD","services":[{"id":"svc-567","name":"Security","quantity":5512,"unit":"user","unitPrice":183.39},{"id":"svc-705","name":"Implementation","quantity":28,"unit":"session","unitPrice":1467.32}]}},{"id":"rec-00130","createdAt":"2023-08-11T02:04:19Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-12931719","name":"Stark Industries","segment":"small-business","industry":"healthcare","yearFounded":1965,"contacts":[{"type":"primary","name":"William Moore","email":"charles.smith@fake.tech","phone":"+1-321-123-4869"},{"type":"technical","name":"William Taylor","email":"william.taylor@sample.io","phone":"+1-515-904-8975"}]},"subscription":{"plan":"custom","startDate":"2021-12-28","renewalDate":"2024-12-28","amount":10686.71,"currency":"GBP","services":[{"id":"svc-235","name":"Cloud Storage","quantity":7604,"unit":"user","unitPrice":223.38},{"id":"svc-598","name":"Training","quantity":57,"unit":"session","unitPrice":1007.82}]}},{"id":"rec-00131","createdAt":"2025-07-24T11:18:00Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"manual","region":"us-west-2","tags":["new","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-15476228","name":"Cyberdyne Systems","segment":"small-business","industry":"finance","yearFounded":1992,"contacts":[{"type":"primary","name":"Charles Jones","email":"richard.thomas@test.org","phone":"+1-274-566-9524"},{"type":"technical","name":"Jennifer Williams","email":"nancy.williams@fake.tech","phone":"+1-355-627-7050"}]},"subscription":{"plan":"custom","startDate":"2024-06-05","renewalDate":"2025-06-05","amount":14940.56,"currency":"EUR","services":[{"id":"svc-133","name":"Security","quantity":7682,"unit":"TB","unitPrice":330.34},{"id":"svc-631","name":"Implementation","quantity":72,"unit":"subscription","unitPrice":1115.64}]}},{"id":"rec-00132","createdAt":"2020-08-28T01:04:09Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-23919744","name":"Massive Dynamic","segment":"mid-market","industry":"manufacturing","yearFounded":1982,"contacts":[{"type":"primary","name":"Mary Anderson","email":"karen.taylor@example.com","phone":"+1-848-314-2375"},{"type":"technical","name":"William Taylor","email":"james.thomas@sample.io","phone":"+1-203-878-3259"}]},"subscription":{"plan":"custom","startDate":"2024-12-16","renewalDate":"2027-12-16","amount":23619.0,"currency":"EUR","services":[{"id":"svc-827","name":"Analytics","quantity":2903,"unit":"user","unitPrice":25.35},{"id":"svc-460","name":"Maintenance","quantity":32,"unit":"unit","unitPrice":1194.37}]}},{"id":"rec-00133","createdAt":"2024-11-06T15:06:55Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"api","region":"sa-east-1","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-12902890","name":"Oscorp","segment":"startup","industry":"technology","yearFounded":1983,"contacts":[{"type":"primary","name":"James White","email":"charles.williams@mock.co","phone":"+1-625-862-1761"},{"type":"technical","name":"Elizabeth Johnson","email":"charles.wilson@test.org","phone":"+1-356-701-3806"}]},"subscription":{"plan":"free","startDate":"2021-08-11","renewalDate":"2022-08-11","amount":23155.32,"currency":"USD","services":[{"id":"svc-804","name":"Security","quantity":3618,"unit":"GB","unitPrice":291.3},{"id":"svc-889","name":"Support Plan","quantity":15,"unit":"subscription","unitPrice":1668.94}]}},{"id":"rec-00134","createdAt":"2023-03-16T07:54:26Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"web","region":"us-west-2","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-38833985","name":"Nakatomi Trading Corp","segment":"startup","industry":"technology","yearFounded":1959,"contacts":[{"type":"primary","name":"Richard Johnson","email":"james.white@test.org","phone":"+1-592-101-9387"},{"type":"technical","name":"Mary Davis","email":"charles.harris@mock.co","phone":"+1-437-511-6478"}]},"subscription":{"plan":"professional","startDate":"2024-08-19","renewalDate":"2026-08-19","amount":45470.73,"currency":"EUR","services":[{"id":"svc-589","name":"Cloud Storage","quantity":4726,"unit":"TB","unitPrice":457.73},{"id":"svc-874","name":"Training","quantity":31,"unit":"session","unitPrice":1982.91}]}},{"id":"rec-00135","createdAt":"2022-12-03T21:26:50Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-82977255","name":"Cyberdyne Systems","segment":"small-business","industry":"technology","yearFounded":1955,"contacts":[{"type":"primary","name":"Mary Harris","email":"james.thomas@demo.net","phone":"+1-884-729-5484"},{"type":"technical","name":"Susan Miller","email":"elizabeth.thomas@test.org","phone":"+1-447-859-6665"}]},"subscription":{"plan":"free","startDate":"2023-01-11","renewalDate":"2026-01-11","amount":37291.67,"currency":"AUD","services":[{"id":"svc-707","name":"Cloud Storage","quantity":963,"unit":"instance","unitPrice":257.53},{"id":"svc-351","name":"Maintenance","quantity":22,"unit":"session","unitPrice":1121.95}]}},{"id":"rec-00136","createdAt":"2024-12-19T12:11:05Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"sa-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-72184551","name":"Aperture Science","segment":"small-business","industry":"manufacturing","yearFounded":2007,"contacts":[{"type":"primary","name":"Richard Jackson","email":"jennifer.jackson@demo.net","phone":"+1-896-152-5858"},{"type":"technical","name":"Mary Davis","email":"karen.jones@fake.tech","phone":"+1-778-614-4586"}]},"subscription":{"plan":"professional","startDate":"2022-12-03","renewalDate":"2025-12-03","amount":33393.55,"currency":"GBP","services":[{"id":"svc-304","name":"Analytics","quantity":3528,"unit":"user","unitPrice":11.88},{"id":"svc-372","name":"Consulting","quantity":45,"unit":"session","unitPrice":403.68}]}},{"id":"rec-00137","createdAt":"2022-12-09T03:06:07Z","type":"lead","status":"active","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-37283714","name":"Globex","segment":"mid-market","industry":"technology","yearFounded":1999,"contacts":[{"type":"primary","name":"Elizabeth White","email":"linda.anderson@fake.tech","phone":"+1-816-344-6799"},{"type":"technical","name":"Mary Miller","email":"david.brown@example.com","phone":"+1-516-288-1602"}]},"subscription":{"plan":"enterprise","startDate":"2021-01-16","renewalDate":"2023-01-16","amount":40279.42,"currency":"EUR","services":[{"id":"svc-146","name":"Analytics","quantity":3332,"unit":"instance","unitPrice":487.9},{"id":"svc-844","name":"Implementation","quantity":17,"unit":"subscription","unitPrice":850.44}]}},{"id":"rec-00138","createdAt":"2023-04-19T19:00:54Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["trial","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-70128826","name":"Nakatomi Trading Corp","segment":"startup","industry":"healthcare","yearFounded":2005,"contacts":[{"type":"primary","name":"Patricia Taylor","email":"charles.williams@fake.tech","phone":"+1-659-607-2596"},{"type":"technical","name":"Michael Martinez","email":"david.robinson@mock.co","phone":"+1-501-674-8452"}]},"subscription":{"plan":"enterprise","startDate":"2020-12-18","renewalDate":"2021-12-18","amount":37540.88,"currency":"EUR","services":[{"id":"svc-738","name":"Security","quantity":4282,"unit":"instance","unitPrice":218.48},{"id":"svc-862","name":"Implementation","quantity":39,"unit":"session","unitPrice":964.79}]}},{"id":"rec-00139","createdAt":"2022-11-24T09:12:39Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-43381294","name":"Aperture Science","segment":"enterprise","industry":"retail","yearFounded":1959,"contacts":[{"type":"primary","name":"Linda Jackson","email":"michael.williams@demo.net","phone":"+1-602-277-1921"},{"type":"technical","name":"Jessica Martin","email":"linda.robinson@sample.io","phone":"+1-956-124-3829"}]},"subscription":{"plan":"free","startDate":"2021-06-26","renewalDate":"2024-06-26","amount":19447.36,"currency":"CAD","services":[{"id":"svc-731","name":"Cloud Storage","quantity":5145,"unit":"instance","unitPrice":122.86},{"id":"svc-471","name":"Consulting","quantity":58,"unit":"subscription","unitPrice":223.7}]}},{"id":"rec-00140","createdAt":"2024-02-20T22:11:53Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-10917099","name":"Aperture Science","segment":"enterprise","industry":"finance","yearFounded":1976,"contacts":[{"type":"primary","name":"Robert Wilson","email":"jennifer.miller@sample.io","phone":"+1-991-383-7620"},{"type":"technical","name":"Elizabeth Brown","email":"thomas.jones@example.com","phone":"+1-588-187-6345"}]},"subscription":{"plan":"basic","startDate":"2022-04-07","renewalDate":"2024-04-07","amount":22078.9,"currency":"USD","services":[{"id":"svc-353","name":"Compute Instances","quantity":9056,"unit":"TB","unitPrice":456.85},{"id":"svc-697","name":"Consulting","quantity":3,"unit":"hour","unitPrice":1504.88}]}},{"id":"rec-00141","createdAt":"2021-08-21T12:26:05Z","type":"customer","status":"active","priority":"low","metadata":{"source":"mobile","region":"us-west-2","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-15858315","name":"Acme Corp","segment":"enterprise","industry":"technology","yearFounded":2017,"contacts":[{"type":"primary","name":"Michael Jackson","email":"patricia.martinez@sample.io","phone":"+1-981-613-2666"},{"type":"technical","name":"Nancy Anderson","email":"nancy.anderson@fake.tech","phone":"+1-848-972-7982"}]},"subscription":{"plan":"professional","startDate":"2023-05-22","renewalDate":"2026-05-22","amount":46948.76,"currency":"CAD","services":[{"id":"svc-848","name":"Database","quantity":1462,"unit":"instance","unitPrice":103.84},{"id":"svc-895","name":"Implementation","quantity":11,"unit":"session","unitPrice":1126.32}]}},{"id":"rec-00142","createdAt":"2020-06-03T08:40:21Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"import","region":"us-west-2","tags":["vip","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-55299092","name":"Soylent Corp","segment":"small-business","industry":"education","yearFounded":1952,"contacts":[{"type":"primary","name":"Sarah Harris","email":"jennifer.anderson@example.com","phone":"+1-982-711-7590"},{"type":"technical","name":"David Moore","email":"karen.wilson@fake.tech","phone":"+1-876-891-3604"}]},"subscription":{"plan":"free","startDate":"2022-02-06","renewalDate":"2023-02-06","amount":9290.14,"currency":"AUD","services":[{"id":"svc-809","name":"Cloud Storage","quantity":9928,"unit":"TB","unitPrice":241.53},{"id":"svc-780","name":"Implementation","quantity":43,"unit":"hour","unitPrice":1104.21}]}},{"id":"rec-00143","createdAt":"2023-04-08T21:45:13Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-25100801","name":"Nakatomi Trading Corp","segment":"enterprise","industry":"manufacturing","yearFounded":1992,"contacts":[{"type":"primary","name":"Charles Robinson","email":"mary.martinez@mock.co","phone":"+1-344-230-2302"},{"type":"technical","name":"James Thomas","email":"david.williams@example.com","phone":"+1-356-780-5055"}]},"subscription":{"plan":"custom","startDate":"2020-10-20","renewalDate":"2021-10-20","amount":4888.72,"currency":"EUR","services":[{"id":"svc-262","name":"Cloud Storage","quantity":9613,"unit":"user","unitPrice":204.39},{"id":"svc-745","name":"Training","quantity":69,"unit":"hour","unitPrice":435.33}]}},{"id":"rec-00144","createdAt":"2020-12-04T15:35:32Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-88898073","name":"Nakatomi Trading Corp","segment":"enterprise","industry":"technology","yearFounded":1997,"contacts":[{"type":"primary","name":"Robert Moore","email":"joseph.davis@demo.net","phone":"+1-567-503-7328"},{"type":"technical","name":"Linda Johnson","email":"richard.robinson@sample.io","phone":"+1-451-209-6226"}]},"subscription":{"plan":"free","startDate":"2023-05-08","renewalDate":"2025-05-08","amount":10271.32,"currency":"GBP","services":[{"id":"svc-485","name":"Security","quantity":5505,"unit":"license","unitPrice":87.36},{"id":"svc-458","name":"Implementation","quantity":29,"unit":"package","unitPrice":456.73}]}},{"id":"rec-00145","createdAt":"2023-04-27T18:48:31Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-98413512","name":"Stark Industries","segment":"small-business","industry":"retail","yearFounded":1998,"contacts":[{"type":"primary","name":"Joseph Martinez","email":"james.martin@example.com","phone":"+1-948-142-8177"},{"type":"technical","name":"James Williams","email":"elizabeth.martinez@fake.tech","phone":"+1-585-403-1131"}]},"subscription":{"plan":"custom","startDate":"2023-12-25","renewalDate":"2025-12-25","amount":49041.83,"currency":"USD","services":[{"id":"svc-526","name":"Analytics","quantity":5006,"unit":"GB","unitPrice":128.23},{"id":"svc-279","name":"Implementation","quantity":50,"unit":"package","unitPrice":1275.83}]}},{"id":"rec-00146","createdAt":"2021-08-16T19:48:56Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"mobile","region":"eu-west-1","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-27019655","name":"Wayne Enterprises","segment":"enterprise","industry":"finance","yearFounded":2005,"contacts":[{"type":"primary","name":"John Taylor","email":"william.robinson@fake.tech","phone":"+1-390-657-4963"},{"type":"technical","name":"William Taylor","email":"thomas.johnson@example.com","phone":"+1-765-263-9393"}]},"subscription":{"plan":"professional","startDate":"2021-10-28","renewalDate":"2022-10-28","amount":36990.24,"currency":"AUD","services":[{"id":"svc-863","name":"Database","quantity":1977,"unit":"TB","unitPrice":338.79},{"id":"svc-137","name":"Maintenance","quantity":69,"unit":"package","unitPrice":77.67}]}},{"id":"rec-00147","createdAt":"2024-02-27T20:20:03Z","type":"partner","status":"active","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["trial","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-96651407","name":"Acme Corp","segment":"startup","industry":"education","yearFounded":1997,"contacts":[{"type":"primary","name":"Mary White","email":"james.brown@sample.io","phone":"+1-716-222-9465"},{"type":"technical","name":"Mary Miller","email":"richard.harris@sample.io","phone":"+1-900-826-8960"}]},"subscription":{"plan":"enterprise","startDate":"2023-12-23","renewalDate":"2024-12-23","amount":31836.63,"currency":"USD","services":[{"id":"svc-523","name":"Compute Instances","quantity":3330,"unit":"GB","unitPrice":438.18},{"id":"svc-197","name":"Consulting","quantity":59,"unit":"package","unitPrice":1499.47}]}},{"id":"rec-00148","createdAt":"2020-02-02T19:13:08Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"api","region":"us-west-2","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-56009702","name":"Globex","segment":"startup","industry":"finance","yearFounded":1984,"contacts":[{"type":"primary","name":"Karen White","email":"karen.martin@mock.co","phone":"+1-312-377-7522"},{"type":"technical","name":"David Garcia","email":"susan.garcia@mock.co","phone":"+1-686-987-4828"}]},"subscription":{"plan":"professional","startDate":"2021-08-04","renewalDate":"2024-08-04","amount":14341.24,"currency":"AUD","services":[{"id":"svc-430","name":"Compute Instances","quantity":4444,"unit":"license","unitPrice":345.71},{"id":"svc-322","name":"Training","quantity":66,"unit":"package","unitPrice":650.8}]}},{"id":"rec-00149","createdAt":"2024-10-06T18:54:59Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-13483158","name":"Initech","segment":"startup","industry":"retail","yearFounded":2011,"contacts":[{"type":"primary","name":"Patricia Anderson","email":"jessica.moore@sample.io","phone":"+1-205-730-7978"},{"type":"technical","name":"Sarah Wilson","email":"joseph.anderson@sample.io","phone":"+1-918-107-4823"}]},"subscription":{"plan":"professional","startDate":"2021-03-05","renewalDate":"2023-03-05","amount":17107.14,"currency":"EUR","services":[{"id":"svc-162","name":"Compute Instances","quantity":8663,"unit":"TB","unitPrice":17.21},{"id":"svc-530","name":"Support Plan","quantity":84,"unit":"session","unitPrice":68.6}]}},{"id":"rec-00150","createdAt":"2025-04-09T13:57:28Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-81498774","name":"Acme Corp","segment":"enterprise","industry":"healthcare","yearFounded":1973,"contacts":[{"type":"primary","name":"Jessica Thompson","email":"patricia.taylor@test.org","phone":"+1-703-887-8313"},{"type":"technical","name":"David Harris","email":"joseph.thompson@test.org","phone":"+1-385-569-7686"}]},"subscription":{"plan":"professional","startDate":"2020-04-16","renewalDate":"2022-04-16","amount":10046.24,"currency":"EUR","services":[{"id":"svc-625","name":"Analytics","quantity":2775,"unit":"instance","unitPrice":292.86},{"id":"svc-521","name":"Implementation","quantity":6,"unit":"session","unitPrice":242.65}]}},{"id":"rec-00151","createdAt":"2022-06-12T18:33:33Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"api","region":"us-west-2","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-24366631","name":"Wayne Enterprises","segment":"mid-market","industry":"finance","yearFounded":1984,"contacts":[{"type":"primary","name":"Patricia Martinez","email":"william.davis@demo.net","phone":"+1-913-898-2532"},{"type":"technical","name":"Karen Moore","email":"sarah.williams@example.com","phone":"+1-586-624-3019"}]},"subscription":{"plan":"professional","startDate":"2024-11-09","renewalDate":"2026-11-09","amount":49015.99,"currency":"USD","services":[{"id":"svc-363","name":"Analytics","quantity":6190,"unit":"instance","unitPrice":368.77},{"id":"svc-226","name":"Consulting","quantity":10,"unit":"subscription","unitPrice":1221.36}]}},{"id":"rec-00152","createdAt":"2020-10-28T17:12:42Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-22957568","name":"Soylent Corp","segment":"enterprise","industry":"technology","yearFounded":1982,"contacts":[{"type":"primary","name":"William Martinez","email":"michael.williams@demo.net","phone":"+1-311-408-4091"},{"type":"technical","name":"David Martinez","email":"elizabeth.martinez@fake.tech","phone":"+1-489-795-9220"}]},"subscription":{"plan":"professional","startDate":"2022-03-17","renewalDate":"2025-03-17","amount":7484.43,"currency":"GBP","services":[{"id":"svc-986","name":"Database","quantity":2174,"unit":"user","unitPrice":333.92},{"id":"svc-373","name":"Implementation","quantity":46,"unit":"unit","unitPrice":1805.03}]}},{"id":"rec-00153","createdAt":"2022-05-19T02:46:38Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"manual","region":"us-east-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-26246084","name":"Weyland-Yutani","segment":"enterprise","industry":"education","yearFounded":1950,"contacts":[{"type":"primary","name":"James Garcia","email":"robert.williams@fake.tech","phone":"+1-426-207-8872"},{"type":"technical","name":"Richard Jackson","email":"david.brown@test.org","phone":"+1-426-361-9771"}]},"subscription":{"plan":"professional","startDate":"2023-04-16","renewalDate":"2026-04-16","amount":10462.22,"currency":"USD","services":[{"id":"svc-149","name":"Cloud Storage","quantity":7043,"unit":"TB","unitPrice":43.57},{"id":"svc-901","name":"Maintenance","quantity":93,"unit":"session","unitPrice":1547.68}]}},{"id":"rec-00154","createdAt":"2024-12-05T13:08:36Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["new","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-91019029","name":"Umbrella Corp","segment":"small-business","industry":"manufacturing","yearFounded":1959,"contacts":[{"type":"primary","name":"Nancy Robinson","email":"richard.martin@mock.co","phone":"+1-658-651-2497"},{"type":"technical","name":"Michael Garcia","email":"joseph.martin@demo.net","phone":"+1-436-536-8725"}]},"subscription":{"plan":"custom","startDate":"2021-06-25","renewalDate":"2023-06-25","amount":34399.34,"currency":"CAD","services":[{"id":"svc-440","name":"Security","quantity":5399,"unit":"GB","unitPrice":112.61},{"id":"svc-110","name":"Maintenance","quantity":96,"unit":"package","unitPrice":1306.65}]}},{"id":"rec-00155","createdAt":"2025-03-02T14:29:36Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-13574815","name":"Aperture Science","segment":"startup","industry":"finance","yearFounded":1964,"contacts":[{"type":"primary","name":"Sarah Moore","email":"karen.jackson@sample.io","phone":"+1-576-566-9746"},{"type":"technical","name":"Elizabeth Miller","email":"richard.garcia@sample.io","phone":"+1-212-469-2103"}]},"subscription":{"plan":"basic","startDate":"2020-06-18","renewalDate":"2021-06-18","amount":34109.42,"currency":"AUD","services":[{"id":"svc-753","name":"Security","quantity":5164,"unit":"license","unitPrice":223.32},{"id":"svc-206","name":"Consulting","quantity":97,"unit":"hour","unitPrice":1672.31}]}},{"id":"rec-00156","createdAt":"2025-11-18T04:14:03Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-45112748","name":"Weyland-Yutani","segment":"small-business","industry":"retail","yearFounded":1989,"contacts":[{"type":"primary","name":"Karen Williams","email":"elizabeth.martinez@demo.net","phone":"+1-926-591-6881"},{"type":"technical","name":"Thomas Thomas","email":"robert.robinson@test.org","phone":"+1-249-736-9012"}]},"subscription":{"plan":"custom","startDate":"2024-01-05","renewalDate":"2027-01-05","amount":9276.83,"currency":"AUD","services":[{"id":"svc-713","name":"Security","quantity":7740,"unit":"TB","unitPrice":59.41},{"id":"svc-218","name":"Maintenance","quantity":97,"unit":"hour","unitPrice":1806.55}]}},{"id":"rec-00157","createdAt":"2025-07-22T22:28:03Z","type":"prospect","status":"pending","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-55328919","name":"Wayne Enterprises","segment":"enterprise","industry":"education","yearFounded":2017,"contacts":[{"type":"primary","name":"Richard Garcia","email":"robert.garcia@fake.tech","phone":"+1-202-633-3705"},{"type":"technical","name":"Patricia Thomas","email":"susan.robinson@fake.tech","phone":"+1-751-826-3888"}]},"subscription":{"plan":"custom","startDate":"2020-08-10","renewalDate":"2021-08-10","amount":48350.88,"currency":"USD","services":[{"id":"svc-598","name":"Security","quantity":4457,"unit":"user","unitPrice":494.09},{"id":"svc-110","name":"Support Plan","quantity":33,"unit":"subscription","unitPrice":782.01}]}},{"id":"rec-00158","createdAt":"2025-04-09T06:57:51Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-75802257","name":"Soylent Corp","segment":"mid-market","industry":"manufacturing","yearFounded":1953,"contacts":[{"type":"primary","name":"Michael Jackson","email":"patricia.davis@test.org","phone":"+1-688-626-6926"},{"type":"technical","name":"David Moore","email":"patricia.wilson@test.org","phone":"+1-622-713-6885"}]},"subscription":{"plan":"free","startDate":"2024-07-03","renewalDate":"2027-07-03","amount":3365.47,"currency":"AUD","services":[{"id":"svc-713","name":"Analytics","quantity":9252,"unit":"instance","unitPrice":350.74},{"id":"svc-300","name":"Training","quantity":43,"unit":"hour","unitPrice":156.8}]}},{"id":"rec-00159","createdAt":"2025-06-04T17:18:50Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-23493198","name":"Aperture Science","segment":"mid-market","industry":"finance","yearFounded":2003,"contacts":[{"type":"primary","name":"John Smith","email":"elizabeth.anderson@sample.io","phone":"+1-492-888-1614"},{"type":"technical","name":"Robert Martin","email":"john.taylor@fake.tech","phone":"+1-596-522-7409"}]},"subscription":{"plan":"custom","startDate":"2022-04-09","renewalDate":"2024-04-09","amount":11927.23,"currency":"GBP","services":[{"id":"svc-729","name":"Security","quantity":6578,"unit":"license","unitPrice":198.56},{"id":"svc-241","name":"Maintenance","quantity":73,"unit":"subscription","unitPrice":1788.76}]}},{"id":"rec-00160","createdAt":"2020-02-04T21:14:42Z","type":"lead","status":"active","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-72622088","name":"Massive Dynamic","segment":"small-business","industry":"manufacturing","yearFounded":2007,"contacts":[{"type":"primary","name":"Nancy Williams","email":"robert.miller@fake.tech","phone":"+1-242-447-9713"},{"type":"technical","name":"David Miller","email":"elizabeth.smith@mock.co","phone":"+1-419-230-7052"}]},"subscription":{"plan":"professional","startDate":"2024-07-15","renewalDate":"2025-07-15","amount":35118.12,"currency":"AUD","services":[{"id":"svc-110","name":"Analytics","quantity":9056,"unit":"TB","unitPrice":19.43},{"id":"svc-608","name":"Maintenance","quantity":72,"unit":"session","unitPrice":994.86}]}},{"id":"rec-00161","createdAt":"2021-10-24T17:53:30Z","type":"partner","status":"pending","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-97440395","name":"Weyland-Yutani","segment":"small-business","industry":"education","yearFounded":1958,"contacts":[{"type":"primary","name":"Karen Johnson","email":"james.martin@test.org","phone":"+1-242-394-4063"},{"type":"technical","name":"Joseph Wilson","email":"charles.johnson@mock.co","phone":"+1-435-538-2912"}]},"subscription":{"plan":"custom","startDate":"2020-02-01","renewalDate":"2021-02-01","amount":10798.82,"currency":"CAD","services":[{"id":"svc-263","name":"Security","quantity":5195,"unit":"GB","unitPrice":70.82},{"id":"svc-735","name":"Maintenance","quantity":52,"unit":"session","unitPrice":41.38}]}},{"id":"rec-00162","createdAt":"2023-05-02T10:21:42Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-54031326","name":"Stark Industries","segment":"mid-market","industry":"technology","yearFounded":1958,"contacts":[{"type":"primary","name":"Elizabeth Garcia","email":"william.thomas@mock.co","phone":"+1-480-310-9452"},{"type":"technical","name":"Robert Anderson","email":"karen.anderson@test.org","phone":"+1-460-440-1798"}]},"subscription":{"plan":"enterprise","startDate":"2020-04-13","renewalDate":"2023-04-13","amount":15471.31,"currency":"GBP","services":[{"id":"svc-602","name":"Database","quantity":5510,"unit":"TB","unitPrice":287.01},{"id":"svc-614","name":"Maintenance","quantity":26,"unit":"subscription","unitPrice":1444.19}]}},{"id":"rec-00163","createdAt":"2021-01-21T04:32:38Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["returning","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-61241286","name":"Globex","segment":"enterprise","industry":"technology","yearFounded":1973,"contacts":[{"type":"primary","name":"Mary Williams","email":"sarah.robinson@test.org","phone":"+1-200-913-2357"},{"type":"technical","name":"John Anderson","email":"jennifer.taylor@sample.io","phone":"+1-977-823-5291"}]},"subscription":{"plan":"professional","startDate":"2020-02-21","renewalDate":"2021-02-21","amount":34860.89,"currency":"GBP","services":[{"id":"svc-856","name":"Compute Instances","quantity":7076,"unit":"license","unitPrice":151.33},{"id":"svc-919","name":"Implementation","quantity":7,"unit":"hour","unitPrice":1510.15}]}},{"id":"rec-00164","createdAt":"2021-02-01T11:52:21Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-14629806","name":"Cyberdyne Systems","segment":"enterprise","industry":"manufacturing","yearFounded":1971,"contacts":[{"type":"primary","name":"Linda White","email":"james.thomas@example.com","phone":"+1-210-561-8372"},{"type":"technical","name":"Susan Anderson","email":"joseph.miller@mock.co","phone":"+1-924-202-8028"}]},"subscription":{"plan":"free","startDate":"2020-04-22","renewalDate":"2021-04-22","amount":16021.33,"currency":"AUD","services":[{"id":"svc-206","name":"Compute Instances","quantity":4342,"unit":"TB","unitPrice":22.67},{"id":"svc-831","name":"Implementation","quantity":18,"unit":"unit","unitPrice":1135.46}]}},{"id":"rec-00165","createdAt":"2022-11-04T02:10:05Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-13308463","name":"Soylent Corp","segment":"enterprise","industry":"retail","yearFounded":1979,"contacts":[{"type":"primary","name":"James Moore","email":"james.williams@fake.tech","phone":"+1-220-222-7952"},{"type":"technical","name":"John Brown","email":"mary.martinez@mock.co","phone":"+1-484-824-3919"}]},"subscription":{"plan":"basic","startDate":"2023-02-20","renewalDate":"2026-02-20","amount":17299.65,"currency":"CAD","services":[{"id":"svc-633","name":"Cloud Storage","quantity":175,"unit":"TB","unitPrice":91.54},{"id":"svc-767","name":"Training","quantity":98,"unit":"session","unitPrice":1134.51}]}},{"id":"rec-00166","createdAt":"2020-10-13T20:23:41Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"web","region":"eu-west-1","tags":["trial","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-32848728","name":"Initech","segment":"startup","industry":"finance","yearFounded":1970,"contacts":[{"type":"primary","name":"Linda Martinez","email":"richard.thompson@fake.tech","phone":"+1-829-358-3172"},{"type":"technical","name":"David Jones","email":"james.brown@mock.co","phone":"+1-869-499-5171"}]},"subscription":{"plan":"free","startDate":"2022-03-08","renewalDate":"2023-03-08","amount":1486.25,"currency":"CAD","services":[{"id":"svc-890","name":"Analytics","quantity":9838,"unit":"GB","unitPrice":465.71},{"id":"svc-341","name":"Support Plan","quantity":33,"unit":"hour","unitPrice":1677.78}]}},{"id":"rec-00167","createdAt":"2020-03-04T22:53:23Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-27213713","name":"Weyland-Yutani","segment":"startup","industry":"manufacturing","yearFounded":1985,"contacts":[{"type":"primary","name":"Jessica Martin","email":"elizabeth.thompson@example.com","phone":"+1-314-953-6480"},{"type":"technical","name":"Sarah Wilson","email":"thomas.taylor@sample.io","phone":"+1-485-506-6520"}]},"subscription":{"plan":"professional","startDate":"2023-10-26","renewalDate":"2026-10-26","amount":34394.53,"currency":"AUD","services":[{"id":"svc-879","name":"Cloud Storage","quantity":7573,"unit":"license","unitPrice":254.45},{"id":"svc-884","name":"Support Plan","quantity":91,"unit":"hour","unitPrice":1550.73}]}},{"id":"rec-00168","createdAt":"2024-06-16T01:15:50Z","type":"partner","status":"active","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-97836551","name":"Virtucon","segment":"startup","industry":"finance","yearFounded":2016,"contacts":[{"type":"primary","name":"Susan Wilson","email":"jessica.miller@fake.tech","phone":"+1-564-313-8900"},{"type":"technical","name":"Mary Williams","email":"michael.harris@mock.co","phone":"+1-730-550-1509"}]},"subscription":{"plan":"professional","startDate":"2020-12-12","renewalDate":"2023-12-12","amount":5284.51,"currency":"CAD","services":[{"id":"svc-636","name":"Database","quantity":5406,"unit":"user","unitPrice":423.02},{"id":"svc-625","name":"Support Plan","quantity":63,"unit":"subscription","unitPrice":1479.47}]}},{"id":"rec-00169","createdAt":"2021-08-24T18:44:13Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"import","region":"sa-east-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-79685586","name":"Acme Corp","segment":"mid-market","industry":"finance","yearFounded":1960,"contacts":[{"type":"primary","name":"Joseph Brown","email":"charles.robinson@demo.net","phone":"+1-782-698-3254"},{"type":"technical","name":"Karen Jones","email":"john.jackson@example.com","phone":"+1-658-336-3714"}]},"subscription":{"plan":"basic","startDate":"2024-03-11","renewalDate":"2026-03-11","amount":17957.97,"currency":"EUR","services":[{"id":"svc-777","name":"Cloud Storage","quantity":9023,"unit":"user","unitPrice":33.32},{"id":"svc-826","name":"Maintenance","quantity":70,"unit":"subscription","unitPrice":1407.64}]}},{"id":"rec-00170","createdAt":"2022-07-05T21:55:21Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-79061853","name":"Stark Industries","segment":"mid-market","industry":"healthcare","yearFounded":1968,"contacts":[{"type":"primary","name":"Patricia Johnson","email":"william.jackson@test.org","phone":"+1-538-940-9356"},{"type":"technical","name":"Robert Robinson","email":"jessica.brown@fake.tech","phone":"+1-858-380-6340"}]},"subscription":{"plan":"basic","startDate":"2024-04-28","renewalDate":"2027-04-28","amount":19790.0,"currency":"USD","services":[{"id":"svc-634","name":"Database","quantity":4921,"unit":"user","unitPrice":215.08},{"id":"svc-999","name":"Training","quantity":13,"unit":"unit","unitPrice":951.16}]}},{"id":"rec-00171","createdAt":"2025-11-23T22:34:27Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-91213360","name":"Virtucon","segment":"startup","industry":"technology","yearFounded":1954,"contacts":[{"type":"primary","name":"Elizabeth Martin","email":"sarah.moore@demo.net","phone":"+1-834-605-7504"},{"type":"technical","name":"Jessica Thomas","email":"richard.garcia@mock.co","phone":"+1-703-220-2939"}]},"subscription":{"plan":"professional","startDate":"2024-01-22","renewalDate":"2025-01-22","amount":16856.49,"currency":"USD","services":[{"id":"svc-538","name":"Database","quantity":6172,"unit":"license","unitPrice":189.73},{"id":"svc-757","name":"Maintenance","quantity":42,"unit":"subscription","unitPrice":1410.96}]}},{"id":"rec-00172","createdAt":"2023-03-09T06:06:09Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-97161134","name":"Acme Corp","segment":"mid-market","industry":"technology","yearFounded":1954,"contacts":[{"type":"primary","name":"Thomas Harris","email":"jennifer.johnson@example.com","phone":"+1-523-137-3903"},{"type":"technical","name":"Patricia Harris","email":"jessica.garcia@sample.io","phone":"+1-393-931-1808"}]},"subscription":{"plan":"free","startDate":"2022-12-10","renewalDate":"2023-12-10","amount":42058.23,"currency":"AUD","services":[{"id":"svc-230","name":"Compute Instances","quantity":3908,"unit":"instance","unitPrice":406.95},{"id":"svc-217","name":"Support Plan","quantity":77,"unit":"package","unitPrice":68.99}]}},{"id":"rec-00173","createdAt":"2021-02-05T07:07:28Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-31436289","name":"Globex","segment":"small-business","industry":"finance","yearFounded":2023,"contacts":[{"type":"primary","name":"Richard Miller","email":"elizabeth.jackson@mock.co","phone":"+1-420-413-9595"},{"type":"technical","name":"Robert Davis","email":"linda.thomas@mock.co","phone":"+1-551-316-6337"}]},"subscription":{"plan":"free","startDate":"2022-02-15","renewalDate":"2024-02-15","amount":29538.58,"currency":"EUR","services":[{"id":"svc-862","name":"Compute Instances","quantity":9531,"unit":"GB","unitPrice":361.39},{"id":"svc-814","name":"Implementation","quantity":39,"unit":"hour","unitPrice":1197.25}]}},{"id":"rec-00174","createdAt":"2024-03-06T17:14:56Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"import","region":"us-west-2","tags":["returning","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-75011023","name":"Oscorp","segment":"small-business","industry":"education","yearFounded":2003,"contacts":[{"type":"primary","name":"Mary Wilson","email":"john.jones@fake.tech","phone":"+1-937-352-8092"},{"type":"technical","name":"David Garcia","email":"elizabeth.brown@mock.co","phone":"+1-345-755-9807"}]},"subscription":{"plan":"enterprise","startDate":"2022-06-03","renewalDate":"2025-06-03","amount":49507.0,"currency":"EUR","services":[{"id":"svc-485","name":"Cloud Storage","quantity":4745,"unit":"GB","unitPrice":456.47},{"id":"svc-468","name":"Training","quantity":70,"unit":"hour","unitPrice":1906.64}]}},{"id":"rec-00175","createdAt":"2022-08-06T11:56:10Z","type":"lead","status":"active","priority":"low","metadata":{"source":"web","region":"ap-southeast-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-46091947","name":"Wayne Enterprises","segment":"mid-market","industry":"technology","yearFounded":2000,"contacts":[{"type":"primary","name":"Sarah Anderson","email":"nancy.white@mock.co","phone":"+1-308-994-9556"},{"type":"technical","name":"John Jones","email":"mary.martinez@sample.io","phone":"+1-474-858-7336"}]},"subscription":{"plan":"free","startDate":"2020-02-26","renewalDate":"2022-02-26","amount":46479.44,"currency":"AUD","services":[{"id":"svc-918","name":"Database","quantity":3216,"unit":"GB","unitPrice":369.92},{"id":"svc-721","name":"Implementation","quantity":11,"unit":"package","unitPrice":414.09}]}},{"id":"rec-00176","createdAt":"2024-01-13T23:54:48Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"api","region":"us-west-2","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-69083530","name":"Umbrella Corp","segment":"enterprise","industry":"manufacturing","yearFounded":2010,"contacts":[{"type":"primary","name":"John Miller","email":"susan.harris@example.com","phone":"+1-461-811-8780"},{"type":"technical","name":"Susan Taylor","email":"patricia.anderson@example.com","phone":"+1-389-654-1083"}]},"subscription":{"plan":"custom","startDate":"2021-06-28","renewalDate":"2023-06-28","amount":17633.03,"currency":"CAD","services":[{"id":"svc-990","name":"Database","quantity":7848,"unit":"GB","unitPrice":330.47},{"id":"svc-366","name":"Maintenance","quantity":84,"unit":"unit","unitPrice":210.03}]}},{"id":"rec-00177","createdAt":"2025-08-25T08:24:53Z","type":"partner","status":"active","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["new","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-27250306","name":"Nakatomi Trading Corp","segment":"startup","industry":"manufacturing","yearFounded":1967,"contacts":[{"type":"primary","name":"Jessica Jackson","email":"michael.jackson@test.org","phone":"+1-898-431-9359"},{"type":"technical","name":"Charles Williams","email":"mary.miller@fake.tech","phone":"+1-659-857-8054"}]},"subscription":{"plan":"custom","startDate":"2024-07-22","renewalDate":"2026-07-22","amount":12707.16,"currency":"GBP","services":[{"id":"svc-424","name":"Database","quantity":5288,"unit":"GB","unitPrice":283.01},{"id":"svc-999","name":"Maintenance","quantity":22,"unit":"package","unitPrice":1359.68}]}},{"id":"rec-00178","createdAt":"2024-06-24T17:10:10Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-95590826","name":"Aperture Science","segment":"mid-market","industry":"manufacturing","yearFounded":1977,"contacts":[{"type":"primary","name":"Jessica Thomas","email":"susan.garcia@fake.tech","phone":"+1-313-739-2942"},{"type":"technical","name":"Patricia Johnson","email":"jessica.smith@sample.io","phone":"+1-340-318-2893"}]},"subscription":{"plan":"enterprise","startDate":"2022-06-12","renewalDate":"2023-06-12","amount":21770.87,"currency":"CAD","services":[{"id":"svc-220","name":"Security","quantity":5093,"unit":"user","unitPrice":234.1},{"id":"svc-525","name":"Consulting","quantity":68,"unit":"session","unitPrice":1361.08}]}},{"id":"rec-00179","createdAt":"2022-11-04T15:41:36Z","type":"lead","status":"active","priority":"low","metadata":{"source":"mobile","region":"us-east-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-31742725","name":"Virtucon","segment":"mid-market","industry":"technology","yearFounded":1979,"contacts":[{"type":"primary","name":"Jessica Smith","email":"joseph.wilson@test.org","phone":"+1-617-824-2709"},{"type":"technical","name":"Nancy Moore","email":"james.wilson@test.org","phone":"+1-818-940-5075"}]},"subscription":{"plan":"enterprise","startDate":"2021-01-19","renewalDate":"2024-01-19","amount":448.69,"currency":"CAD","services":[{"id":"svc-254","name":"Compute Instances","quantity":680,"unit":"instance","unitPrice":490.39},{"id":"svc-862","name":"Maintenance","quantity":52,"unit":"session","unitPrice":321.28}]}},{"id":"rec-00180","createdAt":"2021-04-05T10:17:38Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"api","region":"sa-east-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-63017073","name":"Umbrella Corp","segment":"enterprise","industry":"technology","yearFounded":1993,"contacts":[{"type":"primary","name":"Susan Harris","email":"sarah.anderson@test.org","phone":"+1-882-268-9404"},{"type":"technical","name":"Sarah Jones","email":"elizabeth.garcia@demo.net","phone":"+1-446-997-5569"}]},"subscription":{"plan":"enterprise","startDate":"2024-01-24","renewalDate":"2026-01-24","amount":41507.56,"currency":"CAD","services":[{"id":"svc-991","name":"Cloud Storage","quantity":4795,"unit":"instance","unitPrice":379.62},{"id":"svc-620","name":"Support Plan","quantity":31,"unit":"hour","unitPrice":356.32}]}},{"id":"rec-00181","createdAt":"2022-06-16T13:05:20Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-85750094","name":"Wayne Enterprises","segment":"mid-market","industry":"finance","yearFounded":1957,"contacts":[{"type":"primary","name":"William Williams","email":"charles.thomas@fake.tech","phone":"+1-672-232-6362"},{"type":"technical","name":"Jessica Jones","email":"thomas.jackson@mock.co","phone":"+1-587-534-7427"}]},"subscription":{"plan":"free","startDate":"2020-06-20","renewalDate":"2021-06-20","amount":17032.64,"currency":"GBP","services":[{"id":"svc-665","name":"Database","quantity":9598,"unit":"instance","unitPrice":418.37},{"id":"svc-658","name":"Maintenance","quantity":37,"unit":"unit","unitPrice":1808.89}]}},{"id":"rec-00182","createdAt":"2024-08-06T19:55:04Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-99298628","name":"Acme Corp","segment":"mid-market","industry":"manufacturing","yearFounded":2020,"contacts":[{"type":"primary","name":"William Thompson","email":"james.garcia@mock.co","phone":"+1-685-856-3741"},{"type":"technical","name":"Mary Jackson","email":"jennifer.wilson@fake.tech","phone":"+1-507-852-8181"}]},"subscription":{"plan":"custom","startDate":"2020-05-22","renewalDate":"2022-05-22","amount":34541.11,"currency":"CAD","services":[{"id":"svc-848","name":"Database","quantity":6686,"unit":"license","unitPrice":77.08},{"id":"svc-284","name":"Training","quantity":30,"unit":"subscription","unitPrice":87.58}]}},{"id":"rec-00183","createdAt":"2023-11-08T16:02:56Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"us-east-1","tags":["new","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-98568086","name":"Globex","segment":"enterprise","industry":"manufacturing","yearFounded":1967,"contacts":[{"type":"primary","name":"Susan Harris","email":"sarah.taylor@mock.co","phone":"+1-493-736-6081"},{"type":"technical","name":"Michael Jones","email":"william.moore@sample.io","phone":"+1-976-370-2763"}]},"subscription":{"plan":"enterprise","startDate":"2021-12-11","renewalDate":"2023-12-11","amount":19934.36,"currency":"AUD","services":[{"id":"svc-581","name":"Database","quantity":1944,"unit":"license","unitPrice":2.44},{"id":"svc-396","name":"Maintenance","quantity":18,"unit":"subscription","unitPrice":1106.93}]}},{"id":"rec-00184","createdAt":"2020-08-22T07:22:01Z","type":"partner","status":"pending","priority":"low","metadata":{"source":"manual","region":"ap-southeast-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-27296755","name":"Oscorp","segment":"small-business","industry":"retail","yearFounded":1992,"contacts":[{"type":"primary","name":"Charles Davis","email":"patricia.jones@demo.net","phone":"+1-686-983-5708"},{"type":"technical","name":"John Anderson","email":"linda.anderson@demo.net","phone":"+1-733-190-4535"}]},"subscription":{"plan":"enterprise","startDate":"2023-03-18","renewalDate":"2024-03-18","amount":45310.03,"currency":"AUD","services":[{"id":"svc-946","name":"Compute Instances","quantity":8720,"unit":"instance","unitPrice":150.36},{"id":"svc-548","name":"Maintenance","quantity":39,"unit":"session","unitPrice":322.08}]}},{"id":"rec-00185","createdAt":"2020-01-04T02:04:21Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"api","region":"us-west-2","tags":["returning","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-17402977","name":"Massive Dynamic","segment":"enterprise","industry":"education","yearFounded":1956,"contacts":[{"type":"primary","name":"Nancy Brown","email":"robert.white@fake.tech","phone":"+1-269-642-3521"},{"type":"technical","name":"Nancy Martin","email":"nancy.thomas@example.com","phone":"+1-890-358-2599"}]},"subscription":{"plan":"enterprise","startDate":"2020-12-01","renewalDate":"2023-12-01","amount":30267.58,"currency":"AUD","services":[{"id":"svc-693","name":"Database","quantity":5234,"unit":"TB","unitPrice":408.23},{"id":"svc-836","name":"Training","quantity":67,"unit":"package","unitPrice":1889.07}]}},{"id":"rec-00186","createdAt":"2020-03-27T22:44:44Z","type":"customer","status":"active","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-94929131","name":"Weyland-Yutani","segment":"mid-market","industry":"healthcare","yearFounded":1973,"contacts":[{"type":"primary","name":"Linda Robinson","email":"robert.davis@sample.io","phone":"+1-849-593-5292"},{"type":"technical","name":"Joseph Wilson","email":"james.miller@test.org","phone":"+1-842-550-4693"}]},"subscription":{"plan":"custom","startDate":"2024-02-05","renewalDate":"2026-02-05","amount":36385.23,"currency":"USD","services":[{"id":"svc-195","name":"Analytics","quantity":358,"unit":"license","unitPrice":210.94},{"id":"svc-557","name":"Training","quantity":46,"unit":"subscription","unitPrice":1173.43}]}},{"id":"rec-00187","createdAt":"2020-05-13T01:05:46Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-70679895","name":"Wayne Enterprises","segment":"enterprise","industry":"healthcare","yearFounded":1952,"contacts":[{"type":"primary","name":"William Brown","email":"william.robinson@test.org","phone":"+1-369-388-3277"},{"type":"technical","name":"Karen Harris","email":"david.davis@example.com","phone":"+1-420-719-9037"}]},"subscription":{"plan":"basic","startDate":"2020-05-06","renewalDate":"2021-05-06","amount":3326.87,"currency":"USD","services":[{"id":"svc-663","name":"Compute Instances","quantity":6948,"unit":"user","unitPrice":469.19},{"id":"svc-625","name":"Training","quantity":51,"unit":"subscription","unitPrice":1632.48}]}},{"id":"rec-00188","createdAt":"2025-09-18T14:01:29Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-89103602","name":"Umbrella Corp","segment":"enterprise","industry":"manufacturing","yearFounded":1957,"contacts":[{"type":"primary","name":"Joseph Thomas","email":"david.anderson@demo.net","phone":"+1-864-810-5500"},{"type":"technical","name":"Patricia Thompson","email":"linda.jackson@fake.tech","phone":"+1-510-974-4727"}]},"subscription":{"plan":"professional","startDate":"2020-12-22","renewalDate":"2023-12-22","amount":18771.96,"currency":"USD","services":[{"id":"svc-178","name":"Cloud Storage","quantity":4633,"unit":"TB","unitPrice":66.05},{"id":"svc-140","name":"Training","quantity":76,"unit":"package","unitPrice":62.47}]}},{"id":"rec-00189","createdAt":"2025-06-15T08:11:12Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-87642089","name":"Globex","segment":"small-business","industry":"healthcare","yearFounded":2001,"contacts":[{"type":"primary","name":"Nancy Taylor","email":"elizabeth.brown@demo.net","phone":"+1-936-543-8854"},{"type":"technical","name":"Jennifer Williams","email":"william.johnson@sample.io","phone":"+1-202-438-5110"}]},"subscription":{"plan":"professional","startDate":"2024-04-10","renewalDate":"2027-04-10","amount":4399.47,"currency":"CAD","services":[{"id":"svc-287","name":"Database","quantity":5979,"unit":"TB","unitPrice":56.48},{"id":"svc-365","name":"Support Plan","quantity":35,"unit":"hour","unitPrice":1602.12}]}},{"id":"rec-00190","createdAt":"2025-03-10T13:22:58Z","type":"partner","status":"active","priority":"high","metadata":{"source":"mobile","region":"eu-west-1","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-57990368","name":"Initech","segment":"mid-market","industry":"retail","yearFounded":1964,"contacts":[{"type":"primary","name":"Mary Thomas","email":"richard.taylor@test.org","phone":"+1-291-812-1207"},{"type":"technical","name":"Elizabeth Smith","email":"karen.white@demo.net","phone":"+1-475-814-3207"}]},"subscription":{"plan":"basic","startDate":"2020-12-26","renewalDate":"2021-12-26","amount":15113.84,"currency":"GBP","services":[{"id":"svc-154","name":"Security","quantity":7207,"unit":"TB","unitPrice":206.12},{"id":"svc-535","name":"Training","quantity":4,"unit":"subscription","unitPrice":1409.63}]}},{"id":"rec-00191","createdAt":"2021-01-22T01:28:03Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"import","region":"sa-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-66717265","name":"Cyberdyne Systems","segment":"small-business","industry":"retail","yearFounded":1986,"contacts":[{"type":"primary","name":"Jennifer Robinson","email":"nancy.jones@example.com","phone":"+1-433-322-6286"},{"type":"technical","name":"William Thomas","email":"david.miller@sample.io","phone":"+1-982-921-4218"}]},"subscription":{"plan":"enterprise","startDate":"2022-05-22","renewalDate":"2024-05-22","amount":41866.96,"currency":"USD","services":[{"id":"svc-131","name":"Database","quantity":7150,"unit":"GB","unitPrice":165.35},{"id":"svc-506","name":"Consulting","quantity":27,"unit":"package","unitPrice":291.01}]}},{"id":"rec-00192","createdAt":"2023-08-25T21:45:18Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-43067057","name":"LexCorp","segment":"mid-market","industry":"healthcare","yearFounded":2003,"contacts":[{"type":"primary","name":"Sarah Martinez","email":"john.jackson@test.org","phone":"+1-865-398-1413"},{"type":"technical","name":"Susan Garcia","email":"susan.johnson@mock.co","phone":"+1-979-479-5922"}]},"subscription":{"plan":"enterprise","startDate":"2021-01-06","renewalDate":"2022-01-06","amount":42883.63,"currency":"GBP","services":[{"id":"svc-270","name":"Database","quantity":8991,"unit":"GB","unitPrice":293.99},{"id":"svc-662","name":"Consulting","quantity":30,"unit":"package","unitPrice":1358.03}]}},{"id":"rec-00193","createdAt":"2022-02-14T20:55:56Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["trial","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-45559921","name":"Virtucon","segment":"small-business","industry":"healthcare","yearFounded":1993,"contacts":[{"type":"primary","name":"Patricia Robinson","email":"karen.anderson@mock.co","phone":"+1-806-235-3792"},{"type":"technical","name":"Sarah Williams","email":"elizabeth.moore@fake.tech","phone":"+1-641-758-7514"}]},"subscription":{"plan":"professional","startDate":"2021-10-26","renewalDate":"2023-10-26","amount":33101.51,"currency":"USD","services":[{"id":"svc-237","name":"Database","quantity":2712,"unit":"GB","unitPrice":492.85},{"id":"svc-132","name":"Consulting","quantity":32,"unit":"session","unitPrice":149.5}]}},{"id":"rec-00194","createdAt":"2024-11-17T20:48:27Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-62655536","name":"Globex","segment":"small-business","industry":"technology","yearFounded":1966,"contacts":[{"type":"primary","name":"Michael White","email":"jennifer.moore@test.org","phone":"+1-955-823-2285"},{"type":"technical","name":"Elizabeth Davis","email":"joseph.harris@test.org","phone":"+1-725-505-7780"}]},"subscription":{"plan":"custom","startDate":"2021-09-01","renewalDate":"2024-09-01","amount":7447.22,"currency":"AUD","services":[{"id":"svc-857","name":"Database","quantity":3909,"unit":"instance","unitPrice":149.54},{"id":"svc-153","name":"Maintenance","quantity":37,"unit":"package","unitPrice":59.59}]}},{"id":"rec-00195","createdAt":"2023-05-21T19:23:50Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"import","region":"sa-east-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-55900034","name":"Initech","segment":"small-business","industry":"technology","yearFounded":1956,"contacts":[{"type":"primary","name":"Nancy White","email":"susan.davis@example.com","phone":"+1-521-285-5450"},{"type":"technical","name":"Charles Johnson","email":"patricia.garcia@test.org","phone":"+1-588-806-2044"}]},"subscription":{"plan":"professional","startDate":"2023-07-03","renewalDate":"2025-07-03","amount":307.35,"currency":"EUR","services":[{"id":"svc-875","name":"Compute Instances","quantity":2586,"unit":"TB","unitPrice":327.63},{"id":"svc-534","name":"Training","quantity":39,"unit":"hour","unitPrice":1446.54}]}},{"id":"rec-00196","createdAt":"2020-01-21T14:06:19Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"web","region":"eu-west-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-62819270","name":"Acme Corp","segment":"enterprise","industry":"education","yearFounded":1966,"contacts":[{"type":"primary","name":"Mary Jackson","email":"joseph.thompson@test.org","phone":"+1-568-440-6448"},{"type":"technical","name":"Mary Moore","email":"karen.brown@test.org","phone":"+1-673-740-7099"}]},"subscription":{"plan":"enterprise","startDate":"2020-04-10","renewalDate":"2021-04-10","amount":47088.62,"currency":"USD","services":[{"id":"svc-911","name":"Compute Instances","quantity":9383,"unit":"GB","unitPrice":403.9},{"id":"svc-759","name":"Maintenance","quantity":94,"unit":"subscription","unitPrice":1727.34}]}},{"id":"rec-00197","createdAt":"2022-12-11T18:05:36Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-82501363","name":"Acme Corp","segment":"enterprise","industry":"healthcare","yearFounded":1987,"contacts":[{"type":"primary","name":"Patricia Davis","email":"susan.johnson@demo.net","phone":"+1-728-287-3769"},{"type":"technical","name":"Patricia Wilson","email":"elizabeth.anderson@fake.tech","phone":"+1-617-741-6709"}]},"subscription":{"plan":"free","startDate":"2022-07-06","renewalDate":"2023-07-06","amount":36143.62,"currency":"EUR","services":[{"id":"svc-992","name":"Compute Instances","quantity":6651,"unit":"TB","unitPrice":194.19},{"id":"svc-565","name":"Training","quantity":87,"unit":"hour","unitPrice":707.61}]}},{"id":"rec-00198","createdAt":"2022-03-03T21:40:13Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["vip","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-24218997","name":"Oscorp","segment":"mid-market","industry":"education","yearFounded":1955,"contacts":[{"type":"primary","name":"Susan Martinez","email":"robert.williams@test.org","phone":"+1-368-453-8261"},{"type":"technical","name":"Linda Jackson","email":"richard.davis@demo.net","phone":"+1-717-545-5831"}]},"subscription":{"plan":"enterprise","startDate":"2023-04-13","renewalDate":"2025-04-13","amount":45620.29,"currency":"GBP","services":[{"id":"svc-796","name":"Database","quantity":2994,"unit":"instance","unitPrice":163.95},{"id":"svc-952","name":"Maintenance","quantity":11,"unit":"hour","unitPrice":295.08}]}},{"id":"rec-00199","createdAt":"2025-02-14T06:39:45Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-87717389","name":"Soylent Corp","segment":"small-business","industry":"retail","yearFounded":1957,"contacts":[{"type":"primary","name":"William Williams","email":"john.johnson@example.com","phone":"+1-859-108-4774"},{"type":"technical","name":"James Miller","email":"michael.white@test.org","phone":"+1-312-760-8553"}]},"subscription":{"plan":"custom","startDate":"2024-12-21","renewalDate":"2026-12-21","amount":30546.08,"currency":"AUD","services":[{"id":"svc-766","name":"Compute Instances","quantity":8268,"unit":"license","unitPrice":264.31},{"id":"svc-133","name":"Implementation","quantity":43,"unit":"package","unitPrice":59.42}]}},{"id":"rec-00200","createdAt":"2025-07-03T00:13:55Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-22553946","name":"Oscorp","segment":"mid-market","industry":"retail","yearFounded":2013,"contacts":[{"type":"primary","name":"Charles Smith","email":"patricia.white@mock.co","phone":"+1-945-267-3732"},{"type":"technical","name":"Nancy Wilson","email":"charles.garcia@sample.io","phone":"+1-286-667-5345"}]},"subscription":{"plan":"enterprise","startDate":"2022-03-26","renewalDate":"2025-03-26","amount":28633.01,"currency":"USD","services":[{"id":"svc-370","name":"Database","quantity":3202,"unit":"GB","unitPrice":320.79},{"id":"svc-387","name":"Support Plan","quantity":14,"unit":"subscription","unitPrice":1837.82}]}},{"id":"rec-00201","createdAt":"2023-08-21T22:22:30Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-40823615","name":"Nakatomi Trading Corp","segment":"enterprise","industry":"retail","yearFounded":2017,"contacts":[{"type":"primary","name":"John Jones","email":"karen.thompson@demo.net","phone":"+1-719-926-8344"},{"type":"technical","name":"David Harris","email":"robert.johnson@mock.co","phone":"+1-319-973-3911"}]},"subscription":{"plan":"basic","startDate":"2022-10-18","renewalDate":"2024-10-18","amount":1545.85,"currency":"AUD","services":[{"id":"svc-100","name":"Compute Instances","quantity":131,"unit":"GB","unitPrice":241.28},{"id":"svc-313","name":"Training","quantity":74,"unit":"session","unitPrice":1135.34}]}},{"id":"rec-00202","createdAt":"2024-05-05T01:21:21Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["vip","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-57755845","name":"Stark Industries","segment":"startup","industry":"manufacturing","yearFounded":1991,"contacts":[{"type":"primary","name":"Charles White","email":"joseph.davis@sample.io","phone":"+1-820-472-1919"},{"type":"technical","name":"Elizabeth Jones","email":"linda.anderson@demo.net","phone":"+1-898-967-8632"}]},"subscription":{"plan":"professional","startDate":"2023-09-03","renewalDate":"2025-09-03","amount":44016.76,"currency":"USD","services":[{"id":"svc-251","name":"Cloud Storage","quantity":6610,"unit":"GB","unitPrice":238.23},{"id":"svc-562","name":"Support Plan","quantity":65,"unit":"hour","unitPrice":957.79}]}},{"id":"rec-00203","createdAt":"2024-01-26T17:24:23Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-76638720","name":"Umbrella Corp","segment":"small-business","industry":"education","yearFounded":1971,"contacts":[{"type":"primary","name":"Charles Martin","email":"jessica.brown@sample.io","phone":"+1-313-598-3669"},{"type":"technical","name":"Richard Wilson","email":"joseph.martin@test.org","phone":"+1-721-146-2954"}]},"subscription":{"plan":"custom","startDate":"2021-09-18","renewalDate":"2024-09-18","amount":49404.43,"currency":"EUR","services":[{"id":"svc-724","name":"Analytics","quantity":9381,"unit":"instance","unitPrice":340.31},{"id":"svc-317","name":"Implementation","quantity":25,"unit":"session","unitPrice":1221.88}]}},{"id":"rec-00204","createdAt":"2025-03-23T21:17:18Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"eu-west-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-96663942","name":"Oscorp","segment":"startup","industry":"education","yearFounded":1963,"contacts":[{"type":"primary","name":"Patricia Thompson","email":"james.martin@sample.io","phone":"+1-787-361-6270"},{"type":"technical","name":"William Thomas","email":"david.miller@demo.net","phone":"+1-433-433-4665"}]},"subscription":{"plan":"enterprise","startDate":"2021-06-10","renewalDate":"2022-06-10","amount":2463.65,"currency":"AUD","services":[{"id":"svc-645","name":"Cloud Storage","quantity":5938,"unit":"GB","unitPrice":466.06},{"id":"svc-798","name":"Implementation","quantity":59,"unit":"unit","unitPrice":360.01}]}},{"id":"rec-00205","createdAt":"2021-07-25T18:06:21Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"us-west-2","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-14451083","name":"Umbrella Corp","segment":"startup","industry":"technology","yearFounded":1980,"contacts":[{"type":"primary","name":"Susan White","email":"nancy.johnson@demo.net","phone":"+1-602-544-6506"},{"type":"technical","name":"Patricia Jones","email":"susan.johnson@fake.tech","phone":"+1-301-534-9293"}]},"subscription":{"plan":"free","startDate":"2021-08-02","renewalDate":"2024-08-02","amount":10903.96,"currency":"AUD","services":[{"id":"svc-764","name":"Cloud Storage","quantity":9440,"unit":"user","unitPrice":492.65},{"id":"svc-741","name":"Training","quantity":2,"unit":"hour","unitPrice":1838.44}]}},{"id":"rec-00206","createdAt":"2025-08-11T23:06:29Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-99434327","name":"Wayne Enterprises","segment":"startup","industry":"retail","yearFounded":1974,"contacts":[{"type":"primary","name":"Joseph Miller","email":"linda.smith@example.com","phone":"+1-703-568-7507"},{"type":"technical","name":"Jennifer Jackson","email":"richard.jackson@fake.tech","phone":"+1-296-539-1648"}]},"subscription":{"plan":"custom","startDate":"2023-01-05","renewalDate":"2025-01-05","amount":27768.0,"currency":"EUR","services":[{"id":"svc-949","name":"Compute Instances","quantity":2393,"unit":"instance","unitPrice":222.72},{"id":"svc-104","name":"Implementation","quantity":62,"unit":"hour","unitPrice":454.08}]}},{"id":"rec-00207","createdAt":"2024-04-18T15:21:09Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"import","region":"ap-southeast-1","tags":["vip","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-39575232","name":"Wayne Enterprises","segment":"small-business","industry":"finance","yearFounded":1950,"contacts":[{"type":"primary","name":"Susan Smith","email":"david.johnson@fake.tech","phone":"+1-786-152-4537"},{"type":"technical","name":"Jessica Jackson","email":"patricia.jones@test.org","phone":"+1-224-268-2975"}]},"subscription":{"plan":"enterprise","startDate":"2023-04-02","renewalDate":"2025-04-02","amount":10155.78,"currency":"GBP","services":[{"id":"svc-136","name":"Database","quantity":9315,"unit":"TB","unitPrice":235.51},{"id":"svc-311","name":"Implementation","quantity":25,"unit":"session","unitPrice":819.54}]}},{"id":"rec-00208","createdAt":"2023-09-12T10:23:48Z","type":"customer","status":"inactive","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-45680081","name":"Umbrella Corp","segment":"startup","industry":"technology","yearFounded":2013,"contacts":[{"type":"primary","name":"Joseph Brown","email":"sarah.jackson@sample.io","phone":"+1-764-362-9154"},{"type":"technical","name":"William Brown","email":"james.johnson@sample.io","phone":"+1-739-752-8433"}]},"subscription":{"plan":"free","startDate":"2022-12-26","renewalDate":"2023-12-26","amount":22857.36,"currency":"USD","services":[{"id":"svc-984","name":"Cloud Storage","quantity":9470,"unit":"TB","unitPrice":193.48},{"id":"svc-600","name":"Consulting","quantity":14,"unit":"session","unitPrice":889.61}]}},{"id":"rec-00209","createdAt":"2021-11-26T13:06:23Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-94739634","name":"Umbrella Corp","segment":"startup","industry":"manufacturing","yearFounded":2002,"contacts":[{"type":"primary","name":"Robert Harris","email":"linda.harris@example.com","phone":"+1-495-804-3125"},{"type":"technical","name":"James Williams","email":"richard.moore@test.org","phone":"+1-672-505-9283"}]},"subscription":{"plan":"free","startDate":"2021-08-27","renewalDate":"2022-08-27","amount":47215.63,"currency":"AUD","services":[{"id":"svc-900","name":"Analytics","quantity":4189,"unit":"user","unitPrice":30.76},{"id":"svc-856","name":"Support Plan","quantity":49,"unit":"session","unitPrice":1568.77}]}},{"id":"rec-00210","createdAt":"2024-11-10T18:18:45Z","type":"customer","status":"active","priority":"low","metadata":{"source":"import","region":"sa-east-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-20168024","name":"Wayne Enterprises","segment":"startup","industry":"retail","yearFounded":1967,"contacts":[{"type":"primary","name":"Jennifer Smith","email":"karen.robinson@sample.io","phone":"+1-894-875-2820"},{"type":"technical","name":"Karen Johnson","email":"jennifer.moore@mock.co","phone":"+1-295-299-8782"}]},"subscription":{"plan":"free","startDate":"2022-03-22","renewalDate":"2025-03-22","amount":1995.71,"currency":"GBP","services":[{"id":"svc-193","name":"Compute Instances","quantity":2977,"unit":"TB","unitPrice":39.23},{"id":"svc-972","name":"Support Plan","quantity":39,"unit":"unit","unitPrice":683.27}]}},{"id":"rec-00211","createdAt":"2022-07-25T15:31:45Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["returning","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-78422596","name":"Umbrella Corp","segment":"startup","industry":"technology","yearFounded":1981,"contacts":[{"type":"primary","name":"David Taylor","email":"mary.taylor@demo.net","phone":"+1-568-262-9536"},{"type":"technical","name":"James Jackson","email":"sarah.jones@mock.co","phone":"+1-960-840-2291"}]},"subscription":{"plan":"enterprise","startDate":"2024-01-01","renewalDate":"2026-01-01","amount":39114.86,"currency":"AUD","services":[{"id":"svc-327","name":"Database","quantity":3705,"unit":"GB","unitPrice":453.53},{"id":"svc-670","name":"Support Plan","quantity":92,"unit":"package","unitPrice":1416.04}]}},{"id":"rec-00212","createdAt":"2021-12-17T09:55:36Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-24032856","name":"Acme Corp","segment":"mid-market","industry":"manufacturing","yearFounded":1986,"contacts":[{"type":"primary","name":"Jessica Moore","email":"joseph.johnson@example.com","phone":"+1-305-199-8853"},{"type":"technical","name":"David Taylor","email":"david.martin@demo.net","phone":"+1-526-289-1009"}]},"subscription":{"plan":"free","startDate":"2021-02-10","renewalDate":"2023-02-10","amount":29822.16,"currency":"USD","services":[{"id":"svc-870","name":"Database","quantity":233,"unit":"user","unitPrice":23.82},{"id":"svc-486","name":"Support Plan","quantity":3,"unit":"package","unitPrice":1745.07}]}},{"id":"rec-00213","createdAt":"2020-05-23T14:11:43Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"api","region":"sa-east-1","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-91957325","name":"Stark Industries","segment":"startup","industry":"technology","yearFounded":1964,"contacts":[{"type":"primary","name":"Jennifer Thompson","email":"patricia.anderson@mock.co","phone":"+1-332-523-3434"},{"type":"technical","name":"Richard White","email":"jennifer.jackson@fake.tech","phone":"+1-226-883-5812"}]},"subscription":{"plan":"enterprise","startDate":"2022-10-09","renewalDate":"2025-10-09","amount":49593.68,"currency":"USD","services":[{"id":"svc-574","name":"Analytics","quantity":8516,"unit":"TB","unitPrice":304.68},{"id":"svc-222","name":"Maintenance","quantity":89,"unit":"session","unitPrice":512.5}]}},{"id":"rec-00214","createdAt":"2024-03-10T15:33:44Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-20529637","name":"Massive Dynamic","segment":"mid-market","industry":"finance","yearFounded":1984,"contacts":[{"type":"primary","name":"William Martin","email":"john.martin@demo.net","phone":"+1-842-597-1315"},{"type":"technical","name":"Mary Robinson","email":"joseph.wilson@demo.net","phone":"+1-260-171-2598"}]},"subscription":{"plan":"professional","startDate":"2024-09-24","renewalDate":"2026-09-24","amount":9395.57,"currency":"GBP","services":[{"id":"svc-801","name":"Compute Instances","quantity":8264,"unit":"instance","unitPrice":402.91},{"id":"svc-469","name":"Consulting","quantity":45,"unit":"subscription","unitPrice":647.88}]}},{"id":"rec-00215","createdAt":"2022-07-20T10:12:44Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"eu-west-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-93036616","name":"Weyland-Yutani","segment":"startup","industry":"retail","yearFounded":2004,"contacts":[{"type":"primary","name":"Robert Williams","email":"jennifer.wilson@demo.net","phone":"+1-337-232-7831"},{"type":"technical","name":"Jennifer Harris","email":"david.smith@mock.co","phone":"+1-658-417-7558"}]},"subscription":{"plan":"professional","startDate":"2022-01-25","renewalDate":"2025-01-25","amount":41646.8,"currency":"USD","services":[{"id":"svc-502","name":"Cloud Storage","quantity":6483,"unit":"GB","unitPrice":330.62},{"id":"svc-572","name":"Consulting","quantity":4,"unit":"unit","unitPrice":768.41}]}},{"id":"rec-00216","createdAt":"2020-10-02T19:40:06Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["trial","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-72139653","name":"Nakatomi Trading Corp","segment":"startup","industry":"healthcare","yearFounded":1993,"contacts":[{"type":"primary","name":"Susan Brown","email":"susan.thompson@mock.co","phone":"+1-797-751-3800"},{"type":"technical","name":"Richard Davis","email":"linda.miller@fake.tech","phone":"+1-622-963-5476"}]},"subscription":{"plan":"free","startDate":"2024-03-14","renewalDate":"2026-03-14","amount":6249.01,"currency":"USD","services":[{"id":"svc-394","name":"Security","quantity":7870,"unit":"user","unitPrice":275.4},{"id":"svc-561","name":"Consulting","quantity":73,"unit":"subscription","unitPrice":1471.2}]}},{"id":"rec-00217","createdAt":"2025-02-10T02:52:58Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"import","region":"us-west-2","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-56611950","name":"Nakatomi Trading Corp","segment":"startup","industry":"retail","yearFounded":1995,"contacts":[{"type":"primary","name":"Linda Wilson","email":"john.thomas@mock.co","phone":"+1-332-813-1461"},{"type":"technical","name":"Robert Smith","email":"joseph.thomas@demo.net","phone":"+1-471-306-6503"}]},"subscription":{"plan":"basic","startDate":"2023-05-13","renewalDate":"2024-05-13","amount":30783.68,"currency":"CAD","services":[{"id":"svc-137","name":"Security","quantity":9466,"unit":"instance","unitPrice":303.23},{"id":"svc-398","name":"Maintenance","quantity":2,"unit":"unit","unitPrice":1376.93}]}},{"id":"rec-00218","createdAt":"2020-10-14T16:08:32Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"import","region":"us-west-2","tags":["returning","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-64230073","name":"Aperture Science","segment":"enterprise","industry":"retail","yearFounded":2008,"contacts":[{"type":"primary","name":"Jennifer Taylor","email":"linda.martin@example.com","phone":"+1-296-266-5035"},{"type":"technical","name":"James Thompson","email":"william.white@mock.co","phone":"+1-756-768-3303"}]},"subscription":{"plan":"free","startDate":"2023-11-15","renewalDate":"2026-11-15","amount":25043.71,"currency":"USD","services":[{"id":"svc-654","name":"Analytics","quantity":9736,"unit":"user","unitPrice":49.77},{"id":"svc-255","name":"Consulting","quantity":92,"unit":"session","unitPrice":1475.48}]}},{"id":"rec-00219","createdAt":"2021-10-07T21:25:12Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-84102481","name":"Aperture Science","segment":"mid-market","industry":"manufacturing","yearFounded":2009,"contacts":[{"type":"primary","name":"Karen Garcia","email":"susan.taylor@demo.net","phone":"+1-400-576-8279"},{"type":"technical","name":"Jennifer Smith","email":"jessica.miller@fake.tech","phone":"+1-601-649-9068"}]},"subscription":{"plan":"custom","startDate":"2023-09-04","renewalDate":"2024-09-04","amount":8947.08,"currency":"CAD","services":[{"id":"svc-164","name":"Cloud Storage","quantity":1693,"unit":"license","unitPrice":58.87},{"id":"svc-619","name":"Implementation","quantity":73,"unit":"hour","unitPrice":528.35}]}},{"id":"rec-00220","createdAt":"2021-12-25T09:25:41Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-45882304","name":"Nakatomi Trading Corp","segment":"startup","industry":"education","yearFounded":1980,"contacts":[{"type":"primary","name":"John Jones","email":"james.taylor@example.com","phone":"+1-920-169-9881"},{"type":"technical","name":"James Johnson","email":"michael.garcia@mock.co","phone":"+1-232-894-2794"}]},"subscription":{"plan":"custom","startDate":"2022-08-05","renewalDate":"2023-08-05","amount":44743.01,"currency":"AUD","services":[{"id":"svc-938","name":"Analytics","quantity":5276,"unit":"user","unitPrice":39.08},{"id":"svc-315","name":"Implementation","quantity":2,"unit":"subscription","unitPrice":656.83}]}},{"id":"rec-00221","createdAt":"2022-05-25T19:37:20Z","type":"partner","status":"active","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-95580242","name":"Initech","segment":"mid-market","industry":"finance","yearFounded":1978,"contacts":[{"type":"primary","name":"Jennifer Taylor","email":"patricia.johnson@example.com","phone":"+1-619-130-2294"},{"type":"technical","name":"Charles Smith","email":"david.white@mock.co","phone":"+1-937-917-2628"}]},"subscription":{"plan":"enterprise","startDate":"2020-09-22","renewalDate":"2021-09-22","amount":7970.73,"currency":"AUD","services":[{"id":"svc-920","name":"Cloud Storage","quantity":5793,"unit":"TB","unitPrice":481.72},{"id":"svc-769","name":"Support Plan","quantity":79,"unit":"unit","unitPrice":209.64}]}},{"id":"rec-00222","createdAt":"2022-12-22T09:23:55Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"web","region":"sa-east-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-28856500","name":"Massive Dynamic","segment":"enterprise","industry":"manufacturing","yearFounded":1964,"contacts":[{"type":"primary","name":"Jennifer Martinez","email":"linda.williams@mock.co","phone":"+1-714-599-9722"},{"type":"technical","name":"Robert Davis","email":"thomas.robinson@test.org","phone":"+1-327-762-5664"}]},"subscription":{"plan":"free","startDate":"2022-08-23","renewalDate":"2025-08-23","amount":6127.75,"currency":"GBP","services":[{"id":"svc-195","name":"Compute Instances","quantity":4289,"unit":"instance","unitPrice":159.92},{"id":"svc-380","name":"Training","quantity":1,"unit":"package","unitPrice":922.26}]}},{"id":"rec-00223","createdAt":"2021-08-05T00:53:51Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"web","region":"us-west-2","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-56005396","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"finance","yearFounded":2000,"contacts":[{"type":"primary","name":"Jessica Garcia","email":"richard.anderson@sample.io","phone":"+1-988-714-6218"},{"type":"technical","name":"Susan Smith","email":"richard.garcia@mock.co","phone":"+1-261-739-5541"}]},"subscription":{"plan":"custom","startDate":"2021-01-15","renewalDate":"2024-01-15","amount":37040.68,"currency":"CAD","services":[{"id":"svc-399","name":"Security","quantity":6075,"unit":"TB","unitPrice":202.79},{"id":"svc-275","name":"Maintenance","quantity":70,"unit":"unit","unitPrice":378.96}]}},{"id":"rec-00224","createdAt":"2020-05-01T01:22:00Z","type":"lead","status":"active","priority":"low","metadata":{"source":"web","region":"us-east-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-17308812","name":"Acme Corp","segment":"mid-market","industry":"healthcare","yearFounded":1967,"contacts":[{"type":"primary","name":"William Thompson","email":"john.thomas@fake.tech","phone":"+1-221-572-4971"},{"type":"technical","name":"Elizabeth Smith","email":"karen.williams@sample.io","phone":"+1-278-899-1923"}]},"subscription":{"plan":"professional","startDate":"2021-10-16","renewalDate":"2023-10-16","amount":35265.12,"currency":"USD","services":[{"id":"svc-267","name":"Cloud Storage","quantity":1015,"unit":"TB","unitPrice":68.63},{"id":"svc-333","name":"Implementation","quantity":42,"unit":"session","unitPrice":1852.56}]}},{"id":"rec-00225","createdAt":"2021-08-08T19:28:39Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-11847285","name":"Aperture Science","segment":"small-business","industry":"healthcare","yearFounded":1957,"contacts":[{"type":"primary","name":"Linda Harris","email":"joseph.wilson@sample.io","phone":"+1-254-727-5008"},{"type":"technical","name":"David Martinez","email":"john.thompson@example.com","phone":"+1-616-165-2167"}]},"subscription":{"plan":"enterprise","startDate":"2020-05-19","renewalDate":"2022-05-19","amount":29966.81,"currency":"USD","services":[{"id":"svc-318","name":"Cloud Storage","quantity":510,"unit":"GB","unitPrice":55.66},{"id":"svc-635","name":"Support Plan","quantity":43,"unit":"hour","unitPrice":727.15}]}},{"id":"rec-00226","createdAt":"2020-01-20T19:20:37Z","type":"partner","status":"active","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-35734502","name":"Virtucon","segment":"small-business","industry":"retail","yearFounded":2018,"contacts":[{"type":"primary","name":"Joseph Miller","email":"patricia.anderson@test.org","phone":"+1-900-271-1230"},{"type":"technical","name":"Thomas Jones","email":"elizabeth.garcia@example.com","phone":"+1-361-579-3993"}]},"subscription":{"plan":"basic","startDate":"2021-10-18","renewalDate":"2023-10-18","amount":21114.76,"currency":"USD","services":[{"id":"svc-196","name":"Compute Instances","quantity":6905,"unit":"instance","unitPrice":226.38},{"id":"svc-411","name":"Training","quantity":39,"unit":"unit","unitPrice":407.3}]}},{"id":"rec-00227","createdAt":"2025-02-27T03:24:01Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["returning","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-16312577","name":"Umbrella Corp","segment":"startup","industry":"education","yearFounded":1969,"contacts":[{"type":"primary","name":"John White","email":"sarah.harris@fake.tech","phone":"+1-709-205-4253"},{"type":"technical","name":"James Jones","email":"john.martinez@fake.tech","phone":"+1-934-282-5071"}]},"subscription":{"plan":"professional","startDate":"2020-06-13","renewalDate":"2022-06-13","amount":13330.95,"currency":"USD","services":[{"id":"svc-561","name":"Security","quantity":9583,"unit":"GB","unitPrice":465.57},{"id":"svc-602","name":"Consulting","quantity":8,"unit":"unit","unitPrice":1934.64}]}},{"id":"rec-00228","createdAt":"2024-01-08T21:43:13Z","type":"customer","status":"active","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["trial","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-66803784","name":"Weyland-Yutani","segment":"small-business","industry":"healthcare","yearFounded":1978,"contacts":[{"type":"primary","name":"Susan Jackson","email":"joseph.brown@example.com","phone":"+1-206-655-8776"},{"type":"technical","name":"James Robinson","email":"william.robinson@test.org","phone":"+1-654-329-9371"}]},"subscription":{"plan":"professional","startDate":"2024-01-12","renewalDate":"2027-01-12","amount":45694.23,"currency":"USD","services":[{"id":"svc-840","name":"Analytics","quantity":835,"unit":"user","unitPrice":112.48},{"id":"svc-218","name":"Support Plan","quantity":64,"unit":"package","unitPrice":116.29}]}},{"id":"rec-00229","createdAt":"2023-08-12T15:55:18Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-51839983","name":"Umbrella Corp","segment":"small-business","industry":"technology","yearFounded":1968,"contacts":[{"type":"primary","name":"Susan Robinson","email":"robert.smith@sample.io","phone":"+1-830-797-2945"},{"type":"technical","name":"Sarah Davis","email":"jennifer.martinez@mock.co","phone":"+1-562-884-1099"}]},"subscription":{"plan":"custom","startDate":"2022-12-25","renewalDate":"2023-12-25","amount":21571.12,"currency":"GBP","services":[{"id":"svc-580","name":"Cloud Storage","quantity":5272,"unit":"user","unitPrice":350.88},{"id":"svc-732","name":"Training","quantity":9,"unit":"hour","unitPrice":1797.04}]}},{"id":"rec-00230","createdAt":"2022-04-11T09:06:38Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"mobile","region":"eu-west-1","tags":["new","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-93341935","name":"Acme Corp","segment":"enterprise","industry":"finance","yearFounded":1969,"contacts":[{"type":"primary","name":"Patricia Thompson","email":"susan.harris@fake.tech","phone":"+1-344-612-9732"},{"type":"technical","name":"Thomas Garcia","email":"joseph.martin@demo.net","phone":"+1-772-865-2935"}]},"subscription":{"plan":"professional","startDate":"2023-08-17","renewalDate":"2024-08-17","amount":31798.52,"currency":"EUR","services":[{"id":"svc-626","name":"Cloud Storage","quantity":4357,"unit":"user","unitPrice":284.17},{"id":"svc-725","name":"Consulting","quantity":80,"unit":"subscription","unitPrice":315.94}]}},{"id":"rec-00231","createdAt":"2020-11-12T19:01:28Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["returning","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-85367501","name":"Acme Corp","segment":"small-business","industry":"healthcare","yearFounded":1968,"contacts":[{"type":"primary","name":"Karen Martinez","email":"nancy.martin@mock.co","phone":"+1-454-654-8257"},{"type":"technical","name":"William Johnson","email":"patricia.garcia@mock.co","phone":"+1-567-547-5420"}]},"subscription":{"plan":"basic","startDate":"2020-03-01","renewalDate":"2023-03-01","amount":39954.71,"currency":"GBP","services":[{"id":"svc-125","name":"Database","quantity":680,"unit":"TB","unitPrice":100.65},{"id":"svc-336","name":"Maintenance","quantity":54,"unit":"unit","unitPrice":677.2}]}},{"id":"rec-00232","createdAt":"2021-05-16T10:25:32Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-86825857","name":"Umbrella Corp","segment":"startup","industry":"finance","yearFounded":2007,"contacts":[{"type":"primary","name":"David Williams","email":"jennifer.thomas@demo.net","phone":"+1-484-161-1357"},{"type":"technical","name":"Karen Brown","email":"david.thompson@mock.co","phone":"+1-482-218-8814"}]},"subscription":{"plan":"enterprise","startDate":"2020-04-18","renewalDate":"2021-04-18","amount":35914.95,"currency":"GBP","services":[{"id":"svc-278","name":"Cloud Storage","quantity":2886,"unit":"GB","unitPrice":335.17},{"id":"svc-315","name":"Training","quantity":82,"unit":"package","unitPrice":1533.67}]}},{"id":"rec-00233","createdAt":"2021-04-27T01:28:57Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-14172153","name":"Stark Industries","segment":"enterprise","industry":"finance","yearFounded":1999,"contacts":[{"type":"primary","name":"Karen Jones","email":"robert.martin@fake.tech","phone":"+1-659-952-3770"},{"type":"technical","name":"Joseph Harris","email":"thomas.williams@fake.tech","phone":"+1-686-177-3954"}]},"subscription":{"plan":"free","startDate":"2020-01-23","renewalDate":"2023-01-23","amount":19996.95,"currency":"GBP","services":[{"id":"svc-775","name":"Database","quantity":4913,"unit":"TB","unitPrice":212.98},{"id":"svc-951","name":"Support Plan","quantity":3,"unit":"subscription","unitPrice":827.88}]}},{"id":"rec-00234","createdAt":"2023-04-10T15:44:43Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"mobile","region":"eu-west-1","tags":["returning","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-61400187","name":"Massive Dynamic","segment":"startup","industry":"finance","yearFounded":2009,"contacts":[{"type":"primary","name":"David Anderson","email":"joseph.anderson@mock.co","phone":"+1-879-773-4360"},{"type":"technical","name":"James Taylor","email":"robert.taylor@sample.io","phone":"+1-736-173-2300"}]},"subscription":{"plan":"free","startDate":"2022-03-05","renewalDate":"2023-03-05","amount":12954.86,"currency":"CAD","services":[{"id":"svc-720","name":"Analytics","quantity":7816,"unit":"instance","unitPrice":188.35},{"id":"svc-357","name":"Consulting","quantity":45,"unit":"package","unitPrice":937.02}]}},{"id":"rec-00235","createdAt":"2021-09-19T23:31:43Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"web","region":"sa-east-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-47553523","name":"Cyberdyne Systems","segment":"small-business","industry":"finance","yearFounded":1969,"contacts":[{"type":"primary","name":"Joseph Smith","email":"michael.robinson@sample.io","phone":"+1-333-816-5136"},{"type":"technical","name":"Jennifer Davis","email":"susan.white@demo.net","phone":"+1-850-648-8375"}]},"subscription":{"plan":"enterprise","startDate":"2024-11-04","renewalDate":"2025-11-04","amount":5205.85,"currency":"EUR","services":[{"id":"svc-208","name":"Analytics","quantity":3624,"unit":"instance","unitPrice":168.71},{"id":"svc-333","name":"Support Plan","quantity":66,"unit":"hour","unitPrice":1515.58}]}},{"id":"rec-00236","createdAt":"2022-12-12T06:24:08Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["new","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-74555336","name":"Cyberdyne Systems","segment":"enterprise","industry":"technology","yearFounded":2021,"contacts":[{"type":"primary","name":"Sarah Anderson","email":"susan.smith@demo.net","phone":"+1-631-962-5887"},{"type":"technical","name":"Jessica Smith","email":"sarah.davis@mock.co","phone":"+1-993-497-4973"}]},"subscription":{"plan":"custom","startDate":"2023-06-11","renewalDate":"2024-06-11","amount":39791.41,"currency":"USD","services":[{"id":"svc-886","name":"Security","quantity":5257,"unit":"instance","unitPrice":35.05},{"id":"svc-307","name":"Implementation","quantity":28,"unit":"subscription","unitPrice":141.61}]}},{"id":"rec-00237","createdAt":"2020-10-09T21:25:57Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"web","region":"eu-west-1","tags":["returning","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-65149697","name":"LexCorp","segment":"mid-market","industry":"finance","yearFounded":1985,"contacts":[{"type":"primary","name":"Jennifer Johnson","email":"mary.thomas@fake.tech","phone":"+1-764-604-1555"},{"type":"technical","name":"Susan Johnson","email":"elizabeth.jackson@sample.io","phone":"+1-925-838-4931"}]},"subscription":{"plan":"basic","startDate":"2021-12-27","renewalDate":"2024-12-27","amount":18830.82,"currency":"CAD","services":[{"id":"svc-118","name":"Compute Instances","quantity":4047,"unit":"license","unitPrice":190.48},{"id":"svc-548","name":"Training","quantity":68,"unit":"hour","unitPrice":1763.9}]}},{"id":"rec-00238","createdAt":"2024-03-22T11:46:11Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-71307873","name":"Virtucon","segment":"startup","industry":"healthcare","yearFounded":1987,"contacts":[{"type":"primary","name":"Mary Williams","email":"robert.williams@mock.co","phone":"+1-436-311-4608"},{"type":"technical","name":"David Davis","email":"linda.thompson@test.org","phone":"+1-339-278-1550"}]},"subscription":{"plan":"enterprise","startDate":"2021-08-11","renewalDate":"2022-08-11","amount":1237.65,"currency":"USD","services":[{"id":"svc-695","name":"Cloud Storage","quantity":1434,"unit":"user","unitPrice":433.56},{"id":"svc-825","name":"Support Plan","quantity":41,"unit":"unit","unitPrice":1211.31}]}},{"id":"rec-00239","createdAt":"2022-09-22T08:01:33Z","type":"lead","status":"active","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["returning","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-45437665","name":"Aperture Science","segment":"mid-market","industry":"finance","yearFounded":1956,"contacts":[{"type":"primary","name":"Robert Harris","email":"jessica.white@sample.io","phone":"+1-876-785-8471"},{"type":"technical","name":"James Jones","email":"linda.thomas@mock.co","phone":"+1-501-211-3565"}]},"subscription":{"plan":"free","startDate":"2020-06-11","renewalDate":"2022-06-11","amount":23153.37,"currency":"AUD","services":[{"id":"svc-895","name":"Compute Instances","quantity":4809,"unit":"TB","unitPrice":496.72},{"id":"svc-116","name":"Maintenance","quantity":5,"unit":"session","unitPrice":413.64}]}},{"id":"rec-00240","createdAt":"2025-12-18T04:55:21Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"web","region":"us-east-1","tags":["trial","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-45506727","name":"Virtucon","segment":"startup","industry":"education","yearFounded":1992,"contacts":[{"type":"primary","name":"Michael Miller","email":"charles.harris@example.com","phone":"+1-774-654-1161"},{"type":"technical","name":"Elizabeth Robinson","email":"james.wilson@example.com","phone":"+1-521-667-6631"}]},"subscription":{"plan":"basic","startDate":"2022-05-19","renewalDate":"2023-05-19","amount":25091.48,"currency":"GBP","services":[{"id":"svc-852","name":"Cloud Storage","quantity":1963,"unit":"TB","unitPrice":87.99},{"id":"svc-419","name":"Training","quantity":88,"unit":"subscription","unitPrice":1167.0}]}},{"id":"rec-00241","createdAt":"2024-06-14T23:21:05Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"api","region":"us-east-1","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-54666364","name":"Stark Industries","segment":"small-business","industry":"education","yearFounded":2007,"contacts":[{"type":"primary","name":"Joseph Garcia","email":"joseph.jones@test.org","phone":"+1-739-880-9960"},{"type":"technical","name":"Charles Thompson","email":"patricia.white@fake.tech","phone":"+1-587-647-4574"}]},"subscription":{"plan":"enterprise","startDate":"2021-08-14","renewalDate":"2022-08-14","amount":35272.68,"currency":"GBP","services":[{"id":"svc-742","name":"Security","quantity":3278,"unit":"user","unitPrice":255.01},{"id":"svc-403","name":"Training","quantity":33,"unit":"session","unitPrice":580.57}]}},{"id":"rec-00242","createdAt":"2022-05-11T14:54:44Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-66898106","name":"Oscorp","segment":"small-business","industry":"technology","yearFounded":1992,"contacts":[{"type":"primary","name":"John Williams","email":"david.anderson@demo.net","phone":"+1-803-319-8906"},{"type":"technical","name":"Michael Brown","email":"elizabeth.martinez@example.com","phone":"+1-632-646-2488"}]},"subscription":{"plan":"basic","startDate":"2023-04-17","renewalDate":"2026-04-17","amount":30743.54,"currency":"GBP","services":[{"id":"svc-437","name":"Cloud Storage","quantity":8813,"unit":"license","unitPrice":286.99},{"id":"svc-536","name":"Maintenance","quantity":99,"unit":"unit","unitPrice":1034.02}]}},{"id":"rec-00243","createdAt":"2025-04-23T02:03:24Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"us-east-1","tags":["trial","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-19409690","name":"Virtucon","segment":"mid-market","industry":"technology","yearFounded":1958,"contacts":[{"type":"primary","name":"Richard Thompson","email":"david.anderson@demo.net","phone":"+1-800-318-4058"},{"type":"technical","name":"Joseph Jackson","email":"michael.martin@example.com","phone":"+1-640-616-7395"}]},"subscription":{"plan":"basic","startDate":"2022-12-03","renewalDate":"2025-12-03","amount":25300.41,"currency":"GBP","services":[{"id":"svc-603","name":"Cloud Storage","quantity":2021,"unit":"GB","unitPrice":92.98},{"id":"svc-353","name":"Consulting","quantity":73,"unit":"subscription","unitPrice":1546.97}]}},{"id":"rec-00244","createdAt":"2024-06-12T10:38:16Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-20978002","name":"Cyberdyne Systems","segment":"enterprise","industry":"healthcare","yearFounded":2014,"contacts":[{"type":"primary","name":"Charles Moore","email":"mary.thompson@example.com","phone":"+1-401-134-6398"},{"type":"technical","name":"William Martin","email":"jennifer.davis@demo.net","phone":"+1-524-789-4110"}]},"subscription":{"plan":"free","startDate":"2024-10-15","renewalDate":"2026-10-15","amount":17702.06,"currency":"GBP","services":[{"id":"svc-601","name":"Cloud Storage","quantity":74,"unit":"instance","unitPrice":444.64},{"id":"svc-613","name":"Maintenance","quantity":80,"unit":"unit","unitPrice":198.27}]}},{"id":"rec-00245","createdAt":"2022-11-17T15:57:22Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-35799134","name":"Massive Dynamic","segment":"enterprise","industry":"healthcare","yearFounded":1995,"contacts":[{"type":"primary","name":"Elizabeth Garcia","email":"sarah.martinez@demo.net","phone":"+1-609-565-5926"},{"type":"technical","name":"Nancy Brown","email":"james.wilson@fake.tech","phone":"+1-561-754-1203"}]},"subscription":{"plan":"basic","startDate":"2022-12-26","renewalDate":"2025-12-26","amount":13855.9,"currency":"GBP","services":[{"id":"svc-809","name":"Cloud Storage","quantity":7990,"unit":"TB","unitPrice":31.27},{"id":"svc-884","name":"Consulting","quantity":76,"unit":"subscription","unitPrice":46.05}]}},{"id":"rec-00246","createdAt":"2021-08-11T00:23:40Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-48815817","name":"Weyland-Yutani","segment":"enterprise","industry":"manufacturing","yearFounded":1985,"contacts":[{"type":"primary","name":"Elizabeth Taylor","email":"karen.smith@example.com","phone":"+1-833-294-4465"},{"type":"technical","name":"Susan Robinson","email":"susan.harris@example.com","phone":"+1-874-979-4695"}]},"subscription":{"plan":"professional","startDate":"2023-02-01","renewalDate":"2025-02-01","amount":286.8,"currency":"AUD","services":[{"id":"svc-955","name":"Compute Instances","quantity":3364,"unit":"GB","unitPrice":157.94},{"id":"svc-153","name":"Consulting","quantity":17,"unit":"subscription","unitPrice":1941.93}]}},{"id":"rec-00247","createdAt":"2020-11-17T22:27:34Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-60310282","name":"Soylent Corp","segment":"small-business","industry":"finance","yearFounded":1980,"contacts":[{"type":"primary","name":"Susan Williams","email":"karen.smith@sample.io","phone":"+1-298-510-6735"},{"type":"technical","name":"William White","email":"thomas.martin@sample.io","phone":"+1-659-548-1947"}]},"subscription":{"plan":"professional","startDate":"2024-04-07","renewalDate":"2026-04-07","amount":28204.71,"currency":"AUD","services":[{"id":"svc-790","name":"Analytics","quantity":9737,"unit":"license","unitPrice":67.1},{"id":"svc-875","name":"Implementation","quantity":87,"unit":"subscription","unitPrice":56.15}]}},{"id":"rec-00248","createdAt":"2020-04-10T15:08:05Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"import","region":"ap-southeast-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-14268766","name":"Aperture Science","segment":"startup","industry":"manufacturing","yearFounded":1955,"contacts":[{"type":"primary","name":"Joseph Smith","email":"patricia.thompson@test.org","phone":"+1-707-650-4496"},{"type":"technical","name":"Richard Martin","email":"michael.martinez@demo.net","phone":"+1-290-959-9712"}]},"subscription":{"plan":"basic","startDate":"2023-03-06","renewalDate":"2026-03-06","amount":34079.93,"currency":"AUD","services":[{"id":"svc-934","name":"Cloud Storage","quantity":8771,"unit":"license","unitPrice":38.05},{"id":"svc-985","name":"Consulting","quantity":70,"unit":"unit","unitPrice":927.68}]}},{"id":"rec-00249","createdAt":"2021-05-13T17:47:31Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"import","region":"eu-west-1","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-84800473","name":"Umbrella Corp","segment":"enterprise","industry":"education","yearFounded":1961,"contacts":[{"type":"primary","name":"Joseph Moore","email":"patricia.johnson@test.org","phone":"+1-781-755-9205"},{"type":"technical","name":"Richard Harris","email":"patricia.harris@example.com","phone":"+1-408-859-5438"}]},"subscription":{"plan":"enterprise","startDate":"2023-12-14","renewalDate":"2026-12-14","amount":15525.13,"currency":"EUR","services":[{"id":"svc-797","name":"Database","quantity":7562,"unit":"license","unitPrice":362.27},{"id":"svc-617","name":"Support Plan","quantity":70,"unit":"session","unitPrice":811.84}]}},{"id":"rec-00250","createdAt":"2022-07-03T16:17:58Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["trial","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-59422853","name":"LexCorp","segment":"startup","industry":"manufacturing","yearFounded":1994,"contacts":[{"type":"primary","name":"Michael Harris","email":"nancy.white@mock.co","phone":"+1-807-718-2265"},{"type":"technical","name":"Michael Wilson","email":"jessica.garcia@fake.tech","phone":"+1-957-413-9120"}]},"subscription":{"plan":"basic","startDate":"2021-08-12","renewalDate":"2024-08-12","amount":26271.12,"currency":"USD","services":[{"id":"svc-967","name":"Cloud Storage","quantity":716,"unit":"instance","unitPrice":254.14},{"id":"svc-793","name":"Maintenance","quantity":22,"unit":"package","unitPrice":1704.03}]}},{"id":"rec-00251","createdAt":"2022-03-17T09:23:44Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-99442552","name":"LexCorp","segment":"enterprise","industry":"manufacturing","yearFounded":1954,"contacts":[{"type":"primary","name":"Robert Robinson","email":"sarah.williams@sample.io","phone":"+1-754-195-9431"},{"type":"technical","name":"Charles Harris","email":"john.taylor@sample.io","phone":"+1-528-225-3352"}]},"subscription":{"plan":"free","startDate":"2024-10-24","renewalDate":"2026-10-24","amount":5518.72,"currency":"GBP","services":[{"id":"svc-898","name":"Security","quantity":1916,"unit":"TB","unitPrice":17.05},{"id":"svc-775","name":"Training","quantity":38,"unit":"session","unitPrice":1080.16}]}},{"id":"rec-00252","createdAt":"2025-07-09T20:49:49Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"manual","region":"us-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-37945866","name":"Virtucon","segment":"startup","industry":"finance","yearFounded":2020,"contacts":[{"type":"primary","name":"Michael White","email":"david.garcia@sample.io","phone":"+1-626-246-4365"},{"type":"technical","name":"Nancy Garcia","email":"michael.moore@mock.co","phone":"+1-878-613-3289"}]},"subscription":{"plan":"enterprise","startDate":"2022-07-09","renewalDate":"2025-07-09","amount":29090.49,"currency":"CAD","services":[{"id":"svc-992","name":"Cloud Storage","quantity":7202,"unit":"GB","unitPrice":76.67},{"id":"svc-765","name":"Maintenance","quantity":100,"unit":"hour","unitPrice":1802.76}]}},{"id":"rec-00253","createdAt":"2020-03-06T20:13:28Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-20353040","name":"Globex","segment":"startup","industry":"education","yearFounded":2003,"contacts":[{"type":"primary","name":"Nancy Jones","email":"john.miller@mock.co","phone":"+1-945-220-6877"},{"type":"technical","name":"Joseph Martinez","email":"jessica.robinson@demo.net","phone":"+1-249-838-5967"}]},"subscription":{"plan":"enterprise","startDate":"2021-03-24","renewalDate":"2024-03-24","amount":12453.95,"currency":"AUD","services":[{"id":"svc-318","name":"Analytics","quantity":9898,"unit":"instance","unitPrice":357.23},{"id":"svc-614","name":"Support Plan","quantity":18,"unit":"package","unitPrice":278.19}]}},{"id":"rec-00254","createdAt":"2022-03-18T04:31:33Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-46359551","name":"Soylent Corp","segment":"enterprise","industry":"manufacturing","yearFounded":2003,"contacts":[{"type":"primary","name":"Joseph Brown","email":"william.martin@demo.net","phone":"+1-422-839-6113"},{"type":"technical","name":"Sarah Davis","email":"john.white@example.com","phone":"+1-889-314-5546"}]},"subscription":{"plan":"custom","startDate":"2021-07-27","renewalDate":"2022-07-27","amount":39908.18,"currency":"EUR","services":[{"id":"svc-242","name":"Compute Instances","quantity":2843,"unit":"TB","unitPrice":86.24},{"id":"svc-198","name":"Training","quantity":21,"unit":"session","unitPrice":781.74}]}},{"id":"rec-00255","createdAt":"2020-02-20T12:35:48Z","type":"customer","status":"active","priority":"low","metadata":{"source":"mobile","region":"eu-west-1","tags":["returning","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-12619444","name":"Soylent Corp","segment":"startup","industry":"technology","yearFounded":1981,"contacts":[{"type":"primary","name":"Robert Wilson","email":"james.harris@demo.net","phone":"+1-404-506-1600"},{"type":"technical","name":"Richard Moore","email":"richard.davis@sample.io","phone":"+1-994-330-8623"}]},"subscription":{"plan":"enterprise","startDate":"2021-03-22","renewalDate":"2024-03-22","amount":7860.64,"currency":"AUD","services":[{"id":"svc-906","name":"Analytics","quantity":6097,"unit":"license","unitPrice":114.55},{"id":"svc-559","name":"Maintenance","quantity":71,"unit":"package","unitPrice":1594.71}]}},{"id":"rec-00256","createdAt":"2023-08-12T10:22:09Z","type":"partner","status":"active","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["new","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-44201508","name":"Aperture Science","segment":"small-business","industry":"technology","yearFounded":1959,"contacts":[{"type":"primary","name":"Richard Garcia","email":"james.davis@fake.tech","phone":"+1-532-221-2059"},{"type":"technical","name":"Susan Taylor","email":"john.brown@test.org","phone":"+1-314-802-6779"}]},"subscription":{"plan":"enterprise","startDate":"2020-10-07","renewalDate":"2021-10-07","amount":5238.33,"currency":"CAD","services":[{"id":"svc-121","name":"Security","quantity":9795,"unit":"GB","unitPrice":132.81},{"id":"svc-527","name":"Consulting","quantity":15,"unit":"subscription","unitPrice":1692.68}]}},{"id":"rec-00257","createdAt":"2020-02-06T12:51:16Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-25792656","name":"Globex","segment":"mid-market","industry":"healthcare","yearFounded":1987,"contacts":[{"type":"primary","name":"Thomas Thompson","email":"jennifer.jackson@demo.net","phone":"+1-633-129-6571"},{"type":"technical","name":"Richard Brown","email":"joseph.martin@fake.tech","phone":"+1-836-613-3350"}]},"subscription":{"plan":"enterprise","startDate":"2020-03-21","renewalDate":"2021-03-21","amount":29025.75,"currency":"USD","services":[{"id":"svc-434","name":"Security","quantity":811,"unit":"GB","unitPrice":423.37},{"id":"svc-625","name":"Implementation","quantity":25,"unit":"subscription","unitPrice":1747.99}]}},{"id":"rec-00258","createdAt":"2025-06-03T12:24:25Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["returning","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-73015538","name":"Weyland-Yutani","segment":"enterprise","industry":"finance","yearFounded":1973,"contacts":[{"type":"primary","name":"James Davis","email":"jessica.wilson@sample.io","phone":"+1-999-789-2333"},{"type":"technical","name":"Susan Smith","email":"robert.smith@test.org","phone":"+1-651-951-1611"}]},"subscription":{"plan":"basic","startDate":"2024-05-23","renewalDate":"2025-05-23","amount":4533.27,"currency":"GBP","services":[{"id":"svc-283","name":"Database","quantity":8317,"unit":"license","unitPrice":143.85},{"id":"svc-131","name":"Consulting","quantity":28,"unit":"package","unitPrice":883.61}]}},{"id":"rec-00259","createdAt":"2021-10-15T07:48:37Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"manual","region":"ap-southeast-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-95931794","name":"Acme Corp","segment":"mid-market","industry":"technology","yearFounded":1968,"contacts":[{"type":"primary","name":"Sarah Anderson","email":"linda.martin@example.com","phone":"+1-249-144-4084"},{"type":"technical","name":"Elizabeth White","email":"robert.martin@fake.tech","phone":"+1-944-629-5697"}]},"subscription":{"plan":"basic","startDate":"2021-07-24","renewalDate":"2022-07-24","amount":8178.64,"currency":"GBP","services":[{"id":"svc-184","name":"Analytics","quantity":3126,"unit":"TB","unitPrice":396.49},{"id":"svc-518","name":"Maintenance","quantity":66,"unit":"session","unitPrice":1401.68}]}},{"id":"rec-00260","createdAt":"2020-09-11T03:19:59Z","type":"partner","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"us-west-2","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-17546077","name":"Initech","segment":"mid-market","industry":"finance","yearFounded":1982,"contacts":[{"type":"primary","name":"Patricia White","email":"james.thomas@demo.net","phone":"+1-333-255-3743"},{"type":"technical","name":"Jennifer White","email":"david.jackson@mock.co","phone":"+1-988-100-5183"}]},"subscription":{"plan":"free","startDate":"2020-10-04","renewalDate":"2023-10-04","amount":39658.24,"currency":"EUR","services":[{"id":"svc-316","name":"Cloud Storage","quantity":9867,"unit":"TB","unitPrice":47.06},{"id":"svc-501","name":"Support Plan","quantity":50,"unit":"unit","unitPrice":1340.48}]}},{"id":"rec-00261","createdAt":"2023-07-04T08:55:52Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"manual","region":"ap-southeast-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-92182275","name":"Wayne Enterprises","segment":"small-business","industry":"technology","yearFounded":1960,"contacts":[{"type":"primary","name":"Thomas Thompson","email":"joseph.garcia@test.org","phone":"+1-334-581-1692"},{"type":"technical","name":"John Robinson","email":"michael.harris@mock.co","phone":"+1-436-590-7711"}]},"subscription":{"plan":"enterprise","startDate":"2023-07-06","renewalDate":"2025-07-06","amount":49207.83,"currency":"AUD","services":[{"id":"svc-637","name":"Compute Instances","quantity":2098,"unit":"GB","unitPrice":200.93},{"id":"svc-298","name":"Consulting","quantity":14,"unit":"package","unitPrice":637.29}]}},{"id":"rec-00262","createdAt":"2024-03-02T14:26:55Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-52233596","name":"Wayne Enterprises","segment":"startup","industry":"manufacturing","yearFounded":1969,"contacts":[{"type":"primary","name":"Karen Martinez","email":"joseph.anderson@sample.io","phone":"+1-822-343-5031"},{"type":"technical","name":"William Miller","email":"linda.jackson@test.org","phone":"+1-488-480-4140"}]},"subscription":{"plan":"professional","startDate":"2023-12-17","renewalDate":"2025-12-17","amount":38390.68,"currency":"AUD","services":[{"id":"svc-286","name":"Analytics","quantity":1596,"unit":"instance","unitPrice":349.3},{"id":"svc-837","name":"Support Plan","quantity":3,"unit":"session","unitPrice":1241.44}]}},{"id":"rec-00263","createdAt":"2020-09-02T15:55:51Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["returning","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-58478850","name":"Cyberdyne Systems","segment":"mid-market","industry":"education","yearFounded":2003,"contacts":[{"type":"primary","name":"Sarah Harris","email":"robert.anderson@mock.co","phone":"+1-350-754-3965"},{"type":"technical","name":"Richard Smith","email":"robert.harris@example.com","phone":"+1-980-545-8052"}]},"subscription":{"plan":"basic","startDate":"2020-01-14","renewalDate":"2022-01-14","amount":20922.56,"currency":"USD","services":[{"id":"svc-460","name":"Database","quantity":4666,"unit":"instance","unitPrice":325.27},{"id":"svc-753","name":"Maintenance","quantity":37,"unit":"package","unitPrice":1795.18}]}},{"id":"rec-00264","createdAt":"2022-06-06T16:11:24Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-85785605","name":"Oscorp","segment":"enterprise","industry":"technology","yearFounded":1987,"contacts":[{"type":"primary","name":"Charles Williams","email":"jessica.moore@fake.tech","phone":"+1-284-250-6095"},{"type":"technical","name":"Charles Martin","email":"jennifer.moore@fake.tech","phone":"+1-401-860-8280"}]},"subscription":{"plan":"free","startDate":"2024-11-17","renewalDate":"2027-11-17","amount":22723.15,"currency":"GBP","services":[{"id":"svc-644","name":"Compute Instances","quantity":4043,"unit":"TB","unitPrice":32.29},{"id":"svc-930","name":"Implementation","quantity":63,"unit":"package","unitPrice":1553.47}]}},{"id":"rec-00265","createdAt":"2020-11-10T04:26:36Z","type":"lead","status":"pending","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["new","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-29126405","name":"Globex","segment":"startup","industry":"technology","yearFounded":2016,"contacts":[{"type":"primary","name":"Linda Garcia","email":"william.anderson@demo.net","phone":"+1-767-686-8283"},{"type":"technical","name":"Thomas Jones","email":"elizabeth.miller@mock.co","phone":"+1-361-523-3563"}]},"subscription":{"plan":"professional","startDate":"2022-07-09","renewalDate":"2023-07-09","amount":34701.39,"currency":"EUR","services":[{"id":"svc-197","name":"Cloud Storage","quantity":1136,"unit":"user","unitPrice":324.55},{"id":"svc-693","name":"Implementation","quantity":94,"unit":"unit","unitPrice":1845.39}]}},{"id":"rec-00266","createdAt":"2020-05-03T21:22:19Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-82109695","name":"Oscorp","segment":"mid-market","industry":"manufacturing","yearFounded":1996,"contacts":[{"type":"primary","name":"Linda Smith","email":"joseph.white@mock.co","phone":"+1-860-607-4985"},{"type":"technical","name":"David Moore","email":"james.johnson@mock.co","phone":"+1-375-900-4451"}]},"subscription":{"plan":"enterprise","startDate":"2023-06-09","renewalDate":"2026-06-09","amount":43636.51,"currency":"AUD","services":[{"id":"svc-697","name":"Security","quantity":3006,"unit":"license","unitPrice":430.67},{"id":"svc-161","name":"Maintenance","quantity":90,"unit":"session","unitPrice":1702.08}]}},{"id":"rec-00267","createdAt":"2023-11-13T00:18:51Z","type":"customer","status":"active","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["new","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-44625222","name":"Nakatomi Trading Corp","segment":"small-business","industry":"retail","yearFounded":1995,"contacts":[{"type":"primary","name":"Richard Harris","email":"richard.robinson@demo.net","phone":"+1-392-134-6323"},{"type":"technical","name":"Karen Martinez","email":"karen.smith@example.com","phone":"+1-225-909-5777"}]},"subscription":{"plan":"professional","startDate":"2022-08-14","renewalDate":"2024-08-14","amount":18608.92,"currency":"CAD","services":[{"id":"svc-851","name":"Security","quantity":885,"unit":"instance","unitPrice":397.41},{"id":"svc-976","name":"Training","quantity":10,"unit":"session","unitPrice":1729.76}]}},{"id":"rec-00268","createdAt":"2022-01-07T04:15:14Z","type":"lead","status":"inactive","priority":"medium","metadata":{"source":"api","region":"us-west-2","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-22564782","name":"Globex","segment":"small-business","industry":"finance","yearFounded":2002,"contacts":[{"type":"primary","name":"Elizabeth Jones","email":"patricia.jackson@mock.co","phone":"+1-676-582-3467"},{"type":"technical","name":"John Brown","email":"john.thomas@example.com","phone":"+1-254-261-7073"}]},"subscription":{"plan":"free","startDate":"2023-08-01","renewalDate":"2025-08-01","amount":1604.8,"currency":"GBP","services":[{"id":"svc-709","name":"Database","quantity":4018,"unit":"user","unitPrice":365.97},{"id":"svc-650","name":"Support Plan","quantity":92,"unit":"package","unitPrice":81.35}]}},{"id":"rec-00269","createdAt":"2025-11-17T16:14:03Z","type":"prospect","status":"active","priority":"high","metadata":{"source":"mobile","region":"sa-east-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-26859447","name":"Acme Corp","segment":"small-business","industry":"manufacturing","yearFounded":2020,"contacts":[{"type":"primary","name":"Jessica Jackson","email":"william.harris@mock.co","phone":"+1-572-256-9379"},{"type":"technical","name":"Robert White","email":"linda.garcia@sample.io","phone":"+1-523-809-8305"}]},"subscription":{"plan":"professional","startDate":"2020-11-22","renewalDate":"2022-11-22","amount":48817.55,"currency":"CAD","services":[{"id":"svc-458","name":"Security","quantity":3455,"unit":"TB","unitPrice":259.82},{"id":"svc-483","name":"Training","quantity":12,"unit":"package","unitPrice":1218.88}]}},{"id":"rec-00270","createdAt":"2020-08-08T02:08:18Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["new","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-43617101","name":"Weyland-Yutani","segment":"small-business","industry":"education","yearFounded":1973,"contacts":[{"type":"primary","name":"Jennifer Williams","email":"richard.williams@example.com","phone":"+1-218-566-8384"},{"type":"technical","name":"John White","email":"elizabeth.wilson@mock.co","phone":"+1-965-221-2386"}]},"subscription":{"plan":"enterprise","startDate":"2024-05-03","renewalDate":"2025-05-03","amount":14328.58,"currency":"CAD","services":[{"id":"svc-544","name":"Analytics","quantity":2957,"unit":"instance","unitPrice":125.94},{"id":"svc-559","name":"Support Plan","quantity":46,"unit":"unit","unitPrice":1211.33}]}},{"id":"rec-00271","createdAt":"2021-10-19T09:57:53Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"import","region":"ap-southeast-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-42341388","name":"Virtucon","segment":"small-business","industry":"healthcare","yearFounded":1964,"contacts":[{"type":"primary","name":"Sarah Williams","email":"jessica.jackson@fake.tech","phone":"+1-966-672-7298"},{"type":"technical","name":"John White","email":"patricia.thompson@sample.io","phone":"+1-871-453-3756"}]},"subscription":{"plan":"custom","startDate":"2023-02-24","renewalDate":"2025-02-24","amount":6985.99,"currency":"AUD","services":[{"id":"svc-840","name":"Security","quantity":447,"unit":"license","unitPrice":401.65},{"id":"svc-354","name":"Implementation","quantity":37,"unit":"package","unitPrice":404.85}]}},{"id":"rec-00272","createdAt":"2024-07-07T21:32:35Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-84784989","name":"Cyberdyne Systems","segment":"startup","industry":"manufacturing","yearFounded":1958,"contacts":[{"type":"primary","name":"Sarah Jones","email":"william.martin@mock.co","phone":"+1-464-798-4757"},{"type":"technical","name":"Susan Brown","email":"michael.anderson@sample.io","phone":"+1-341-622-8912"}]},"subscription":{"plan":"enterprise","startDate":"2024-09-21","renewalDate":"2026-09-21","amount":38409.14,"currency":"AUD","services":[{"id":"svc-653","name":"Analytics","quantity":4152,"unit":"instance","unitPrice":490.28},{"id":"svc-116","name":"Maintenance","quantity":78,"unit":"subscription","unitPrice":570.19}]}},{"id":"rec-00273","createdAt":"2021-10-04T17:46:58Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"eu-west-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-73537924","name":"Weyland-Yutani","segment":"mid-market","industry":"technology","yearFounded":1985,"contacts":[{"type":"primary","name":"Linda Robinson","email":"karen.garcia@test.org","phone":"+1-264-494-8617"},{"type":"technical","name":"Susan Robinson","email":"david.garcia@sample.io","phone":"+1-385-507-2949"}]},"subscription":{"plan":"free","startDate":"2021-09-13","renewalDate":"2023-09-13","amount":42336.43,"currency":"USD","services":[{"id":"svc-763","name":"Analytics","quantity":59,"unit":"instance","unitPrice":23.78},{"id":"svc-895","name":"Training","quantity":3,"unit":"subscription","unitPrice":1470.56}]}},{"id":"rec-00274","createdAt":"2023-02-09T01:45:26Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"api","region":"sa-east-1","tags":["trial","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-51660754","name":"Globex","segment":"small-business","industry":"finance","yearFounded":1984,"contacts":[{"type":"primary","name":"Susan Williams","email":"richard.wilson@mock.co","phone":"+1-882-829-7917"},{"type":"technical","name":"Nancy Robinson","email":"joseph.anderson@sample.io","phone":"+1-389-892-2118"}]},"subscription":{"plan":"enterprise","startDate":"2024-08-09","renewalDate":"2026-08-09","amount":7698.94,"currency":"AUD","services":[{"id":"svc-994","name":"Compute Instances","quantity":4871,"unit":"instance","unitPrice":177.68},{"id":"svc-365","name":"Training","quantity":7,"unit":"subscription","unitPrice":71.0}]}},{"id":"rec-00275","createdAt":"2024-04-24T02:17:32Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"sa-east-1","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-39966380","name":"Soylent Corp","segment":"mid-market","industry":"education","yearFounded":1961,"contacts":[{"type":"primary","name":"Nancy White","email":"richard.martin@fake.tech","phone":"+1-860-652-5759"},{"type":"technical","name":"William Robinson","email":"karen.white@fake.tech","phone":"+1-444-987-9271"}]},"subscription":{"plan":"free","startDate":"2023-10-11","renewalDate":"2024-10-11","amount":22017.38,"currency":"EUR","services":[{"id":"svc-715","name":"Analytics","quantity":7914,"unit":"instance","unitPrice":321.46},{"id":"svc-928","name":"Maintenance","quantity":11,"unit":"hour","unitPrice":1570.13}]}},{"id":"rec-00276","createdAt":"2025-10-26T05:34:16Z","type":"lead","status":"pending","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-68996748","name":"Acme Corp","segment":"small-business","industry":"finance","yearFounded":1973,"contacts":[{"type":"primary","name":"Karen Martin","email":"karen.garcia@demo.net","phone":"+1-371-138-7314"},{"type":"technical","name":"Robert Robinson","email":"karen.taylor@mock.co","phone":"+1-761-864-6882"}]},"subscription":{"plan":"custom","startDate":"2024-05-04","renewalDate":"2026-05-04","amount":12087.45,"currency":"GBP","services":[{"id":"svc-301","name":"Database","quantity":6071,"unit":"TB","unitPrice":401.84},{"id":"svc-287","name":"Support Plan","quantity":60,"unit":"hour","unitPrice":1810.78}]}},{"id":"rec-00277","createdAt":"2021-02-09T00:03:55Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-98989986","name":"Virtucon","segment":"small-business","industry":"finance","yearFounded":1962,"contacts":[{"type":"primary","name":"Joseph Davis","email":"sarah.martinez@fake.tech","phone":"+1-666-435-8103"},{"type":"technical","name":"Susan Robinson","email":"james.johnson@example.com","phone":"+1-928-717-2911"}]},"subscription":{"plan":"free","startDate":"2020-09-05","renewalDate":"2021-09-05","amount":29977.82,"currency":"AUD","services":[{"id":"svc-106","name":"Security","quantity":2814,"unit":"user","unitPrice":101.09},{"id":"svc-921","name":"Maintenance","quantity":52,"unit":"subscription","unitPrice":77.11}]}},{"id":"rec-00278","createdAt":"2020-05-04T00:41:28Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"manual","region":"us-east-1","tags":["returning","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-79793622","name":"Initech","segment":"startup","industry":"finance","yearFounded":1995,"contacts":[{"type":"primary","name":"Patricia Harris","email":"richard.garcia@sample.io","phone":"+1-609-295-4469"},{"type":"technical","name":"Michael Davis","email":"william.taylor@sample.io","phone":"+1-609-578-4139"}]},"subscription":{"plan":"custom","startDate":"2024-05-09","renewalDate":"2027-05-09","amount":33990.81,"currency":"USD","services":[{"id":"svc-341","name":"Compute Instances","quantity":956,"unit":"user","unitPrice":79.53},{"id":"svc-830","name":"Implementation","quantity":2,"unit":"subscription","unitPrice":1456.05}]}},{"id":"rec-00279","createdAt":"2022-09-07T14:19:53Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["new","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-88812548","name":"Stark Industries","segment":"small-business","industry":"manufacturing","yearFounded":1973,"contacts":[{"type":"primary","name":"Jessica Martinez","email":"richard.martinez@mock.co","phone":"+1-472-156-6792"},{"type":"technical","name":"James Thomas","email":"michael.brown@example.com","phone":"+1-654-150-6375"}]},"subscription":{"plan":"enterprise","startDate":"2024-12-28","renewalDate":"2026-12-28","amount":18913.44,"currency":"CAD","services":[{"id":"svc-735","name":"Cloud Storage","quantity":7796,"unit":"GB","unitPrice":341.23},{"id":"svc-224","name":"Training","quantity":62,"unit":"subscription","unitPrice":505.43}]}},{"id":"rec-00280","createdAt":"2022-01-19T03:51:22Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["trial","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-11301734","name":"Nakatomi Trading Corp","segment":"small-business","industry":"healthcare","yearFounded":1976,"contacts":[{"type":"primary","name":"Charles Moore","email":"susan.harris@mock.co","phone":"+1-379-913-3006"},{"type":"technical","name":"Jessica Martinez","email":"michael.jackson@test.org","phone":"+1-827-597-9811"}]},"subscription":{"plan":"enterprise","startDate":"2022-04-28","renewalDate":"2024-04-28","amount":33256.45,"currency":"GBP","services":[{"id":"svc-164","name":"Database","quantity":6975,"unit":"user","unitPrice":128.53},{"id":"svc-679","name":"Implementation","quantity":81,"unit":"package","unitPrice":1212.03}]}},{"id":"rec-00281","createdAt":"2025-04-04T00:10:28Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-80779311","name":"Cyberdyne Systems","segment":"mid-market","industry":"manufacturing","yearFounded":2001,"contacts":[{"type":"primary","name":"Elizabeth Garcia","email":"nancy.white@mock.co","phone":"+1-798-675-4877"},{"type":"technical","name":"Sarah Miller","email":"richard.johnson@example.com","phone":"+1-420-141-6517"}]},"subscription":{"plan":"enterprise","startDate":"2022-08-19","renewalDate":"2025-08-19","amount":27011.17,"currency":"AUD","services":[{"id":"svc-849","name":"Security","quantity":2781,"unit":"user","unitPrice":47.36},{"id":"svc-113","name":"Training","quantity":23,"unit":"hour","unitPrice":1087.97}]}},{"id":"rec-00282","createdAt":"2021-01-20T09:27:54Z","type":"customer","status":"pending","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["new","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-52231549","name":"Oscorp","segment":"startup","industry":"finance","yearFounded":1998,"contacts":[{"type":"primary","name":"Patricia Wilson","email":"james.miller@fake.tech","phone":"+1-373-150-1318"},{"type":"technical","name":"Robert Thomas","email":"sarah.harris@test.org","phone":"+1-998-737-9036"}]},"subscription":{"plan":"professional","startDate":"2022-03-16","renewalDate":"2025-03-16","amount":44175.28,"currency":"EUR","services":[{"id":"svc-832","name":"Cloud Storage","quantity":4803,"unit":"GB","unitPrice":226.35},{"id":"svc-789","name":"Implementation","quantity":33,"unit":"session","unitPrice":1535.78}]}},{"id":"rec-00283","createdAt":"2024-04-27T01:08:14Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-65955735","name":"Weyland-Yutani","segment":"mid-market","industry":"retail","yearFounded":1966,"contacts":[{"type":"primary","name":"Michael Martin","email":"joseph.taylor@test.org","phone":"+1-769-315-6621"},{"type":"technical","name":"Charles Brown","email":"nancy.wilson@mock.co","phone":"+1-695-665-9187"}]},"subscription":{"plan":"basic","startDate":"2020-08-18","renewalDate":"2022-08-18","amount":48469.68,"currency":"AUD","services":[{"id":"svc-626","name":"Security","quantity":8120,"unit":"instance","unitPrice":202.97},{"id":"svc-977","name":"Implementation","quantity":90,"unit":"package","unitPrice":203.41}]}},{"id":"rec-00284","createdAt":"2025-11-20T12:00:34Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["vip","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-87734448","name":"Initech","segment":"small-business","industry":"manufacturing","yearFounded":1993,"contacts":[{"type":"primary","name":"Michael Martinez","email":"james.garcia@fake.tech","phone":"+1-702-532-9352"},{"type":"technical","name":"Joseph Moore","email":"mary.robinson@sample.io","phone":"+1-996-606-2477"}]},"subscription":{"plan":"professional","startDate":"2022-05-14","renewalDate":"2025-05-14","amount":33007.19,"currency":"GBP","services":[{"id":"svc-773","name":"Analytics","quantity":1182,"unit":"instance","unitPrice":127.07},{"id":"svc-660","name":"Support Plan","quantity":25,"unit":"hour","unitPrice":1891.21}]}},{"id":"rec-00285","createdAt":"2022-06-27T03:29:52Z","type":"lead","status":"inactive","priority":"medium","metadata":{"source":"manual","region":"eu-west-1","tags":["returning","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-81065010","name":"Massive Dynamic","segment":"enterprise","industry":"retail","yearFounded":2013,"contacts":[{"type":"primary","name":"David Johnson","email":"william.martinez@example.com","phone":"+1-575-425-8062"},{"type":"technical","name":"Mary Martinez","email":"linda.davis@sample.io","phone":"+1-937-529-1962"}]},"subscription":{"plan":"enterprise","startDate":"2020-04-23","renewalDate":"2022-04-23","amount":40972.38,"currency":"CAD","services":[{"id":"svc-195","name":"Analytics","quantity":1584,"unit":"user","unitPrice":288.9},{"id":"svc-559","name":"Support Plan","quantity":79,"unit":"subscription","unitPrice":495.25}]}},{"id":"rec-00286","createdAt":"2022-08-13T13:18:16Z","type":"lead","status":"active","priority":"low","metadata":{"source":"manual","region":"us-west-2","tags":["vip","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-54836271","name":"Acme Corp","segment":"mid-market","industry":"finance","yearFounded":1981,"contacts":[{"type":"primary","name":"Linda Brown","email":"jennifer.jones@test.org","phone":"+1-517-746-5257"},{"type":"technical","name":"Susan Martinez","email":"susan.garcia@example.com","phone":"+1-384-936-6074"}]},"subscription":{"plan":"professional","startDate":"2021-09-03","renewalDate":"2023-09-03","amount":10719.81,"currency":"EUR","services":[{"id":"svc-263","name":"Cloud Storage","quantity":1189,"unit":"user","unitPrice":244.2},{"id":"svc-607","name":"Support Plan","quantity":90,"unit":"subscription","unitPrice":982.45}]}},{"id":"rec-00287","createdAt":"2020-07-27T09:48:14Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["returning","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-90940028","name":"Massive Dynamic","segment":"enterprise","industry":"healthcare","yearFounded":1994,"contacts":[{"type":"primary","name":"Robert Jackson","email":"michael.thomas@fake.tech","phone":"+1-429-526-1846"},{"type":"technical","name":"Patricia Jones","email":"richard.garcia@test.org","phone":"+1-370-677-6581"}]},"subscription":{"plan":"enterprise","startDate":"2023-03-24","renewalDate":"2026-03-24","amount":47879.88,"currency":"USD","services":[{"id":"svc-862","name":"Security","quantity":2961,"unit":"GB","unitPrice":111.36},{"id":"svc-857","name":"Training","quantity":73,"unit":"package","unitPrice":1411.14}]}},{"id":"rec-00288","createdAt":"2020-11-27T18:08:39Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-52952495","name":"Initech","segment":"startup","industry":"finance","yearFounded":2010,"contacts":[{"type":"primary","name":"Robert Miller","email":"david.taylor@sample.io","phone":"+1-377-172-9293"},{"type":"technical","name":"Mary White","email":"joseph.white@example.com","phone":"+1-803-628-4388"}]},"subscription":{"plan":"enterprise","startDate":"2021-08-22","renewalDate":"2023-08-22","amount":22785.87,"currency":"AUD","services":[{"id":"svc-372","name":"Security","quantity":5789,"unit":"instance","unitPrice":135.4},{"id":"svc-246","name":"Training","quantity":55,"unit":"session","unitPrice":56.47}]}},{"id":"rec-00289","createdAt":"2024-04-28T15:19:36Z","type":"partner","status":"active","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-94257559","name":"LexCorp","segment":"mid-market","industry":"manufacturing","yearFounded":1972,"contacts":[{"type":"primary","name":"Sarah Robinson","email":"linda.jones@test.org","phone":"+1-746-317-6071"},{"type":"technical","name":"Karen Moore","email":"thomas.moore@test.org","phone":"+1-258-637-1677"}]},"subscription":{"plan":"professional","startDate":"2024-11-15","renewalDate":"2025-11-15","amount":43457.63,"currency":"USD","services":[{"id":"svc-344","name":"Security","quantity":7197,"unit":"user","unitPrice":448.36},{"id":"svc-900","name":"Implementation","quantity":84,"unit":"subscription","unitPrice":472.26}]}},{"id":"rec-00290","createdAt":"2022-12-12T12:34:50Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"mobile","region":"eu-west-1","tags":["trial","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-28746522","name":"Oscorp","segment":"small-business","industry":"education","yearFounded":1965,"contacts":[{"type":"primary","name":"Linda Davis","email":"robert.moore@fake.tech","phone":"+1-644-404-2414"},{"type":"technical","name":"Charles Harris","email":"linda.johnson@sample.io","phone":"+1-374-951-3530"}]},"subscription":{"plan":"professional","startDate":"2022-04-25","renewalDate":"2024-04-25","amount":27215.21,"currency":"CAD","services":[{"id":"svc-579","name":"Database","quantity":2123,"unit":"license","unitPrice":180.52},{"id":"svc-784","name":"Consulting","quantity":84,"unit":"subscription","unitPrice":1972.57}]}},{"id":"rec-00291","createdAt":"2022-01-15T15:59:45Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["new","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-69368656","name":"Weyland-Yutani","segment":"mid-market","industry":"technology","yearFounded":2009,"contacts":[{"type":"primary","name":"Robert Wilson","email":"elizabeth.robinson@demo.net","phone":"+1-444-450-5782"},{"type":"technical","name":"Linda Jackson","email":"joseph.williams@example.com","phone":"+1-565-854-8266"}]},"subscription":{"plan":"enterprise","startDate":"2022-09-01","renewalDate":"2025-09-01","amount":22033.12,"currency":"USD","services":[{"id":"svc-328","name":"Security","quantity":9801,"unit":"instance","unitPrice":2.62},{"id":"svc-913","name":"Consulting","quantity":81,"unit":"hour","unitPrice":856.58}]}},{"id":"rec-00292","createdAt":"2023-11-16T19:57:59Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["new","basic","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-92666217","name":"Weyland-Yutani","segment":"enterprise","industry":"healthcare","yearFounded":1971,"contacts":[{"type":"primary","name":"Michael Anderson","email":"susan.brown@test.org","phone":"+1-921-840-5827"},{"type":"technical","name":"Michael Taylor","email":"robert.garcia@example.com","phone":"+1-369-497-5544"}]},"subscription":{"plan":"free","startDate":"2024-01-19","renewalDate":"2027-01-19","amount":40940.41,"currency":"AUD","services":[{"id":"svc-386","name":"Database","quantity":2498,"unit":"TB","unitPrice":161.62},{"id":"svc-950","name":"Support Plan","quantity":81,"unit":"session","unitPrice":1219.2}]}},{"id":"rec-00293","createdAt":"2021-09-27T18:42:20Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"import","region":"ap-southeast-1","tags":["returning","premium","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-55422313","name":"Virtucon","segment":"mid-market","industry":"technology","yearFounded":1958,"contacts":[{"type":"primary","name":"Patricia Harris","email":"michael.harris@demo.net","phone":"+1-349-731-6449"},{"type":"technical","name":"Mary Wilson","email":"patricia.jackson@example.com","phone":"+1-339-146-9753"}]},"subscription":{"plan":"professional","startDate":"2020-12-08","renewalDate":"2023-12-08","amount":30825.14,"currency":"AUD","services":[{"id":"svc-977","name":"Analytics","quantity":348,"unit":"instance","unitPrice":461.93},{"id":"svc-792","name":"Support Plan","quantity":14,"unit":"session","unitPrice":1988.16}]}},{"id":"rec-00294","createdAt":"2023-02-02T21:12:24Z","type":"customer","status":"active","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["returning","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-50893438","name":"Wayne Enterprises","segment":"enterprise","industry":"healthcare","yearFounded":1991,"contacts":[{"type":"primary","name":"Thomas Anderson","email":"sarah.robinson@demo.net","phone":"+1-423-241-4640"},{"type":"technical","name":"William Martinez","email":"richard.martin@test.org","phone":"+1-359-860-1660"}]},"subscription":{"plan":"free","startDate":"2023-06-15","renewalDate":"2026-06-15","amount":18156.75,"currency":"GBP","services":[{"id":"svc-461","name":"Compute Instances","quantity":4880,"unit":"user","unitPrice":99.01},{"id":"svc-205","name":"Consulting","quantity":78,"unit":"unit","unitPrice":825.8}]}},{"id":"rec-00295","createdAt":"2022-10-13T00:23:04Z","type":"prospect","status":"inactive","priority":"low","metadata":{"source":"web","region":"ap-southeast-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-62274288","name":"Stark Industries","segment":"startup","industry":"technology","yearFounded":1958,"contacts":[{"type":"primary","name":"Elizabeth Jackson","email":"linda.harris@fake.tech","phone":"+1-515-707-3752"},{"type":"technical","name":"Linda Smith","email":"nancy.jones@demo.net","phone":"+1-649-635-6329"}]},"subscription":{"plan":"basic","startDate":"2022-11-01","renewalDate":"2023-11-01","amount":30292.65,"currency":"EUR","services":[{"id":"svc-820","name":"Database","quantity":8561,"unit":"GB","unitPrice":79.32},{"id":"svc-520","name":"Support Plan","quantity":49,"unit":"unit","unitPrice":1150.02}]}},{"id":"rec-00296","createdAt":"2020-01-15T18:50:52Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-26284704","name":"Massive Dynamic","segment":"startup","industry":"finance","yearFounded":1979,"contacts":[{"type":"primary","name":"Karen Jackson","email":"elizabeth.wilson@sample.io","phone":"+1-442-286-5123"},{"type":"technical","name":"Richard Thomas","email":"karen.wilson@test.org","phone":"+1-490-675-9618"}]},"subscription":{"plan":"basic","startDate":"2020-03-20","renewalDate":"2023-03-20","amount":32638.67,"currency":"CAD","services":[{"id":"svc-490","name":"Security","quantity":4808,"unit":"instance","unitPrice":134.61},{"id":"svc-984","name":"Implementation","quantity":48,"unit":"session","unitPrice":758.57}]}},{"id":"rec-00297","createdAt":"2024-09-27T11:57:28Z","type":"prospect","status":"pending","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-81627759","name":"Globex","segment":"small-business","industry":"retail","yearFounded":1974,"contacts":[{"type":"primary","name":"Patricia Williams","email":"linda.harris@example.com","phone":"+1-331-756-8519"},{"type":"technical","name":"Jennifer Anderson","email":"robert.white@sample.io","phone":"+1-788-454-8736"}]},"subscription":{"plan":"enterprise","startDate":"2022-02-14","renewalDate":"2025-02-14","amount":15449.33,"currency":"CAD","services":[{"id":"svc-841","name":"Compute Instances","quantity":5768,"unit":"license","unitPrice":299.45},{"id":"svc-423","name":"Maintenance","quantity":100,"unit":"hour","unitPrice":352.22}]}},{"id":"rec-00298","createdAt":"2022-08-12T09:19:11Z","type":"lead","status":"active","priority":"high","metadata":{"source":"manual","region":"sa-east-1","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-16790729","name":"Wayne Enterprises","segment":"startup","industry":"technology","yearFounded":1985,"contacts":[{"type":"primary","name":"Linda Harris","email":"richard.wilson@fake.tech","phone":"+1-271-882-5831"},{"type":"technical","name":"Richard Harris","email":"robert.wilson@fake.tech","phone":"+1-484-605-4537"}]},"subscription":{"plan":"enterprise","startDate":"2024-11-13","renewalDate":"2026-11-13","amount":37270.58,"currency":"EUR","services":[{"id":"svc-404","name":"Database","quantity":3646,"unit":"license","unitPrice":175.72},{"id":"svc-862","name":"Support Plan","quantity":8,"unit":"session","unitPrice":902.33}]}},{"id":"rec-00299","createdAt":"2020-06-02T07:27:14Z","type":"customer","status":"inactive","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["new","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-77070595","name":"Virtucon","segment":"enterprise","industry":"finance","yearFounded":1983,"contacts":[{"type":"primary","name":"Elizabeth Davis","email":"william.jones@test.org","phone":"+1-558-828-7754"},{"type":"technical","name":"Joseph Brown","email":"linda.jackson@mock.co","phone":"+1-326-567-7335"}]},"subscription":{"plan":"custom","startDate":"2022-09-09","renewalDate":"2023-09-09","amount":38856.57,"currency":"GBP","services":[{"id":"svc-409","name":"Compute Instances","quantity":4484,"unit":"license","unitPrice":232.89},{"id":"svc-768","name":"Maintenance","quantity":89,"unit":"hour","unitPrice":704.01}]}},{"id":"rec-00300","createdAt":"2024-02-10T10:11:52Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["returning","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-82617072","name":"Weyland-Yutani","segment":"mid-market","industry":"education","yearFounded":1988,"contacts":[{"type":"primary","name":"Patricia Smith","email":"mary.garcia@mock.co","phone":"+1-652-408-3767"},{"type":"technical","name":"Charles Jackson","email":"john.jones@demo.net","phone":"+1-672-628-5929"}]},"subscription":{"plan":"professional","startDate":"2022-01-18","renewalDate":"2023-01-18","amount":36105.88,"currency":"AUD","services":[{"id":"svc-893","name":"Security","quantity":9912,"unit":"instance","unitPrice":433.32},{"id":"svc-316","name":"Consulting","quantity":38,"unit":"package","unitPrice":1810.35}]}},{"id":"rec-00301","createdAt":"2020-10-15T16:34:15Z","type":"lead","status":"pending","priority":"low","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-37940072","name":"Weyland-Yutani","segment":"startup","industry":"finance","yearFounded":1998,"contacts":[{"type":"primary","name":"Susan Miller","email":"elizabeth.brown@sample.io","phone":"+1-823-647-2206"},{"type":"technical","name":"Robert Miller","email":"elizabeth.martinez@demo.net","phone":"+1-514-901-3885"}]},"subscription":{"plan":"basic","startDate":"2023-11-03","renewalDate":"2024-11-03","amount":29979.22,"currency":"USD","services":[{"id":"svc-148","name":"Analytics","quantity":8522,"unit":"user","unitPrice":126.53},{"id":"svc-806","name":"Consulting","quantity":5,"unit":"hour","unitPrice":414.94}]}},{"id":"rec-00302","createdAt":"2021-05-16T15:31:15Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-24355254","name":"Stark Industries","segment":"mid-market","industry":"education","yearFounded":1968,"contacts":[{"type":"primary","name":"Charles Taylor","email":"david.taylor@sample.io","phone":"+1-778-568-3421"},{"type":"technical","name":"Robert Thompson","email":"sarah.williams@test.org","phone":"+1-651-955-3108"}]},"subscription":{"plan":"enterprise","startDate":"2020-03-20","renewalDate":"2021-03-20","amount":24000.93,"currency":"AUD","services":[{"id":"svc-805","name":"Database","quantity":3802,"unit":"user","unitPrice":384.73},{"id":"svc-869","name":"Maintenance","quantity":54,"unit":"hour","unitPrice":1283.34}]}},{"id":"rec-00303","createdAt":"2021-04-03T18:20:13Z","type":"partner","status":"inactive","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["returning","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-63988784","name":"Soylent Corp","segment":"mid-market","industry":"technology","yearFounded":1973,"contacts":[{"type":"primary","name":"Richard Martinez","email":"joseph.garcia@demo.net","phone":"+1-211-628-9605"},{"type":"technical","name":"Susan Jackson","email":"sarah.miller@example.com","phone":"+1-477-550-9670"}]},"subscription":{"plan":"free","startDate":"2024-11-08","renewalDate":"2027-11-08","amount":13807.62,"currency":"EUR","services":[{"id":"svc-116","name":"Database","quantity":6926,"unit":"user","unitPrice":377.97},{"id":"svc-746","name":"Training","quantity":1,"unit":"session","unitPrice":1386.89}]}},{"id":"rec-00304","createdAt":"2021-11-05T00:57:43Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-75604082","name":"Initech","segment":"small-business","industry":"education","yearFounded":2023,"contacts":[{"type":"primary","name":"Richard Davis","email":"robert.martin@example.com","phone":"+1-485-466-5910"},{"type":"technical","name":"Charles Harris","email":"robert.martin@test.org","phone":"+1-204-208-2632"}]},"subscription":{"plan":"professional","startDate":"2024-09-13","renewalDate":"2027-09-13","amount":11613.07,"currency":"CAD","services":[{"id":"svc-603","name":"Security","quantity":9073,"unit":"TB","unitPrice":89.97},{"id":"svc-958","name":"Consulting","quantity":4,"unit":"session","unitPrice":1437.98}]}},{"id":"rec-00305","createdAt":"2021-03-12T21:35:42Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"api","region":"eu-west-1","tags":["vip","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-49019232","name":"Soylent Corp","segment":"small-business","industry":"manufacturing","yearFounded":2021,"contacts":[{"type":"primary","name":"Patricia Taylor","email":"richard.jones@mock.co","phone":"+1-508-937-5867"},{"type":"technical","name":"Linda Anderson","email":"william.anderson@fake.tech","phone":"+1-393-430-6861"}]},"subscription":{"plan":"professional","startDate":"2020-06-11","renewalDate":"2023-06-11","amount":16959.83,"currency":"GBP","services":[{"id":"svc-120","name":"Analytics","quantity":4662,"unit":"license","unitPrice":445.59},{"id":"svc-893","name":"Implementation","quantity":37,"unit":"session","unitPrice":1939.66}]}},{"id":"rec-00306","createdAt":"2022-02-16T05:53:10Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"mobile","region":"eu-west-1","tags":["new","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-15970173","name":"Stark Industries","segment":"small-business","industry":"finance","yearFounded":1957,"contacts":[{"type":"primary","name":"Mary Brown","email":"jessica.thomas@sample.io","phone":"+1-313-694-7482"},{"type":"technical","name":"Charles Harris","email":"elizabeth.williams@mock.co","phone":"+1-779-390-9730"}]},"subscription":{"plan":"enterprise","startDate":"2024-10-28","renewalDate":"2025-10-28","amount":18531.18,"currency":"CAD","services":[{"id":"svc-683","name":"Cloud Storage","quantity":6498,"unit":"license","unitPrice":79.52},{"id":"svc-762","name":"Consulting","quantity":66,"unit":"unit","unitPrice":1697.83}]}},{"id":"rec-00307","createdAt":"2025-05-18T07:19:43Z","type":"customer","status":"inactive","priority":"medium","metadata":{"source":"import","region":"sa-east-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-76471088","name":"Wayne Enterprises","segment":"small-business","industry":"technology","yearFounded":1999,"contacts":[{"type":"primary","name":"Karen Harris","email":"susan.brown@mock.co","phone":"+1-512-333-9080"},{"type":"technical","name":"John Thomas","email":"sarah.williams@sample.io","phone":"+1-873-746-6525"}]},"subscription":{"plan":"enterprise","startDate":"2023-09-17","renewalDate":"2026-09-17","amount":26111.93,"currency":"USD","services":[{"id":"svc-330","name":"Database","quantity":6174,"unit":"instance","unitPrice":147.93},{"id":"svc-467","name":"Consulting","quantity":60,"unit":"session","unitPrice":278.09}]}},{"id":"rec-00308","createdAt":"2023-06-28T09:30:22Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-25872398","name":"Globex","segment":"mid-market","industry":"education","yearFounded":2000,"contacts":[{"type":"primary","name":"David Jackson","email":"michael.wilson@example.com","phone":"+1-831-824-4977"},{"type":"technical","name":"David Brown","email":"susan.martinez@demo.net","phone":"+1-859-839-3923"}]},"subscription":{"plan":"basic","startDate":"2020-12-09","renewalDate":"2021-12-09","amount":11467.95,"currency":"CAD","services":[{"id":"svc-373","name":"Compute Instances","quantity":8991,"unit":"TB","unitPrice":422.9},{"id":"svc-163","name":"Maintenance","quantity":37,"unit":"package","unitPrice":886.02}]}},{"id":"rec-00309","createdAt":"2021-02-18T01:56:26Z","type":"customer","status":"active","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["new","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-65301909","name":"Umbrella Corp","segment":"enterprise","industry":"technology","yearFounded":1987,"contacts":[{"type":"primary","name":"John Garcia","email":"jessica.garcia@example.com","phone":"+1-754-273-7224"},{"type":"technical","name":"Sarah Brown","email":"joseph.miller@mock.co","phone":"+1-830-234-1529"}]},"subscription":{"plan":"enterprise","startDate":"2022-03-05","renewalDate":"2023-03-05","amount":16021.3,"currency":"GBP","services":[{"id":"svc-854","name":"Security","quantity":1667,"unit":"license","unitPrice":293.21},{"id":"svc-889","name":"Consulting","quantity":13,"unit":"subscription","unitPrice":1981.15}]}},{"id":"rec-00310","createdAt":"2025-10-09T17:29:43Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-31824237","name":"Oscorp","segment":"mid-market","industry":"healthcare","yearFounded":1976,"contacts":[{"type":"primary","name":"Robert Harris","email":"joseph.martin@example.com","phone":"+1-987-358-7482"},{"type":"technical","name":"Linda Moore","email":"mary.jackson@demo.net","phone":"+1-854-673-1920"}]},"subscription":{"plan":"custom","startDate":"2024-10-19","renewalDate":"2026-10-19","amount":38139.4,"currency":"AUD","services":[{"id":"svc-231","name":"Compute Instances","quantity":7465,"unit":"TB","unitPrice":457.9},{"id":"svc-455","name":"Consulting","quantity":38,"unit":"package","unitPrice":391.92}]}},{"id":"rec-00311","createdAt":"2022-06-18T19:29:08Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"mobile","region":"eu-west-1","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-21530454","name":"Virtucon","segment":"enterprise","industry":"retail","yearFounded":2000,"contacts":[{"type":"primary","name":"Karen Smith","email":"joseph.harris@sample.io","phone":"+1-646-298-6645"},{"type":"technical","name":"Joseph Miller","email":"patricia.miller@test.org","phone":"+1-897-183-8782"}]},"subscription":{"plan":"professional","startDate":"2021-09-10","renewalDate":"2024-09-10","amount":41766.84,"currency":"AUD","services":[{"id":"svc-223","name":"Analytics","quantity":4447,"unit":"instance","unitPrice":287.15},{"id":"svc-230","name":"Implementation","quantity":74,"unit":"package","unitPrice":1739.46}]}},{"id":"rec-00312","createdAt":"2023-10-01T16:40:14Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"api","region":"us-east-1","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-35642876","name":"Soylent Corp","segment":"enterprise","industry":"retail","yearFounded":1974,"contacts":[{"type":"primary","name":"Susan Anderson","email":"charles.martin@sample.io","phone":"+1-864-442-5290"},{"type":"technical","name":"John Martin","email":"jennifer.white@example.com","phone":"+1-914-647-1247"}]},"subscription":{"plan":"free","startDate":"2022-03-01","renewalDate":"2023-03-01","amount":9311.35,"currency":"CAD","services":[{"id":"svc-334","name":"Security","quantity":8590,"unit":"TB","unitPrice":430.5},{"id":"svc-504","name":"Maintenance","quantity":79,"unit":"session","unitPrice":1998.97}]}},{"id":"rec-00313","createdAt":"2021-10-27T02:45:33Z","type":"customer","status":"active","priority":"medium","metadata":{"source":"import","region":"ap-southeast-1","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-48534304","name":"Weyland-Yutani","segment":"small-business","industry":"technology","yearFounded":1997,"contacts":[{"type":"primary","name":"Elizabeth Martin","email":"karen.robinson@fake.tech","phone":"+1-464-537-8875"},{"type":"technical","name":"Patricia Miller","email":"nancy.wilson@example.com","phone":"+1-528-462-8423"}]},"subscription":{"plan":"custom","startDate":"2020-04-28","renewalDate":"2021-04-28","amount":20040.06,"currency":"CAD","services":[{"id":"svc-591","name":"Database","quantity":1213,"unit":"user","unitPrice":164.23},{"id":"svc-277","name":"Implementation","quantity":67,"unit":"hour","unitPrice":338.66}]}},{"id":"rec-00314","createdAt":"2025-01-10T05:41:04Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["new","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-96234572","name":"Stark Industries","segment":"enterprise","industry":"technology","yearFounded":1973,"contacts":[{"type":"primary","name":"Mary Martinez","email":"susan.jackson@mock.co","phone":"+1-826-890-2874"},{"type":"technical","name":"Michael Williams","email":"john.davis@fake.tech","phone":"+1-315-668-1869"}]},"subscription":{"plan":"free","startDate":"2021-05-25","renewalDate":"2024-05-25","amount":27542.73,"currency":"GBP","services":[{"id":"svc-231","name":"Compute Instances","quantity":7528,"unit":"GB","unitPrice":136.52},{"id":"svc-594","name":"Implementation","quantity":28,"unit":"unit","unitPrice":443.53}]}},{"id":"rec-00315","createdAt":"2024-07-22T12:56:40Z","type":"partner","status":"active","priority":"high","metadata":{"source":"api","region":"ap-southeast-1","tags":["new","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-41114111","name":"Wayne Enterprises","segment":"startup","industry":"finance","yearFounded":1992,"contacts":[{"type":"primary","name":"Joseph Martinez","email":"nancy.jackson@sample.io","phone":"+1-736-654-5932"},{"type":"technical","name":"Susan Brown","email":"william.thomas@fake.tech","phone":"+1-837-954-1985"}]},"subscription":{"plan":"custom","startDate":"2021-09-16","renewalDate":"2024-09-16","amount":48920.79,"currency":"USD","services":[{"id":"svc-174","name":"Cloud Storage","quantity":8783,"unit":"GB","unitPrice":242.44},{"id":"svc-160","name":"Support Plan","quantity":16,"unit":"hour","unitPrice":414.93}]}},{"id":"rec-00316","createdAt":"2020-01-05T12:18:50Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["new","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-26604885","name":"Aperture Science","segment":"small-business","industry":"education","yearFounded":2013,"contacts":[{"type":"primary","name":"Elizabeth Robinson","email":"david.brown@demo.net","phone":"+1-993-147-4213"},{"type":"technical","name":"Robert Miller","email":"susan.harris@test.org","phone":"+1-418-724-3196"}]},"subscription":{"plan":"custom","startDate":"2023-07-27","renewalDate":"2024-07-27","amount":1829.02,"currency":"EUR","services":[{"id":"svc-359","name":"Analytics","quantity":7365,"unit":"instance","unitPrice":454.37},{"id":"svc-650","name":"Training","quantity":49,"unit":"hour","unitPrice":986.07}]}},{"id":"rec-00317","createdAt":"2020-06-21T05:55:27Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"api","region":"us-west-2","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-91434516","name":"Globex","segment":"mid-market","industry":"finance","yearFounded":1969,"contacts":[{"type":"primary","name":"Charles Thomas","email":"james.jackson@demo.net","phone":"+1-746-981-1959"},{"type":"technical","name":"Jessica Anderson","email":"mary.johnson@demo.net","phone":"+1-246-441-7964"}]},"subscription":{"plan":"professional","startDate":"2022-07-10","renewalDate":"2025-07-10","amount":40374.53,"currency":"CAD","services":[{"id":"svc-379","name":"Database","quantity":6363,"unit":"license","unitPrice":277.22},{"id":"svc-540","name":"Support Plan","quantity":79,"unit":"hour","unitPrice":1074.26}]}},{"id":"rec-00318","createdAt":"2021-02-20T01:04:00Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["new","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-16177242","name":"Weyland-Yutani","segment":"small-business","industry":"healthcare","yearFounded":2018,"contacts":[{"type":"primary","name":"Patricia Thomas","email":"richard.martinez@mock.co","phone":"+1-765-858-9233"},{"type":"technical","name":"John Garcia","email":"charles.brown@demo.net","phone":"+1-505-853-8573"}]},"subscription":{"plan":"professional","startDate":"2023-09-25","renewalDate":"2026-09-25","amount":48518.65,"currency":"USD","services":[{"id":"svc-725","name":"Cloud Storage","quantity":7784,"unit":"TB","unitPrice":106.47},{"id":"svc-346","name":"Consulting","quantity":38,"unit":"subscription","unitPrice":204.94}]}},{"id":"rec-00319","createdAt":"2023-11-11T07:30:34Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"web","region":"sa-east-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-49759734","name":"Aperture Science","segment":"startup","industry":"finance","yearFounded":1990,"contacts":[{"type":"primary","name":"Linda Johnson","email":"thomas.miller@demo.net","phone":"+1-533-722-5700"},{"type":"technical","name":"Charles Anderson","email":"david.wilson@fake.tech","phone":"+1-392-582-6157"}]},"subscription":{"plan":"professional","startDate":"2021-02-09","renewalDate":"2024-02-09","amount":38667.54,"currency":"CAD","services":[{"id":"svc-762","name":"Compute Instances","quantity":597,"unit":"instance","unitPrice":204.08},{"id":"svc-857","name":"Training","quantity":75,"unit":"hour","unitPrice":587.93}]}},{"id":"rec-00320","createdAt":"2024-05-01T14:57:35Z","type":"customer","status":"active","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-17661906","name":"Soylent Corp","segment":"enterprise","industry":"technology","yearFounded":1965,"contacts":[{"type":"primary","name":"Sarah Martin","email":"susan.moore@sample.io","phone":"+1-555-265-7394"},{"type":"technical","name":"James Anderson","email":"william.smith@fake.tech","phone":"+1-662-388-8232"}]},"subscription":{"plan":"professional","startDate":"2024-05-17","renewalDate":"2025-05-17","amount":43547.92,"currency":"CAD","services":[{"id":"svc-817","name":"Cloud Storage","quantity":9541,"unit":"instance","unitPrice":63.55},{"id":"svc-733","name":"Training","quantity":57,"unit":"session","unitPrice":590.99}]}},{"id":"rec-00321","createdAt":"2024-08-06T00:46:27Z","type":"lead","status":"active","priority":"low","metadata":{"source":"import","region":"us-west-2","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-33984750","name":"Wayne Enterprises","segment":"small-business","industry":"technology","yearFounded":1954,"contacts":[{"type":"primary","name":"Jessica Johnson","email":"jessica.white@test.org","phone":"+1-613-752-9787"},{"type":"technical","name":"James White","email":"sarah.garcia@demo.net","phone":"+1-734-695-1380"}]},"subscription":{"plan":"enterprise","startDate":"2022-07-14","renewalDate":"2023-07-14","amount":28204.87,"currency":"EUR","services":[{"id":"svc-443","name":"Cloud Storage","quantity":8057,"unit":"TB","unitPrice":206.84},{"id":"svc-747","name":"Consulting","quantity":53,"unit":"hour","unitPrice":1287.97}]}},{"id":"rec-00322","createdAt":"2020-04-15T16:21:44Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["vip","startup","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-92724770","name":"Weyland-Yutani","segment":"enterprise","industry":"education","yearFounded":2008,"contacts":[{"type":"primary","name":"Susan Jackson","email":"patricia.williams@demo.net","phone":"+1-509-779-7582"},{"type":"technical","name":"Karen Thomas","email":"mary.davis@sample.io","phone":"+1-419-715-7044"}]},"subscription":{"plan":"professional","startDate":"2024-05-03","renewalDate":"2025-05-03","amount":13369.73,"currency":"USD","services":[{"id":"svc-841","name":"Analytics","quantity":3082,"unit":"instance","unitPrice":424.7},{"id":"svc-452","name":"Implementation","quantity":77,"unit":"unit","unitPrice":1726.14}]}},{"id":"rec-00323","createdAt":"2023-09-15T22:06:01Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-74463180","name":"Initech","segment":"mid-market","industry":"technology","yearFounded":2016,"contacts":[{"type":"primary","name":"Mary Jackson","email":"thomas.brown@demo.net","phone":"+1-795-953-8341"},{"type":"technical","name":"Karen Moore","email":"linda.thompson@fake.tech","phone":"+1-441-646-1398"}]},"subscription":{"plan":"professional","startDate":"2020-03-18","renewalDate":"2021-03-18","amount":35018.65,"currency":"CAD","services":[{"id":"svc-777","name":"Database","quantity":6352,"unit":"license","unitPrice":135.35},{"id":"svc-192","name":"Support Plan","quantity":98,"unit":"package","unitPrice":101.01}]}},{"id":"rec-00324","createdAt":"2021-05-08T23:40:56Z","type":"prospect","status":"active","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-16912937","name":"Stark Industries","segment":"small-business","industry":"manufacturing","yearFounded":1998,"contacts":[{"type":"primary","name":"Nancy Thompson","email":"joseph.jackson@sample.io","phone":"+1-378-685-1121"},{"type":"technical","name":"John Moore","email":"karen.white@sample.io","phone":"+1-851-988-7478"}]},"subscription":{"plan":"professional","startDate":"2024-04-07","renewalDate":"2025-04-07","amount":4832.65,"currency":"EUR","services":[{"id":"svc-492","name":"Cloud Storage","quantity":4762,"unit":"user","unitPrice":470.88},{"id":"svc-857","name":"Support Plan","quantity":94,"unit":"session","unitPrice":126.28}]}},{"id":"rec-00325","createdAt":"2020-05-26T19:00:20Z","type":"lead","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["new","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-55772660","name":"Acme Corp","segment":"enterprise","industry":"technology","yearFounded":2017,"contacts":[{"type":"primary","name":"Michael Martinez","email":"jessica.thompson@demo.net","phone":"+1-860-837-1132"},{"type":"technical","name":"Robert Jones","email":"mary.johnson@example.com","phone":"+1-412-972-3676"}]},"subscription":{"plan":"professional","startDate":"2022-03-08","renewalDate":"2025-03-08","amount":35251.39,"currency":"CAD","services":[{"id":"svc-122","name":"Database","quantity":2595,"unit":"GB","unitPrice":166.42},{"id":"svc-707","name":"Training","quantity":36,"unit":"package","unitPrice":1486.0}]}},{"id":"rec-00326","createdAt":"2024-09-01T03:47:42Z","type":"partner","status":"pending","priority":"low","metadata":{"source":"web","region":"us-east-1","tags":["new","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-40262510","name":"Massive Dynamic","segment":"small-business","industry":"finance","yearFounded":2022,"contacts":[{"type":"primary","name":"James Thompson","email":"robert.brown@demo.net","phone":"+1-934-831-6236"},{"type":"technical","name":"Patricia White","email":"william.thomas@sample.io","phone":"+1-288-253-4134"}]},"subscription":{"plan":"basic","startDate":"2023-07-25","renewalDate":"2026-07-25","amount":2231.13,"currency":"CAD","services":[{"id":"svc-300","name":"Analytics","quantity":5980,"unit":"user","unitPrice":249.05},{"id":"svc-577","name":"Implementation","quantity":1,"unit":"subscription","unitPrice":1286.28}]}},{"id":"rec-00327","createdAt":"2022-07-28T09:54:02Z","type":"partner","status":"inactive","priority":"high","metadata":{"source":"web","region":"ap-southeast-1","tags":["trial","enterprise","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-23733336","name":"Weyland-Yutani","segment":"enterprise","industry":"technology","yearFounded":1989,"contacts":[{"type":"primary","name":"Charles White","email":"sarah.wilson@mock.co","phone":"+1-710-808-8830"},{"type":"technical","name":"Jennifer Wilson","email":"karen.anderson@example.com","phone":"+1-459-427-9407"}]},"subscription":{"plan":"professional","startDate":"2020-08-08","renewalDate":"2022-08-08","amount":35783.38,"currency":"AUD","services":[{"id":"svc-876","name":"Compute Instances","quantity":9560,"unit":"instance","unitPrice":430.35},{"id":"svc-251","name":"Training","quantity":95,"unit":"package","unitPrice":1180.27}]}},{"id":"rec-00328","createdAt":"2024-06-06T18:52:46Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"manual","region":"ap-southeast-1","tags":["trial","premium","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-96417269","name":"Cyberdyne Systems","segment":"mid-market","industry":"healthcare","yearFounded":1968,"contacts":[{"type":"primary","name":"Sarah Davis","email":"james.williams@sample.io","phone":"+1-915-749-8805"},{"type":"technical","name":"James Johnson","email":"james.white@mock.co","phone":"+1-274-547-4408"}]},"subscription":{"plan":"enterprise","startDate":"2022-07-17","renewalDate":"2023-07-17","amount":42179.2,"currency":"AUD","services":[{"id":"svc-270","name":"Database","quantity":998,"unit":"TB","unitPrice":312.8},{"id":"svc-485","name":"Maintenance","quantity":25,"unit":"subscription","unitPrice":302.66}]}},{"id":"rec-00329","createdAt":"2022-07-22T20:11:16Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"import","region":"ap-southeast-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-61601615","name":"Nakatomi Trading Corp","segment":"enterprise","industry":"education","yearFounded":1951,"contacts":[{"type":"primary","name":"Thomas Moore","email":"charles.garcia@mock.co","phone":"+1-298-625-6317"},{"type":"technical","name":"Michael Moore","email":"james.thompson@mock.co","phone":"+1-539-665-9558"}]},"subscription":{"plan":"custom","startDate":"2020-08-26","renewalDate":"2022-08-26","amount":3449.09,"currency":"CAD","services":[{"id":"svc-656","name":"Analytics","quantity":3538,"unit":"license","unitPrice":248.37},{"id":"svc-105","name":"Training","quantity":16,"unit":"session","unitPrice":1812.45}]}},{"id":"rec-00330","createdAt":"2021-11-16T07:40:01Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"import","region":"eu-west-1","tags":["returning","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-28340331","name":"Virtucon","segment":"mid-market","industry":"education","yearFounded":1954,"contacts":[{"type":"primary","name":"Charles Jones","email":"charles.robinson@sample.io","phone":"+1-258-380-8425"},{"type":"technical","name":"Joseph Garcia","email":"thomas.white@demo.net","phone":"+1-822-827-9598"}]},"subscription":{"plan":"enterprise","startDate":"2022-02-18","renewalDate":"2024-02-18","amount":4029.64,"currency":"USD","services":[{"id":"svc-678","name":"Cloud Storage","quantity":3637,"unit":"instance","unitPrice":330.85},{"id":"svc-692","name":"Training","quantity":64,"unit":"hour","unitPrice":365.14}]}},{"id":"rec-00331","createdAt":"2023-08-22T12:30:43Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-95503379","name":"Acme Corp","segment":"startup","industry":"manufacturing","yearFounded":1954,"contacts":[{"type":"primary","name":"Sarah Taylor","email":"david.harris@sample.io","phone":"+1-692-989-9593"},{"type":"technical","name":"Michael Davis","email":"mary.moore@mock.co","phone":"+1-757-907-9395"}]},"subscription":{"plan":"free","startDate":"2023-01-17","renewalDate":"2026-01-17","amount":25517.39,"currency":"GBP","services":[{"id":"svc-978","name":"Database","quantity":7709,"unit":"license","unitPrice":129.14},{"id":"svc-690","name":"Maintenance","quantity":70,"unit":"session","unitPrice":848.4}]}},{"id":"rec-00332","createdAt":"2025-04-27T00:26:38Z","type":"prospect","status":"pending","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-48685065","name":"Initech","segment":"enterprise","industry":"technology","yearFounded":2011,"contacts":[{"type":"primary","name":"William Garcia","email":"nancy.brown@sample.io","phone":"+1-671-873-6096"},{"type":"technical","name":"John Davis","email":"william.martin@test.org","phone":"+1-538-917-1110"}]},"subscription":{"plan":"professional","startDate":"2022-01-03","renewalDate":"2024-01-03","amount":2553.98,"currency":"CAD","services":[{"id":"svc-834","name":"Security","quantity":3566,"unit":"license","unitPrice":105.95},{"id":"svc-698","name":"Training","quantity":22,"unit":"subscription","unitPrice":588.13}]}},{"id":"rec-00333","createdAt":"2020-08-10T04:29:58Z","type":"prospect","status":"inactive","priority":"high","metadata":{"source":"manual","region":"us-west-2","tags":["new","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-66627764","name":"Massive Dynamic","segment":"enterprise","industry":"finance","yearFounded":1957,"contacts":[{"type":"primary","name":"Sarah Miller","email":"karen.williams@demo.net","phone":"+1-214-470-8383"},{"type":"technical","name":"Patricia Jackson","email":"richard.robinson@mock.co","phone":"+1-281-409-4452"}]},"subscription":{"plan":"enterprise","startDate":"2024-09-01","renewalDate":"2025-09-01","amount":10026.7,"currency":"GBP","services":[{"id":"svc-733","name":"Database","quantity":8526,"unit":"TB","unitPrice":366.79},{"id":"svc-502","name":"Maintenance","quantity":54,"unit":"subscription","unitPrice":1826.53}]}},{"id":"rec-00334","createdAt":"2025-09-17T13:02:59Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"us-east-1","tags":["vip","startup","pending"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-90785868","name":"Weyland-Yutani","segment":"mid-market","industry":"technology","yearFounded":1984,"contacts":[{"type":"primary","name":"John Robinson","email":"jessica.garcia@fake.tech","phone":"+1-970-958-9294"},{"type":"technical","name":"Nancy Harris","email":"john.martin@demo.net","phone":"+1-457-877-6655"}]},"subscription":{"plan":"basic","startDate":"2024-01-20","renewalDate":"2025-01-20","amount":46493.3,"currency":"AUD","services":[{"id":"svc-512","name":"Analytics","quantity":3374,"unit":"user","unitPrice":497.1},{"id":"svc-631","name":"Consulting","quantity":80,"unit":"unit","unitPrice":1299.07}]}},{"id":"rec-00335","createdAt":"2023-12-02T07:07:21Z","type":"customer","status":"active","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["new","premium","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-18256611","name":"Initech","segment":"startup","industry":"technology","yearFounded":2005,"contacts":[{"type":"primary","name":"William Davis","email":"joseph.jones@test.org","phone":"+1-450-747-5216"},{"type":"technical","name":"David Anderson","email":"james.jackson@example.com","phone":"+1-558-469-3209"}]},"subscription":{"plan":"professional","startDate":"2020-02-10","renewalDate":"2021-02-10","amount":22244.33,"currency":"CAD","services":[{"id":"svc-658","name":"Compute Instances","quantity":7017,"unit":"GB","unitPrice":481.1},{"id":"svc-491","name":"Consulting","quantity":11,"unit":"unit","unitPrice":394.33}]}},{"id":"rec-00336","createdAt":"2022-10-12T13:13:43Z","type":"lead","status":"pending","priority":"low","metadata":{"source":"web","region":"us-east-1","tags":["vip","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-70917342","name":"Wayne Enterprises","segment":"small-business","industry":"retail","yearFounded":1989,"contacts":[{"type":"primary","name":"Richard White","email":"james.martinez@demo.net","phone":"+1-965-494-1209"},{"type":"technical","name":"Karen White","email":"patricia.williams@example.com","phone":"+1-524-914-6900"}]},"subscription":{"plan":"enterprise","startDate":"2021-04-19","renewalDate":"2023-04-19","amount":35633.47,"currency":"CAD","services":[{"id":"svc-295","name":"Analytics","quantity":263,"unit":"instance","unitPrice":40.18},{"id":"svc-368","name":"Maintenance","quantity":65,"unit":"subscription","unitPrice":1038.19}]}},{"id":"rec-00337","createdAt":"2021-02-19T16:56:31Z","type":"partner","status":"pending","priority":"low","metadata":{"source":"import","region":"us-west-2","tags":["returning","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-76331761","name":"LexCorp","segment":"mid-market","industry":"education","yearFounded":1975,"contacts":[{"type":"primary","name":"Charles Taylor","email":"richard.thomas@test.org","phone":"+1-774-547-9264"},{"type":"technical","name":"Karen Thompson","email":"charles.anderson@fake.tech","phone":"+1-871-997-7504"}]},"subscription":{"plan":"free","startDate":"2021-01-01","renewalDate":"2022-01-01","amount":44064.48,"currency":"USD","services":[{"id":"svc-626","name":"Cloud Storage","quantity":9201,"unit":"user","unitPrice":358.15},{"id":"svc-295","name":"Implementation","quantity":64,"unit":"session","unitPrice":72.43}]}},{"id":"rec-00338","createdAt":"2020-05-23T22:39:06Z","type":"partner","status":"pending","priority":"high","metadata":{"source":"api","region":"us-west-2","tags":["vip","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-21457305","name":"Globex","segment":"enterprise","industry":"manufacturing","yearFounded":1951,"contacts":[{"type":"primary","name":"William Williams","email":"david.smith@test.org","phone":"+1-311-284-4228"},{"type":"technical","name":"Charles Johnson","email":"david.miller@mock.co","phone":"+1-884-419-4819"}]},"subscription":{"plan":"professional","startDate":"2023-09-26","renewalDate":"2026-09-26","amount":42375.83,"currency":"AUD","services":[{"id":"svc-383","name":"Compute Instances","quantity":7529,"unit":"instance","unitPrice":185.58},{"id":"svc-353","name":"Maintenance","quantity":40,"unit":"hour","unitPrice":1442.0}]}},{"id":"rec-00339","createdAt":"2024-03-08T06:22:06Z","type":"partner","status":"active","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["trial","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-69499683","name":"Weyland-Yutani","segment":"startup","industry":"retail","yearFounded":2012,"contacts":[{"type":"primary","name":"Sarah Harris","email":"sarah.thomas@fake.tech","phone":"+1-902-631-1817"},{"type":"technical","name":"Michael Brown","email":"jessica.wilson@example.com","phone":"+1-547-599-5146"}]},"subscription":{"plan":"enterprise","startDate":"2023-02-27","renewalDate":"2026-02-27","amount":5757.3,"currency":"USD","services":[{"id":"svc-389","name":"Analytics","quantity":379,"unit":"user","unitPrice":278.68},{"id":"svc-746","name":"Implementation","quantity":26,"unit":"subscription","unitPrice":1800.3}]}},{"id":"rec-00340","createdAt":"2021-10-23T11:01:11Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"api","region":"sa-east-1","tags":["new","basic","pending"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-44130305","name":"Soylent Corp","segment":"mid-market","industry":"finance","yearFounded":1993,"contacts":[{"type":"primary","name":"Jessica Thomas","email":"michael.thomas@mock.co","phone":"+1-311-407-4927"},{"type":"technical","name":"James Taylor","email":"william.johnson@mock.co","phone":"+1-711-499-3615"}]},"subscription":{"plan":"custom","startDate":"2024-05-09","renewalDate":"2026-05-09","amount":38234.09,"currency":"CAD","services":[{"id":"svc-348","name":"Analytics","quantity":7679,"unit":"instance","unitPrice":289.18},{"id":"svc-970","name":"Implementation","quantity":2,"unit":"hour","unitPrice":1501.1}]}},{"id":"rec-00341","createdAt":"2022-09-04T05:22:32Z","type":"lead","status":"suspended","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-20672551","name":"Aperture Science","segment":"startup","industry":"education","yearFounded":2001,"contacts":[{"type":"primary","name":"John Martinez","email":"michael.johnson@sample.io","phone":"+1-413-747-2839"},{"type":"technical","name":"Jennifer Martin","email":"thomas.davis@example.com","phone":"+1-687-132-4397"}]},"subscription":{"plan":"free","startDate":"2023-11-24","renewalDate":"2025-11-24","amount":48618.96,"currency":"CAD","services":[{"id":"svc-464","name":"Analytics","quantity":9185,"unit":"user","unitPrice":260.82},{"id":"svc-694","name":"Support Plan","quantity":89,"unit":"hour","unitPrice":220.29}]}},{"id":"rec-00342","createdAt":"2022-12-20T23:29:47Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"web","region":"us-west-2","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-71900079","name":"Globex","segment":"enterprise","industry":"retail","yearFounded":1980,"contacts":[{"type":"primary","name":"Jennifer Wilson","email":"michael.davis@mock.co","phone":"+1-403-835-7187"},{"type":"technical","name":"Nancy Smith","email":"karen.anderson@demo.net","phone":"+1-219-504-4670"}]},"subscription":{"plan":"enterprise","startDate":"2023-10-07","renewalDate":"2026-10-07","amount":37461.41,"currency":"CAD","services":[{"id":"svc-629","name":"Compute Instances","quantity":1634,"unit":"instance","unitPrice":280.81},{"id":"svc-993","name":"Implementation","quantity":25,"unit":"unit","unitPrice":862.61}]}},{"id":"rec-00343","createdAt":"2023-09-22T03:19:34Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["new","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-68950818","name":"Umbrella Corp","segment":"small-business","industry":"finance","yearFounded":2007,"contacts":[{"type":"primary","name":"Susan Williams","email":"nancy.robinson@test.org","phone":"+1-408-228-6069"},{"type":"technical","name":"Charles Brown","email":"michael.garcia@example.com","phone":"+1-795-937-4262"}]},"subscription":{"plan":"enterprise","startDate":"2024-08-18","renewalDate":"2026-08-18","amount":6087.42,"currency":"AUD","services":[{"id":"svc-851","name":"Analytics","quantity":1227,"unit":"GB","unitPrice":143.32},{"id":"svc-894","name":"Consulting","quantity":54,"unit":"unit","unitPrice":272.4}]}},{"id":"rec-00344","createdAt":"2024-12-24T00:13:46Z","type":"partner","status":"active","priority":"high","metadata":{"source":"import","region":"eu-west-1","tags":["vip","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-39133709","name":"Globex","segment":"enterprise","industry":"education","yearFounded":1954,"contacts":[{"type":"primary","name":"Jennifer Wilson","email":"nancy.thomas@example.com","phone":"+1-600-661-1529"},{"type":"technical","name":"Richard Anderson","email":"nancy.white@mock.co","phone":"+1-576-679-3126"}]},"subscription":{"plan":"professional","startDate":"2022-02-08","renewalDate":"2025-02-08","amount":36131.16,"currency":"EUR","services":[{"id":"svc-846","name":"Analytics","quantity":3246,"unit":"TB","unitPrice":374.9},{"id":"svc-101","name":"Maintenance","quantity":20,"unit":"subscription","unitPrice":869.25}]}},{"id":"rec-00345","createdAt":"2021-09-15T23:46:18Z","type":"lead","status":"active","priority":"high","metadata":{"source":"import","region":"us-east-1","tags":["vip","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-37095540","name":"Cyberdyne Systems","segment":"enterprise","industry":"finance","yearFounded":1974,"contacts":[{"type":"primary","name":"David Martinez","email":"karen.thomas@mock.co","phone":"+1-544-401-2438"},{"type":"technical","name":"Thomas Anderson","email":"robert.smith@example.com","phone":"+1-994-392-1394"}]},"subscription":{"plan":"enterprise","startDate":"2023-07-15","renewalDate":"2025-07-15","amount":8806.17,"currency":"USD","services":[{"id":"svc-375","name":"Analytics","quantity":3048,"unit":"license","unitPrice":369.09},{"id":"svc-810","name":"Training","quantity":88,"unit":"package","unitPrice":1218.45}]}},{"id":"rec-00346","createdAt":"2022-04-10T05:46:19Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-86670350","name":"Initech","segment":"startup","industry":"education","yearFounded":1951,"contacts":[{"type":"primary","name":"William Jackson","email":"mary.harris@example.com","phone":"+1-683-737-2921"},{"type":"technical","name":"Michael Brown","email":"jessica.taylor@example.com","phone":"+1-817-607-8212"}]},"subscription":{"plan":"professional","startDate":"2021-09-14","renewalDate":"2022-09-14","amount":2928.87,"currency":"CAD","services":[{"id":"svc-299","name":"Cloud Storage","quantity":1554,"unit":"user","unitPrice":420.59},{"id":"svc-248","name":"Consulting","quantity":17,"unit":"subscription","unitPrice":1914.23}]}},{"id":"rec-00347","createdAt":"2021-08-15T10:00:43Z","type":"prospect","status":"active","priority":"low","metadata":{"source":"api","region":"eu-west-1","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-77368993","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"education","yearFounded":1952,"contacts":[{"type":"primary","name":"Jennifer Robinson","email":"charles.garcia@mock.co","phone":"+1-571-184-4635"},{"type":"technical","name":"Jessica Williams","email":"jessica.harris@test.org","phone":"+1-754-395-2149"}]},"subscription":{"plan":"enterprise","startDate":"2023-02-11","renewalDate":"2024-02-11","amount":46078.39,"currency":"USD","services":[{"id":"svc-485","name":"Database","quantity":3487,"unit":"TB","unitPrice":44.08},{"id":"svc-428","name":"Maintenance","quantity":4,"unit":"hour","unitPrice":1436.0}]}},{"id":"rec-00348","createdAt":"2022-09-16T08:23:14Z","type":"prospect","status":"suspended","priority":"medium","metadata":{"source":"import","region":"us-west-2","tags":["trial","startup","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-54354772","name":"Massive Dynamic","segment":"mid-market","industry":"healthcare","yearFounded":1958,"contacts":[{"type":"primary","name":"Robert Thomas","email":"robert.moore@fake.tech","phone":"+1-439-393-3361"},{"type":"technical","name":"Sarah Martin","email":"susan.white@demo.net","phone":"+1-721-867-9458"}]},"subscription":{"plan":"custom","startDate":"2022-04-11","renewalDate":"2024-04-11","amount":39188.62,"currency":"AUD","services":[{"id":"svc-517","name":"Analytics","quantity":7271,"unit":"instance","unitPrice":99.5},{"id":"svc-258","name":"Maintenance","quantity":79,"unit":"session","unitPrice":659.03}]}},{"id":"rec-00349","createdAt":"2021-11-26T09:16:15Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"web","region":"eu-west-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-25407094","name":"LexCorp","segment":"enterprise","industry":"manufacturing","yearFounded":1970,"contacts":[{"type":"primary","name":"Susan Martin","email":"robert.davis@example.com","phone":"+1-250-273-5536"},{"type":"technical","name":"William Johnson","email":"linda.jones@mock.co","phone":"+1-928-914-2065"}]},"subscription":{"plan":"free","startDate":"2020-02-24","renewalDate":"2021-02-24","amount":2333.71,"currency":"EUR","services":[{"id":"svc-911","name":"Analytics","quantity":2940,"unit":"TB","unitPrice":163.12},{"id":"svc-131","name":"Consulting","quantity":94,"unit":"hour","unitPrice":895.91}]}},{"id":"rec-00350","createdAt":"2022-08-24T05:42:59Z","type":"prospect","status":"pending","priority":"low","metadata":{"source":"manual","region":"sa-east-1","tags":["vip","basic","pending"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-19551813","name":"Acme Corp","segment":"enterprise","industry":"manufacturing","yearFounded":1993,"contacts":[{"type":"primary","name":"Karen Smith","email":"thomas.jones@sample.io","phone":"+1-311-394-1066"},{"type":"technical","name":"Michael Davis","email":"james.garcia@example.com","phone":"+1-631-981-1446"}]},"subscription":{"plan":"enterprise","startDate":"2020-10-09","renewalDate":"2021-10-09","amount":13588.3,"currency":"EUR","services":[{"id":"svc-715","name":"Cloud Storage","quantity":5481,"unit":"GB","unitPrice":58.94},{"id":"svc-649","name":"Consulting","quantity":23,"unit":"subscription","unitPrice":641.57}]}},{"id":"rec-00351","createdAt":"2023-01-11T18:12:43Z","type":"customer","status":"pending","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-57564446","name":"Umbrella Corp","segment":"enterprise","industry":"technology","yearFounded":1998,"contacts":[{"type":"primary","name":"David White","email":"joseph.thompson@demo.net","phone":"+1-805-331-6844"},{"type":"technical","name":"Charles White","email":"michael.anderson@mock.co","phone":"+1-241-305-8154"}]},"subscription":{"plan":"custom","startDate":"2023-08-25","renewalDate":"2025-08-25","amount":46009.38,"currency":"EUR","services":[{"id":"svc-528","name":"Database","quantity":5014,"unit":"GB","unitPrice":109.49},{"id":"svc-689","name":"Support Plan","quantity":96,"unit":"hour","unitPrice":701.46}]}},{"id":"rec-00352","createdAt":"2020-01-17T19:24:20Z","type":"prospect","status":"suspended","priority":"high","metadata":{"source":"web","region":"us-east-1","tags":["vip","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-13571137","name":"Virtucon","segment":"startup","industry":"education","yearFounded":2016,"contacts":[{"type":"primary","name":"David Thompson","email":"linda.smith@test.org","phone":"+1-845-248-2692"},{"type":"technical","name":"James Harris","email":"robert.garcia@mock.co","phone":"+1-526-603-5355"}]},"subscription":{"plan":"custom","startDate":"2022-01-08","renewalDate":"2025-01-08","amount":6511.69,"currency":"USD","services":[{"id":"svc-463","name":"Compute Instances","quantity":9658,"unit":"license","unitPrice":465.01},{"id":"svc-929","name":"Support Plan","quantity":95,"unit":"unit","unitPrice":1907.66}]}},{"id":"rec-00353","createdAt":"2020-09-16T23:52:08Z","type":"lead","status":"active","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["trial","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-83692143","name":"LexCorp","segment":"small-business","industry":"retail","yearFounded":2013,"contacts":[{"type":"primary","name":"Sarah Thomas","email":"michael.harris@sample.io","phone":"+1-645-704-2835"},{"type":"technical","name":"David Anderson","email":"sarah.taylor@fake.tech","phone":"+1-385-421-1555"}]},"subscription":{"plan":"free","startDate":"2020-06-09","renewalDate":"2022-06-09","amount":27505.21,"currency":"GBP","services":[{"id":"svc-395","name":"Cloud Storage","quantity":255,"unit":"license","unitPrice":161.53},{"id":"svc-487","name":"Maintenance","quantity":51,"unit":"unit","unitPrice":1537.07}]}},{"id":"rec-00354","createdAt":"2020-02-07T03:25:08Z","type":"prospect","status":"pending","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-77239746","name":"Initech","segment":"startup","industry":"retail","yearFounded":1959,"contacts":[{"type":"primary","name":"James Martin","email":"patricia.martin@mock.co","phone":"+1-887-517-8671"},{"type":"technical","name":"Charles Wilson","email":"thomas.jones@sample.io","phone":"+1-655-531-9928"}]},"subscription":{"plan":"enterprise","startDate":"2024-01-16","renewalDate":"2025-01-16","amount":11403.63,"currency":"USD","services":[{"id":"svc-430","name":"Analytics","quantity":262,"unit":"GB","unitPrice":62.89},{"id":"svc-702","name":"Training","quantity":90,"unit":"subscription","unitPrice":1001.76}]}},{"id":"rec-00355","createdAt":"2020-08-07T15:53:12Z","type":"lead","status":"inactive","priority":"high","metadata":{"source":"mobile","region":"us-west-2","tags":["returning","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-66500217","name":"Massive Dynamic","segment":"mid-market","industry":"retail","yearFounded":2012,"contacts":[{"type":"primary","name":"Jennifer Miller","email":"linda.white@sample.io","phone":"+1-583-794-6381"},{"type":"technical","name":"Michael Martinez","email":"mary.thompson@demo.net","phone":"+1-855-789-7529"}]},"subscription":{"plan":"enterprise","startDate":"2021-10-18","renewalDate":"2023-10-18","amount":39031.1,"currency":"CAD","services":[{"id":"svc-774","name":"Cloud Storage","quantity":591,"unit":"license","unitPrice":405.96},{"id":"svc-648","name":"Training","quantity":50,"unit":"package","unitPrice":1527.73}]}},{"id":"rec-00356","createdAt":"2022-01-02T14:40:32Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["new","startup","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-25221403","name":"Massive Dynamic","segment":"startup","industry":"technology","yearFounded":1993,"contacts":[{"type":"primary","name":"Elizabeth Martin","email":"william.robinson@sample.io","phone":"+1-518-917-3106"},{"type":"technical","name":"James Moore","email":"patricia.garcia@fake.tech","phone":"+1-626-276-7629"}]},"subscription":{"plan":"professional","startDate":"2022-01-22","renewalDate":"2023-01-22","amount":14598.45,"currency":"EUR","services":[{"id":"svc-750","name":"Cloud Storage","quantity":8559,"unit":"GB","unitPrice":471.0},{"id":"svc-145","name":"Training","quantity":30,"unit":"session","unitPrice":180.7}]}},{"id":"rec-00357","createdAt":"2025-07-03T22:26:53Z","type":"partner","status":"active","priority":"medium","metadata":{"source":"web","region":"us-west-2","tags":["returning","enterprise","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-17194845","name":"Massive Dynamic","segment":"startup","industry":"manufacturing","yearFounded":1988,"contacts":[{"type":"primary","name":"Robert Miller","email":"elizabeth.robinson@mock.co","phone":"+1-403-341-5361"},{"type":"technical","name":"William Jones","email":"karen.brown@example.com","phone":"+1-520-643-4106"}]},"subscription":{"plan":"professional","startDate":"2020-06-10","renewalDate":"2022-06-10","amount":38354.09,"currency":"CAD","services":[{"id":"svc-323","name":"Analytics","quantity":720,"unit":"user","unitPrice":385.0},{"id":"svc-967","name":"Training","quantity":43,"unit":"session","unitPrice":735.26}]}},{"id":"rec-00358","createdAt":"2025-12-18T04:43:11Z","type":"customer","status":"suspended","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["returning","basic","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-15615213","name":"Acme Corp","segment":"startup","industry":"finance","yearFounded":1990,"contacts":[{"type":"primary","name":"David Robinson","email":"charles.martin@mock.co","phone":"+1-548-915-4394"},{"type":"technical","name":"Sarah Jones","email":"david.jones@demo.net","phone":"+1-906-406-1429"}]},"subscription":{"plan":"professional","startDate":"2023-08-15","renewalDate":"2026-08-15","amount":43036.75,"currency":"AUD","services":[{"id":"svc-559","name":"Compute Instances","quantity":6797,"unit":"TB","unitPrice":326.62},{"id":"svc-725","name":"Support Plan","quantity":81,"unit":"package","unitPrice":1179.22}]}},{"id":"rec-00359","createdAt":"2024-07-11T03:27:57Z","type":"partner","status":"inactive","priority":"low","metadata":{"source":"web","region":"us-west-2","tags":["returning","basic","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-13339276","name":"Weyland-Yutani","segment":"startup","industry":"retail","yearFounded":1981,"contacts":[{"type":"primary","name":"Robert Moore","email":"thomas.white@sample.io","phone":"+1-569-477-5936"},{"type":"technical","name":"Sarah Martinez","email":"robert.moore@example.com","phone":"+1-280-289-5929"}]},"subscription":{"plan":"custom","startDate":"2024-02-24","renewalDate":"2027-02-24","amount":20285.56,"currency":"CAD","services":[{"id":"svc-386","name":"Database","quantity":6923,"unit":"GB","unitPrice":318.46},{"id":"svc-874","name":"Maintenance","quantity":98,"unit":"subscription","unitPrice":60.44}]}},{"id":"rec-00360","createdAt":"2024-09-21T03:50:36Z","type":"lead","status":"inactive","priority":"low","metadata":{"source":"api","region":"ap-southeast-1","tags":["returning","premium","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-35841863","name":"Stark Industries","segment":"startup","industry":"technology","yearFounded":1961,"contacts":[{"type":"primary","name":"Jennifer Davis","email":"elizabeth.jackson@test.org","phone":"+1-819-983-1350"},{"type":"technical","name":"Jessica Moore","email":"jennifer.johnson@demo.net","phone":"+1-889-195-7006"}]},"subscription":{"plan":"professional","startDate":"2024-11-09","renewalDate":"2026-11-09","amount":14763.9,"currency":"GBP","services":[{"id":"svc-647","name":"Analytics","quantity":9905,"unit":"instance","unitPrice":264.05},{"id":"svc-810","name":"Maintenance","quantity":27,"unit":"session","unitPrice":1339.32}]}},{"id":"rec-00361","createdAt":"2021-12-07T02:09:55Z","type":"partner","status":"pending","priority":"medium","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["returning","startup","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-42776139","name":"Initech","segment":"startup","industry":"retail","yearFounded":1979,"contacts":[{"type":"primary","name":"Elizabeth Wilson","email":"michael.white@sample.io","phone":"+1-634-582-9610"},{"type":"technical","name":"David Martinez","email":"sarah.martinez@fake.tech","phone":"+1-803-654-8484"}]},"subscription":{"plan":"custom","startDate":"2020-11-07","renewalDate":"2022-11-07","amount":40082.42,"currency":"GBP","services":[{"id":"svc-553","name":"Compute Instances","quantity":8036,"unit":"user","unitPrice":61.88},{"id":"svc-804","name":"Support Plan","quantity":98,"unit":"hour","unitPrice":964.69}]}},{"id":"rec-00362","createdAt":"2021-03-26T22:01:26Z","type":"customer","status":"pending","priority":"high","metadata":{"source":"mobile","region":"ap-southeast-1","tags":["returning","enterprise","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-21745602","name":"Soylent Corp","segment":"small-business","industry":"finance","yearFounded":2015,"contacts":[{"type":"primary","name":"Joseph Martin","email":"jennifer.jackson@sample.io","phone":"+1-400-719-5282"},{"type":"technical","name":"Patricia Miller","email":"mary.johnson@sample.io","phone":"+1-490-708-8872"}]},"subscription":{"plan":"custom","startDate":"2020-02-20","renewalDate":"2021-02-20","amount":25038.96,"currency":"AUD","services":[{"id":"svc-192","name":"Security","quantity":8950,"unit":"TB","unitPrice":183.1},{"id":"svc-188","name":"Support Plan","quantity":97,"unit":"unit","unitPrice":1553.14}]}},{"id":"rec-00363","createdAt":"2020-07-01T01:32:33Z","type":"lead","status":"suspended","priority":"high","metadata":{"source":"manual","region":"eu-west-1","tags":["vip","startup","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-13586091","name":"Nakatomi Trading Corp","segment":"mid-market","industry":"finance","yearFounded":1969,"contacts":[{"type":"primary","name":"Sarah Moore","email":"karen.robinson@fake.tech","phone":"+1-642-549-6728"},{"type":"technical","name":"Mary Moore","email":"john.harris@mock.co","phone":"+1-267-604-9718"}]},"subscription":{"plan":"free","startDate":"2020-10-22","renewalDate":"2022-10-22","amount":7236.27,"currency":"AUD","services":[{"id":"svc-801","name":"Database","quantity":3989,"unit":"TB","unitPrice":294.33},{"id":"svc-158","name":"Consulting","quantity":32,"unit":"package","unitPrice":1091.79}]}},{"id":"rec-00364","createdAt":"2024-10-21T23:06:34Z","type":"lead","status":"active","priority":"low","metadata":{"source":"web","region":"eu-west-1","tags":["trial","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-95199749","name":"Acme Corp","segment":"enterprise","industry":"retail","yearFounded":1969,"contacts":[{"type":"primary","name":"James Robinson","email":"sarah.robinson@demo.net","phone":"+1-244-386-9474"},{"type":"technical","name":"Charles Williams","email":"mary.white@sample.io","phone":"+1-754-741-5323"}]},"subscription":{"plan":"basic","startDate":"2020-02-01","renewalDate":"2022-02-01","amount":38947.21,"currency":"USD","services":[{"id":"svc-166","name":"Cloud Storage","quantity":1078,"unit":"GB","unitPrice":49.06},{"id":"svc-562","name":"Implementation","quantity":57,"unit":"session","unitPrice":925.05}]}},{"id":"rec-00365","createdAt":"2020-09-03T21:55:13Z","type":"partner","status":"active","priority":"medium","metadata":{"source":"api","region":"ap-southeast-1","tags":["vip","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-15855585","name":"Weyland-Yutani","segment":"enterprise","industry":"retail","yearFounded":1977,"contacts":[{"type":"primary","name":"Linda White","email":"william.thomas@sample.io","phone":"+1-972-862-2186"},{"type":"technical","name":"Linda Wilson","email":"elizabeth.white@sample.io","phone":"+1-493-839-6544"}]},"subscription":{"plan":"basic","startDate":"2022-10-21","renewalDate":"2024-10-21","amount":33691.85,"currency":"EUR","services":[{"id":"svc-938","name":"Database","quantity":9582,"unit":"GB","unitPrice":15.45},{"id":"svc-883","name":"Maintenance","quantity":49,"unit":"package","unitPrice":661.3}]}},{"id":"rec-00366","createdAt":"2021-02-14T19:26:11Z","type":"partner","status":"suspended","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["returning","enterprise","pending"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-48069080","name":"Virtucon","segment":"small-business","industry":"technology","yearFounded":2022,"contacts":[{"type":"primary","name":"Charles Johnson","email":"john.anderson@fake.tech","phone":"+1-319-431-7911"},{"type":"technical","name":"Jennifer Martinez","email":"william.taylor@example.com","phone":"+1-756-644-3537"}]},"subscription":{"plan":"basic","startDate":"2023-06-02","renewalDate":"2024-06-02","amount":796.83,"currency":"GBP","services":[{"id":"svc-211","name":"Compute Instances","quantity":7561,"unit":"TB","unitPrice":326.27},{"id":"svc-884","name":"Support Plan","quantity":21,"unit":"package","unitPrice":397.35}]}},{"id":"rec-00367","createdAt":"2023-07-22T03:03:04Z","type":"customer","status":"suspended","priority":"medium","metadata":{"source":"mobile","region":"us-west-2","tags":["new","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":true}},"customer":{"customerId":"cust-95224487","name":"Nakatomi Trading Corp","segment":"small-business","industry":"healthcare","yearFounded":1992,"contacts":[{"type":"primary","name":"Patricia Martinez","email":"mary.garcia@sample.io","phone":"+1-365-263-3268"},{"type":"technical","name":"Charles Brown","email":"william.moore@fake.tech","phone":"+1-248-602-5617"}]},"subscription":{"plan":"free","startDate":"2022-09-28","renewalDate":"2023-09-28","amount":41946.54,"currency":"EUR","services":[{"id":"svc-850","name":"Security","quantity":4086,"unit":"user","unitPrice":177.48},{"id":"svc-451","name":"Implementation","quantity":62,"unit":"package","unitPrice":24.8}]}},{"id":"rec-00368","createdAt":"2020-01-12T05:07:50Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["new","startup","unverified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-29384618","name":"Oscorp","segment":"mid-market","industry":"manufacturing","yearFounded":1980,"contacts":[{"type":"primary","name":"Elizabeth Jones","email":"mary.thompson@sample.io","phone":"+1-572-454-6732"},{"type":"technical","name":"Thomas White","email":"jennifer.harris@sample.io","phone":"+1-511-333-8819"}]},"subscription":{"plan":"free","startDate":"2021-06-20","renewalDate":"2024-06-20","amount":19663.73,"currency":"USD","services":[{"id":"svc-508","name":"Analytics","quantity":1789,"unit":"user","unitPrice":34.45},{"id":"svc-145","name":"Maintenance","quantity":83,"unit":"package","unitPrice":1177.81}]}},{"id":"rec-00369","createdAt":"2022-08-27T17:09:22Z","type":"lead","status":"active","priority":"high","metadata":{"source":"mobile","region":"eu-west-1","tags":["new","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-15160463","name":"Acme Corp","segment":"small-business","industry":"manufacturing","yearFounded":2023,"contacts":[{"type":"primary","name":"Patricia Williams","email":"mary.thomas@demo.net","phone":"+1-759-475-1728"},{"type":"technical","name":"Sarah Anderson","email":"john.martin@test.org","phone":"+1-539-883-3095"}]},"subscription":{"plan":"custom","startDate":"2023-02-06","renewalDate":"2025-02-06","amount":26233.17,"currency":"EUR","services":[{"id":"svc-595","name":"Database","quantity":9093,"unit":"TB","unitPrice":478.24},{"id":"svc-337","name":"Consulting","quantity":13,"unit":"unit","unitPrice":1050.98}]}},{"id":"rec-00370","createdAt":"2023-03-21T20:51:52Z","type":"customer","status":"active","priority":"low","metadata":{"source":"api","region":"us-east-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-29696514","name":"Acme Corp","segment":"mid-market","industry":"finance","yearFounded":2010,"contacts":[{"type":"primary","name":"Robert Moore","email":"jennifer.thompson@fake.tech","phone":"+1-956-594-4917"},{"type":"technical","name":"Susan Moore","email":"william.thompson@test.org","phone":"+1-918-948-9737"}]},"subscription":{"plan":"basic","startDate":"2020-02-24","renewalDate":"2022-02-24","amount":40611.5,"currency":"AUD","services":[{"id":"svc-355","name":"Analytics","quantity":1958,"unit":"GB","unitPrice":42.85},{"id":"svc-752","name":"Support Plan","quantity":13,"unit":"session","unitPrice":1010.51}]}},{"id":"rec-00371","createdAt":"2024-01-13T02:18:47Z","type":"partner","status":"suspended","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["returning","startup","verified"],"processingFlags":{"isUrgent":true,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-17083857","name":"Stark Industries","segment":"small-business","industry":"manufacturing","yearFounded":2019,"contacts":[{"type":"primary","name":"James Thompson","email":"sarah.taylor@demo.net","phone":"+1-241-589-8214"},{"type":"technical","name":"Charles Brown","email":"thomas.moore@fake.tech","phone":"+1-208-742-7020"}]},"subscription":{"plan":"free","startDate":"2024-09-02","renewalDate":"2027-09-02","amount":27775.66,"currency":"GBP","services":[{"id":"svc-428","name":"Database","quantity":6879,"unit":"license","unitPrice":220.55},{"id":"svc-989","name":"Implementation","quantity":100,"unit":"package","unitPrice":1920.5}]}},{"id":"rec-00372","createdAt":"2025-12-03T05:24:46Z","type":"customer","status":"suspended","priority":"low","metadata":{"source":"manual","region":"eu-west-1","tags":["new","basic","verified"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-28140058","name":"Aperture Science","segment":"small-business","industry":"technology","yearFounded":1986,"contacts":[{"type":"primary","name":"Mary Johnson","email":"elizabeth.garcia@example.com","phone":"+1-466-599-7690"},{"type":"technical","name":"Elizabeth Miller","email":"jessica.anderson@fake.tech","phone":"+1-587-272-7728"}]},"subscription":{"plan":"professional","startDate":"2020-06-07","renewalDate":"2022-06-07","amount":13311.82,"currency":"EUR","services":[{"id":"svc-965","name":"Security","quantity":3643,"unit":"TB","unitPrice":490.22},{"id":"svc-737","name":"Maintenance","quantity":20,"unit":"unit","unitPrice":954.04}]}},{"id":"rec-00373","createdAt":"2021-12-08T04:03:52Z","type":"prospect","status":"pending","priority":"high","metadata":{"source":"api","region":"us-east-1","tags":["vip","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-59959301","name":"Weyland-Yutani","segment":"startup","industry":"retail","yearFounded":1959,"contacts":[{"type":"primary","name":"Elizabeth Johnson","email":"linda.garcia@demo.net","phone":"+1-422-743-6620"},{"type":"technical","name":"Patricia Martin","email":"thomas.harris@fake.tech","phone":"+1-260-887-9034"}]},"subscription":{"plan":"custom","startDate":"2024-09-17","renewalDate":"2026-09-17","amount":24720.54,"currency":"GBP","services":[{"id":"svc-388","name":"Compute Instances","quantity":6784,"unit":"instance","unitPrice":271.09},{"id":"svc-335","name":"Support Plan","quantity":32,"unit":"unit","unitPrice":1614.06}]}},{"id":"rec-00374","createdAt":"2022-04-13T00:02:38Z","type":"prospect","status":"suspended","priority":"low","metadata":{"source":"mobile","region":"sa-east-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":false,"automationEligible":false}},"customer":{"customerId":"cust-94620955","name":"Wayne Enterprises","segment":"mid-market","industry":"finance","yearFounded":1986,"contacts":[{"type":"primary","name":"William Johnson","email":"mary.jackson@sample.io","phone":"+1-935-322-3381"},{"type":"technical","name":"Robert Martin","email":"david.thomas@example.com","phone":"+1-520-160-3367"}]},"subscription":{"plan":"professional","startDate":"2021-09-20","renewalDate":"2023-09-20","amount":16290.35,"currency":"GBP","services":[{"id":"svc-401","name":"Analytics","quantity":2318,"unit":"user","unitPrice":423.92},{"id":"svc-826","name":"Implementation","quantity":34,"unit":"session","unitPrice":1063.36}]}},{"id":"rec-00375","createdAt":"2025-05-06T00:54:31Z","type":"lead","status":"suspended","priority":"medium","metadata":{"source":"web","region":"ap-southeast-1","tags":["new","premium","legacy"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-12666581","name":"Wayne Enterprises","segment":"mid-market","industry":"healthcare","yearFounded":1968,"contacts":[{"type":"primary","name":"James Brown","email":"john.white@mock.co","phone":"+1-274-529-1047"},{"type":"technical","name":"Sarah Taylor","email":"sarah.jones@mock.co","phone":"+1-987-969-2186"}]},"subscription":{"plan":"enterprise","startDate":"2024-07-11","renewalDate":"2026-07-11","amount":37452.97,"currency":"USD","services":[{"id":"svc-841","name":"Analytics","quantity":7345,"unit":"TB","unitPrice":2.84},{"id":"svc-710","name":"Training","quantity":26,"unit":"package","unitPrice":1645.37}]}},{"id":"rec-00376","createdAt":"2021-07-12T23:34:44Z","type":"prospect","status":"inactive","priority":"medium","metadata":{"source":"manual","region":"ap-southeast-1","tags":["trial","basic","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-32938604","name":"Virtucon","segment":"startup","industry":"healthcare","yearFounded":1981,"contacts":[{"type":"primary","name":"Linda Robinson","email":"jessica.davis@demo.net","phone":"+1-626-538-8332"},{"type":"technical","name":"Linda Harris","email":"nancy.garcia@test.org","phone":"+1-330-243-4968"}]},"subscription":{"plan":"enterprise","startDate":"2022-03-07","renewalDate":"2025-03-07","amount":48386.19,"currency":"EUR","services":[{"id":"svc-849","name":"Cloud Storage","quantity":204,"unit":"license","unitPrice":33.74},{"id":"svc-711","name":"Maintenance","quantity":56,"unit":"session","unitPrice":1461.46}]}},{"id":"rec-00377","createdAt":"2024-06-19T04:26:14Z","type":"prospect","status":"pending","priority":"medium","metadata":{"source":"import","region":"us-east-1","tags":["returning","premium","legacy"],"processingFlags":{"isUrgent":true,"requiresReview":true,"automationEligible":true}},"customer":{"customerId":"cust-60482799","name":"Initech","segment":"mid-market","industry":"manufacturing","yearFounded":2015,"contacts":[{"type":"primary","name":"Patricia Williams","email":"richard.miller@sample.io","phone":"+1-985-678-9631"},{"type":"technical","name":"Linda Thomas","email":"elizabeth.jones@fake.tech","phone":"+1-666-176-1269"}]},"subscription":{"plan":"custom","startDate":"2021-10-16","renewalDate":"2023-10-16","amount":18786.41,"currency":"AUD","services":[{"id":"svc-368","name":"Compute Instances","quantity":4110,"unit":"TB","unitPrice":379.62},{"id":"svc-884","name":"Support Plan","quantity":55,"unit":"unit","unitPrice":1830.19}]}},{"id":"rec-00378","createdAt":"2020-11-05T07:15:16Z","type":"customer","status":"active","priority":"high","metadata":{"source":"api","region":"eu-west-1","tags":["returning","enterprise","unverified"],"processingFlags":{"isUrgent":false,"requiresReview":true,"automationEligible":false}},"customer":{"customerId":"cust-76364560","name":"Umbrella Corp","segment":"startup","industry":"healthcare","yearFounded":1960,"contacts":[{"type":"primary","name":"Linda Harris","email":"robert.jones@demo.net","phone":"+1-854-532-2521"},{"type":"technical","name":"Mary Brown","email":"nancy.robinson@test.org","phone":"+1-447-529-6610"}]},"subscription":{"plan":"professional","startDate":"2022-12-22","renewalDate":"2023-12-22","amount":2562.01,"currency":"USD","services":[{"id":"svc-645","name":"Database","quantity":8293,"unit":"TB","unitPrice":470.55},{"id":"svc-215","name":"Support Plan","quantity":29,"unit":"hour","unitPrice":1732.85}]}}]} \ No newline at end of file diff --git a/services-custom/dynamodb-enhanced/src/test/resources/large_data_input.json b/services-custom/dynamodb-enhanced/src/test/resources/large_data_input.json new file mode 100644 index 000000000000..5bc2458f3050 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/resources/large_data_input.json @@ -0,0 +1 @@ +{"hash_set": "randomUUID_234", "dataSet": "Large JSON Example", "version": "1.0", "timestamp": "2025-09-30T12:05:53.277729", "records": [{"id": "rec-00001", "createdAt": "2025-04-08T04:11:11Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-70076884", "name": "Umbrella Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Sarah Wilson", "email": "jennifer.davis@mock.co", "phone": "+1-912-209-3424"}, {"type": "technical", "name": "James Johnson", "email": "william.moore@demo.net", "phone": "+1-974-301-9214"}]}, "subscription": {"plan": "custom", "startDate": "2023-12-21", "renewalDate": "2026-12-21", "amount": 17636.69, "currency": "EUR", "services": [{"id": "svc-427", "name": "Security", "quantity": 7893, "unit": "user", "unitPrice": 428.2}, {"id": "svc-449", "name": "Support Plan", "quantity": 73, "unit": "unit", "unitPrice": 213.17}]}}, {"id": "rec-00002", "createdAt": "2022-09-11T21:11:38Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-28364622", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "karen.garcia@fake.tech", "phone": "+1-679-619-6165"}, {"type": "technical", "name": "Sarah Moore", "email": "joseph.harris@demo.net", "phone": "+1-611-631-7486"}]}, "subscription": {"plan": "free", "startDate": "2024-06-27", "renewalDate": "2026-06-27", "amount": 44828.85, "currency": "USD", "services": [{"id": "svc-322", "name": "Security", "quantity": 2950, "unit": "instance", "unitPrice": 305.83}, {"id": "svc-400", "name": "Support Plan", "quantity": 44, "unit": "package", "unitPrice": 1746.27}]}}, {"id": "rec-00003", "createdAt": "2020-03-26T13:16:42Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54191800", "name": "Soylent Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "James Wilson", "email": "patricia.robinson@mock.co", "phone": "+1-344-439-2194"}, {"type": "technical", "name": "Richard Williams", "email": "sarah.davis@test.org", "phone": "+1-455-734-9918"}]}, "subscription": {"plan": "free", "startDate": "2022-11-11", "renewalDate": "2024-11-11", "amount": 39652.42, "currency": "AUD", "services": [{"id": "svc-519", "name": "Cloud Storage", "quantity": 8699, "unit": "user", "unitPrice": 132.31}, {"id": "svc-930", "name": "Consulting", "quantity": 82, "unit": "session", "unitPrice": 1487.05}]}}, {"id": "rec-00004", "createdAt": "2024-07-09T16:41:49Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-70271868", "name": "Massive Dynamic", "segment": "startup", "industry": "healthcare", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "James Martin", "email": "jennifer.williams@example.com", "phone": "+1-335-306-3010"}, {"type": "technical", "name": "Thomas Williams", "email": "patricia.johnson@fake.tech", "phone": "+1-534-903-8193"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-11", "renewalDate": "2025-01-11", "amount": 44770.12, "currency": "GBP", "services": [{"id": "svc-706", "name": "Security", "quantity": 5842, "unit": "user", "unitPrice": 197.81}, {"id": "svc-595", "name": "Support Plan", "quantity": 64, "unit": "package", "unitPrice": 46.85}]}}, {"id": "rec-00005", "createdAt": "2023-10-22T17:38:35Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80579834", "name": "Acme Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "thomas.harris@mock.co", "phone": "+1-678-861-3936"}, {"type": "technical", "name": "Michael Brown", "email": "william.miller@example.com", "phone": "+1-322-951-1749"}]}, "subscription": {"plan": "basic", "startDate": "2021-01-20", "renewalDate": "2023-01-20", "amount": 22972.97, "currency": "GBP", "services": [{"id": "svc-405", "name": "Security", "quantity": 1330, "unit": "instance", "unitPrice": 62.91}, {"id": "svc-128", "name": "Maintenance", "quantity": 87, "unit": "subscription", "unitPrice": 923.25}]}}, {"id": "rec-00006", "createdAt": "2024-01-28T00:20:57Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-58023552", "name": "Aperture Science", "segment": "startup", "industry": "education", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "karen.white@fake.tech", "phone": "+1-486-503-2582"}, {"type": "technical", "name": "Charles Martin", "email": "susan.martin@test.org", "phone": "+1-640-619-1111"}]}, "subscription": {"plan": "free", "startDate": "2021-01-12", "renewalDate": "2023-01-12", "amount": 40285.91, "currency": "AUD", "services": [{"id": "svc-889", "name": "Analytics", "quantity": 3566, "unit": "user", "unitPrice": 178.13}, {"id": "svc-228", "name": "Implementation", "quantity": 76, "unit": "hour", "unitPrice": 1757.28}]}}, {"id": "rec-00007", "createdAt": "2022-10-11T07:29:57Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39449154", "name": "Globex", "segment": "mid-market", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Patricia Garcia", "email": "mary.anderson@example.com", "phone": "+1-758-819-6787"}, {"type": "technical", "name": "Jennifer Robinson", "email": "charles.white@fake.tech", "phone": "+1-297-383-6857"}]}, "subscription": {"plan": "custom", "startDate": "2024-06-08", "renewalDate": "2025-06-08", "amount": 39445.96, "currency": "GBP", "services": [{"id": "svc-160", "name": "Compute Instances", "quantity": 7786, "unit": "TB", "unitPrice": 125.49}, {"id": "svc-886", "name": "Maintenance", "quantity": 32, "unit": "subscription", "unitPrice": 1005.59}]}}, {"id": "rec-00008", "createdAt": "2024-02-03T13:22:12Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-32081886", "name": "Soylent Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "David Thompson", "email": "charles.smith@fake.tech", "phone": "+1-523-176-6629"}, {"type": "technical", "name": "John Miller", "email": "john.johnson@test.org", "phone": "+1-574-819-9936"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-08", "renewalDate": "2022-06-08", "amount": 13022.52, "currency": "CAD", "services": [{"id": "svc-117", "name": "Cloud Storage", "quantity": 3916, "unit": "user", "unitPrice": 258.93}, {"id": "svc-919", "name": "Support Plan", "quantity": 63, "unit": "package", "unitPrice": 1675.84}]}}, {"id": "rec-00009", "createdAt": "2022-02-05T04:17:59Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38149848", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Thomas Garcia", "email": "michael.johnson@example.com", "phone": "+1-670-314-5503"}, {"type": "technical", "name": "Joseph Brown", "email": "robert.thompson@example.com", "phone": "+1-915-974-7880"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-04", "renewalDate": "2025-12-04", "amount": 5176.52, "currency": "USD", "services": [{"id": "svc-908", "name": "Security", "quantity": 7079, "unit": "instance", "unitPrice": 276.19}, {"id": "svc-768", "name": "Implementation", "quantity": 18, "unit": "session", "unitPrice": 114.25}]}}, {"id": "rec-00010", "createdAt": "2024-11-21T21:06:41Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15016584", "name": "Acme Corp", "segment": "startup", "industry": "finance", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Karen Anderson", "email": "sarah.white@fake.tech", "phone": "+1-679-916-6553"}, {"type": "technical", "name": "James Wilson", "email": "mary.moore@mock.co", "phone": "+1-782-382-5171"}]}, "subscription": {"plan": "custom", "startDate": "2024-09-25", "renewalDate": "2026-09-25", "amount": 26746.13, "currency": "AUD", "services": [{"id": "svc-821", "name": "Database", "quantity": 2243, "unit": "user", "unitPrice": 364.03}, {"id": "svc-997", "name": "Consulting", "quantity": 59, "unit": "subscription", "unitPrice": 367.09}]}}, {"id": "rec-00011", "createdAt": "2022-04-05T09:37:13Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-81777961", "name": "Weyland-Yutani", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Jessica Martinez", "email": "robert.thompson@demo.net", "phone": "+1-633-564-8491"}, {"type": "technical", "name": "Sarah Thompson", "email": "linda.robinson@example.com", "phone": "+1-393-181-2938"}]}, "subscription": {"plan": "professional", "startDate": "2021-04-06", "renewalDate": "2024-04-06", "amount": 26411.57, "currency": "EUR", "services": [{"id": "svc-915", "name": "Security", "quantity": 5950, "unit": "instance", "unitPrice": 316.69}, {"id": "svc-638", "name": "Implementation", "quantity": 39, "unit": "session", "unitPrice": 1206.52}]}}, {"id": "rec-00012", "createdAt": "2021-11-15T15:04:07Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-36654983", "name": "LexCorp", "segment": "small-business", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Michael Moore", "email": "nancy.robinson@demo.net", "phone": "+1-408-802-2677"}, {"type": "technical", "name": "Michael Davis", "email": "sarah.martinez@sample.io", "phone": "+1-569-462-6357"}]}, "subscription": {"plan": "free", "startDate": "2021-04-16", "renewalDate": "2022-04-16", "amount": 37071.98, "currency": "EUR", "services": [{"id": "svc-788", "name": "Cloud Storage", "quantity": 5092, "unit": "user", "unitPrice": 365.43}, {"id": "svc-310", "name": "Training", "quantity": 11, "unit": "session", "unitPrice": 1323.88}]}}, {"id": "rec-00013", "createdAt": "2021-02-07T12:50:23Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76547029", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Thomas Wilson", "email": "karen.brown@test.org", "phone": "+1-366-582-8787"}, {"type": "technical", "name": "Elizabeth Martinez", "email": "charles.martinez@test.org", "phone": "+1-498-750-4342"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-04", "renewalDate": "2026-07-04", "amount": 21247.08, "currency": "EUR", "services": [{"id": "svc-553", "name": "Database", "quantity": 6057, "unit": "user", "unitPrice": 304.73}, {"id": "svc-736", "name": "Implementation", "quantity": 81, "unit": "session", "unitPrice": 1335.25}]}}, {"id": "rec-00014", "createdAt": "2023-08-25T19:23:19Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-83168502", "name": "Oscorp", "segment": "enterprise", "industry": "education", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "richard.williams@fake.tech", "phone": "+1-838-809-2641"}, {"type": "technical", "name": "Jennifer Brown", "email": "sarah.martin@example.com", "phone": "+1-440-880-7682"}]}, "subscription": {"plan": "free", "startDate": "2020-08-17", "renewalDate": "2021-08-17", "amount": 18984.2, "currency": "AUD", "services": [{"id": "svc-320", "name": "Cloud Storage", "quantity": 3411, "unit": "license", "unitPrice": 56.8}, {"id": "svc-445", "name": "Maintenance", "quantity": 77, "unit": "hour", "unitPrice": 1226.1}]}}, {"id": "rec-00015", "createdAt": "2022-05-13T08:10:39Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-88614658", "name": "Weyland-Yutani", "segment": "startup", "industry": "technology", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Linda Jones", "email": "nancy.taylor@sample.io", "phone": "+1-211-212-4484"}, {"type": "technical", "name": "Sarah Miller", "email": "jennifer.wilson@sample.io", "phone": "+1-438-943-5799"}]}, "subscription": {"plan": "free", "startDate": "2022-03-03", "renewalDate": "2024-03-03", "amount": 1999.11, "currency": "GBP", "services": [{"id": "svc-791", "name": "Database", "quantity": 4275, "unit": "license", "unitPrice": 182.01}, {"id": "svc-180", "name": "Implementation", "quantity": 59, "unit": "session", "unitPrice": 720.75}]}}, {"id": "rec-00016", "createdAt": "2020-12-04T01:34:41Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-61209491", "name": "Virtucon", "segment": "small-business", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "William Jackson", "email": "robert.moore@test.org", "phone": "+1-426-997-1567"}, {"type": "technical", "name": "Susan Thomas", "email": "mary.taylor@sample.io", "phone": "+1-589-534-7255"}]}, "subscription": {"plan": "basic", "startDate": "2022-08-09", "renewalDate": "2023-08-09", "amount": 31504.16, "currency": "GBP", "services": [{"id": "svc-838", "name": "Compute Instances", "quantity": 4493, "unit": "user", "unitPrice": 254.28}, {"id": "svc-435", "name": "Support Plan", "quantity": 11, "unit": "session", "unitPrice": 599.02}]}}, {"id": "rec-00017", "createdAt": "2021-08-06T23:00:30Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-25440159", "name": "Virtucon", "segment": "mid-market", "industry": "retail", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "susan.thomas@demo.net", "phone": "+1-281-979-2151"}, {"type": "technical", "name": "Thomas Garcia", "email": "sarah.davis@sample.io", "phone": "+1-345-883-3631"}]}, "subscription": {"plan": "basic", "startDate": "2022-11-19", "renewalDate": "2023-11-19", "amount": 40990.81, "currency": "AUD", "services": [{"id": "svc-783", "name": "Cloud Storage", "quantity": 2572, "unit": "user", "unitPrice": 283.2}, {"id": "svc-908", "name": "Consulting", "quantity": 93, "unit": "hour", "unitPrice": 1530.95}]}}, {"id": "rec-00018", "createdAt": "2022-05-13T08:46:42Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-14407421", "name": "Oscorp", "segment": "small-business", "industry": "technology", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Robert Smith", "email": "patricia.wilson@test.org", "phone": "+1-695-505-6900"}, {"type": "technical", "name": "David Williams", "email": "patricia.johnson@mock.co", "phone": "+1-698-221-5826"}]}, "subscription": {"plan": "professional", "startDate": "2020-11-21", "renewalDate": "2023-11-21", "amount": 23597.82, "currency": "USD", "services": [{"id": "svc-559", "name": "Security", "quantity": 6496, "unit": "GB", "unitPrice": 311.0}, {"id": "svc-937", "name": "Support Plan", "quantity": 82, "unit": "package", "unitPrice": 501.79}]}}, {"id": "rec-00019", "createdAt": "2024-04-18T04:55:38Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-48542985", "name": "Stark Industries", "segment": "mid-market", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "jessica.wilson@test.org", "phone": "+1-610-924-2089"}, {"type": "technical", "name": "Michael Martin", "email": "david.davis@example.com", "phone": "+1-259-574-8568"}]}, "subscription": {"plan": "free", "startDate": "2022-12-12", "renewalDate": "2023-12-12", "amount": 20338.79, "currency": "CAD", "services": [{"id": "svc-118", "name": "Analytics", "quantity": 3931, "unit": "user", "unitPrice": 485.26}, {"id": "svc-937", "name": "Maintenance", "quantity": 7, "unit": "subscription", "unitPrice": 1457.96}]}}, {"id": "rec-00020", "createdAt": "2020-11-22T03:03:15Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-93756742", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Jennifer Brown", "email": "mary.wilson@test.org", "phone": "+1-709-484-8691"}, {"type": "technical", "name": "Susan Harris", "email": "joseph.thompson@mock.co", "phone": "+1-315-802-4369"}]}, "subscription": {"plan": "free", "startDate": "2024-05-07", "renewalDate": "2025-05-07", "amount": 34001.93, "currency": "GBP", "services": [{"id": "svc-386", "name": "Database", "quantity": 2667, "unit": "TB", "unitPrice": 153.91}, {"id": "svc-767", "name": "Support Plan", "quantity": 10, "unit": "unit", "unitPrice": 1819.59}]}}, {"id": "rec-00021", "createdAt": "2021-08-05T17:57:12Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24992172", "name": "Acme Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Mary Martin", "email": "michael.white@demo.net", "phone": "+1-838-975-3962"}, {"type": "technical", "name": "Karen Anderson", "email": "jessica.moore@example.com", "phone": "+1-617-401-5707"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-24", "renewalDate": "2023-02-24", "amount": 12879.47, "currency": "AUD", "services": [{"id": "svc-897", "name": "Compute Instances", "quantity": 7612, "unit": "GB", "unitPrice": 160.88}, {"id": "svc-516", "name": "Training", "quantity": 47, "unit": "session", "unitPrice": 1883.64}]}}, {"id": "rec-00022", "createdAt": "2020-08-15T04:11:58Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-33256966", "name": "LexCorp", "segment": "startup", "industry": "education", "yearFounded": 1972, "contacts": [{"type": "primary", "name": "David Anderson", "email": "susan.jackson@fake.tech", "phone": "+1-698-954-8687"}, {"type": "technical", "name": "Patricia Williams", "email": "charles.miller@fake.tech", "phone": "+1-992-565-1368"}]}, "subscription": {"plan": "basic", "startDate": "2021-04-07", "renewalDate": "2022-04-07", "amount": 45093.74, "currency": "CAD", "services": [{"id": "svc-402", "name": "Analytics", "quantity": 6813, "unit": "TB", "unitPrice": 32.65}, {"id": "svc-539", "name": "Implementation", "quantity": 18, "unit": "subscription", "unitPrice": 356.41}]}}, {"id": "rec-00023", "createdAt": "2025-03-24T07:52:45Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-50301956", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "john.johnson@example.com", "phone": "+1-804-103-8993"}, {"type": "technical", "name": "Thomas Jackson", "email": "patricia.moore@mock.co", "phone": "+1-444-306-2481"}]}, "subscription": {"plan": "free", "startDate": "2020-02-18", "renewalDate": "2023-02-18", "amount": 36897.13, "currency": "EUR", "services": [{"id": "svc-132", "name": "Compute Instances", "quantity": 8962, "unit": "GB", "unitPrice": 21.22}, {"id": "svc-438", "name": "Implementation", "quantity": 32, "unit": "hour", "unitPrice": 34.21}]}}, {"id": "rec-00024", "createdAt": "2024-04-18T15:08:00Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-79505886", "name": "Umbrella Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Joseph Anderson", "email": "joseph.anderson@mock.co", "phone": "+1-574-862-1592"}, {"type": "technical", "name": "David Harris", "email": "david.anderson@example.com", "phone": "+1-540-856-6930"}]}, "subscription": {"plan": "free", "startDate": "2024-12-07", "renewalDate": "2026-12-07", "amount": 11681.22, "currency": "GBP", "services": [{"id": "svc-291", "name": "Security", "quantity": 7256, "unit": "TB", "unitPrice": 178.56}, {"id": "svc-247", "name": "Training", "quantity": 91, "unit": "package", "unitPrice": 837.38}]}}, {"id": "rec-00025", "createdAt": "2024-07-01T04:15:07Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-67409474", "name": "Massive Dynamic", "segment": "small-business", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Michael Taylor", "email": "jennifer.miller@test.org", "phone": "+1-265-368-3310"}, {"type": "technical", "name": "John Jackson", "email": "linda.robinson@test.org", "phone": "+1-267-245-8659"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-02-22", "renewalDate": "2024-02-22", "amount": 6940.9, "currency": "CAD", "services": [{"id": "svc-901", "name": "Compute Instances", "quantity": 6909, "unit": "license", "unitPrice": 227.51}, {"id": "svc-862", "name": "Training", "quantity": 89, "unit": "session", "unitPrice": 1055.5}]}}, {"id": "rec-00026", "createdAt": "2023-03-15T06:02:53Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-49134371", "name": "Aperture Science", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "William Harris", "email": "john.davis@example.com", "phone": "+1-418-356-7639"}, {"type": "technical", "name": "Mary Jones", "email": "david.thomas@example.com", "phone": "+1-825-560-8093"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-25", "renewalDate": "2026-06-25", "amount": 20731.41, "currency": "AUD", "services": [{"id": "svc-845", "name": "Database", "quantity": 1221, "unit": "TB", "unitPrice": 330.5}, {"id": "svc-855", "name": "Consulting", "quantity": 81, "unit": "unit", "unitPrice": 878.09}]}}, {"id": "rec-00027", "createdAt": "2024-07-15T17:59:26Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-85120899", "name": "Initech", "segment": "startup", "industry": "technology", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "michael.martinez@demo.net", "phone": "+1-480-339-3538"}, {"type": "technical", "name": "Elizabeth Martinez", "email": "jennifer.martinez@sample.io", "phone": "+1-893-774-1670"}]}, "subscription": {"plan": "professional", "startDate": "2024-02-24", "renewalDate": "2027-02-24", "amount": 35934.32, "currency": "AUD", "services": [{"id": "svc-701", "name": "Security", "quantity": 8255, "unit": "user", "unitPrice": 263.27}, {"id": "svc-431", "name": "Consulting", "quantity": 4, "unit": "subscription", "unitPrice": 1017.4}]}}, {"id": "rec-00028", "createdAt": "2025-08-02T22:23:53Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-71519544", "name": "Umbrella Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "nancy.thomas@mock.co", "phone": "+1-366-171-5838"}, {"type": "technical", "name": "Patricia Moore", "email": "mary.williams@mock.co", "phone": "+1-599-903-8527"}]}, "subscription": {"plan": "professional", "startDate": "2021-05-28", "renewalDate": "2022-05-28", "amount": 48776.2, "currency": "AUD", "services": [{"id": "svc-751", "name": "Analytics", "quantity": 9646, "unit": "TB", "unitPrice": 47.77}, {"id": "svc-681", "name": "Training", "quantity": 69, "unit": "session", "unitPrice": 1642.49}]}}, {"id": "rec-00029", "createdAt": "2025-07-28T21:19:01Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-25650992", "name": "Wayne Enterprises", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "Michael Smith", "email": "richard.thomas@sample.io", "phone": "+1-304-848-6999"}, {"type": "technical", "name": "Joseph Williams", "email": "jennifer.johnson@sample.io", "phone": "+1-647-138-9790"}]}, "subscription": {"plan": "free", "startDate": "2022-12-16", "renewalDate": "2025-12-16", "amount": 39856.5, "currency": "CAD", "services": [{"id": "svc-352", "name": "Analytics", "quantity": 3769, "unit": "GB", "unitPrice": 267.73}, {"id": "svc-216", "name": "Support Plan", "quantity": 6, "unit": "unit", "unitPrice": 1790.84}]}}, {"id": "rec-00030", "createdAt": "2022-04-02T03:43:22Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76867830", "name": "LexCorp", "segment": "small-business", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "linda.thomas@demo.net", "phone": "+1-431-348-9282"}, {"type": "technical", "name": "Thomas Thompson", "email": "james.thomas@test.org", "phone": "+1-298-905-8120"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-01", "renewalDate": "2023-02-01", "amount": 34471.27, "currency": "GBP", "services": [{"id": "svc-633", "name": "Analytics", "quantity": 5718, "unit": "user", "unitPrice": 350.94}, {"id": "svc-774", "name": "Implementation", "quantity": 28, "unit": "hour", "unitPrice": 845.63}]}}, {"id": "rec-00031", "createdAt": "2020-02-09T19:33:24Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-13706198", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Robert Taylor", "email": "michael.johnson@fake.tech", "phone": "+1-200-352-1195"}, {"type": "technical", "name": "Thomas White", "email": "joseph.miller@demo.net", "phone": "+1-606-211-4371"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-28", "renewalDate": "2025-01-28", "amount": 19260.16, "currency": "USD", "services": [{"id": "svc-430", "name": "Analytics", "quantity": 6155, "unit": "instance", "unitPrice": 277.14}, {"id": "svc-440", "name": "Support Plan", "quantity": 92, "unit": "session", "unitPrice": 966.84}]}}, {"id": "rec-00032", "createdAt": "2025-02-12T06:53:12Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-28389993", "name": "Virtucon", "segment": "enterprise", "industry": "education", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Sarah Garcia", "email": "michael.thomas@test.org", "phone": "+1-430-168-6663"}, {"type": "technical", "name": "Michael Harris", "email": "sarah.anderson@example.com", "phone": "+1-737-608-9786"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-07-17", "renewalDate": "2023-07-17", "amount": 35764.98, "currency": "USD", "services": [{"id": "svc-823", "name": "Cloud Storage", "quantity": 752, "unit": "user", "unitPrice": 328.82}, {"id": "svc-953", "name": "Support Plan", "quantity": 65, "unit": "hour", "unitPrice": 127.49}]}}, {"id": "rec-00033", "createdAt": "2025-04-12T05:37:10Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14053749", "name": "Aperture Science", "segment": "startup", "industry": "manufacturing", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Jennifer Martin", "email": "james.anderson@mock.co", "phone": "+1-348-958-1736"}, {"type": "technical", "name": "Joseph Martin", "email": "william.anderson@demo.net", "phone": "+1-945-880-1324"}]}, "subscription": {"plan": "free", "startDate": "2022-12-12", "renewalDate": "2023-12-12", "amount": 29898.13, "currency": "USD", "services": [{"id": "svc-632", "name": "Analytics", "quantity": 8266, "unit": "instance", "unitPrice": 188.81}, {"id": "svc-155", "name": "Implementation", "quantity": 50, "unit": "subscription", "unitPrice": 77.69}]}}, {"id": "rec-00034", "createdAt": "2024-02-17T22:02:15Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35198933", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "Nancy Smith", "email": "robert.anderson@example.com", "phone": "+1-292-861-1308"}, {"type": "technical", "name": "Nancy Smith", "email": "patricia.garcia@fake.tech", "phone": "+1-435-934-1413"}]}, "subscription": {"plan": "free", "startDate": "2023-04-13", "renewalDate": "2026-04-13", "amount": 38687.44, "currency": "GBP", "services": [{"id": "svc-784", "name": "Security", "quantity": 8449, "unit": "user", "unitPrice": 276.44}, {"id": "svc-641", "name": "Implementation", "quantity": 56, "unit": "session", "unitPrice": 1157.26}]}}, {"id": "rec-00035", "createdAt": "2023-01-09T19:35:54Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-62939492", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Charles Jackson", "email": "nancy.anderson@sample.io", "phone": "+1-621-556-6659"}, {"type": "technical", "name": "William Jones", "email": "jennifer.williams@mock.co", "phone": "+1-616-399-7450"}]}, "subscription": {"plan": "basic", "startDate": "2023-05-18", "renewalDate": "2024-05-18", "amount": 1323.37, "currency": "EUR", "services": [{"id": "svc-331", "name": "Analytics", "quantity": 3079, "unit": "instance", "unitPrice": 133.52}, {"id": "svc-281", "name": "Consulting", "quantity": 47, "unit": "package", "unitPrice": 1354.49}]}}, {"id": "rec-00036", "createdAt": "2020-09-10T05:58:28Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55882893", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "sarah.jackson@fake.tech", "phone": "+1-923-749-8195"}, {"type": "technical", "name": "Elizabeth Thomas", "email": "karen.miller@fake.tech", "phone": "+1-985-819-2967"}]}, "subscription": {"plan": "free", "startDate": "2022-02-26", "renewalDate": "2025-02-26", "amount": 4809.55, "currency": "GBP", "services": [{"id": "svc-737", "name": "Database", "quantity": 1913, "unit": "instance", "unitPrice": 11.9}, {"id": "svc-928", "name": "Support Plan", "quantity": 19, "unit": "package", "unitPrice": 1433.26}]}}, {"id": "rec-00037", "createdAt": "2023-01-13T03:37:38Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-34386314", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "technology", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Nancy Thomas", "email": "thomas.williams@mock.co", "phone": "+1-588-743-1252"}, {"type": "technical", "name": "Karen Garcia", "email": "susan.thomas@mock.co", "phone": "+1-602-994-1669"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-02-16", "renewalDate": "2023-02-16", "amount": 33488.0, "currency": "AUD", "services": [{"id": "svc-233", "name": "Analytics", "quantity": 5044, "unit": "instance", "unitPrice": 176.15}, {"id": "svc-544", "name": "Training", "quantity": 51, "unit": "package", "unitPrice": 1970.0}]}}, {"id": "rec-00038", "createdAt": "2025-07-19T18:23:27Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-68804565", "name": "Acme Corp", "segment": "startup", "industry": "education", "yearFounded": 1975, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "sarah.garcia@example.com", "phone": "+1-430-379-7711"}, {"type": "technical", "name": "Elizabeth White", "email": "patricia.martinez@sample.io", "phone": "+1-986-796-3228"}]}, "subscription": {"plan": "basic", "startDate": "2024-10-21", "renewalDate": "2027-10-21", "amount": 32821.12, "currency": "EUR", "services": [{"id": "svc-341", "name": "Security", "quantity": 102, "unit": "instance", "unitPrice": 468.12}, {"id": "svc-813", "name": "Implementation", "quantity": 28, "unit": "package", "unitPrice": 331.85}]}}, {"id": "rec-00039", "createdAt": "2022-03-04T21:55:03Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-57103067", "name": "Globex", "segment": "small-business", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "William Robinson", "email": "sarah.miller@sample.io", "phone": "+1-734-314-9328"}, {"type": "technical", "name": "Joseph Jackson", "email": "david.davis@fake.tech", "phone": "+1-720-337-7122"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-21", "renewalDate": "2025-03-21", "amount": 30910.02, "currency": "AUD", "services": [{"id": "svc-105", "name": "Cloud Storage", "quantity": 8041, "unit": "license", "unitPrice": 445.63}, {"id": "svc-402", "name": "Implementation", "quantity": 100, "unit": "session", "unitPrice": 803.4}]}}, {"id": "rec-00040", "createdAt": "2024-04-15T23:57:32Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48301178", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "Richard Robinson", "email": "robert.martinez@mock.co", "phone": "+1-731-740-5622"}, {"type": "technical", "name": "John Johnson", "email": "robert.miller@mock.co", "phone": "+1-230-543-1510"}]}, "subscription": {"plan": "professional", "startDate": "2024-12-03", "renewalDate": "2025-12-03", "amount": 14640.95, "currency": "GBP", "services": [{"id": "svc-161", "name": "Compute Instances", "quantity": 6179, "unit": "user", "unitPrice": 361.89}, {"id": "svc-292", "name": "Training", "quantity": 92, "unit": "package", "unitPrice": 1687.8}]}}, {"id": "rec-00041", "createdAt": "2023-05-10T03:17:25Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-10177514", "name": "Stark Industries", "segment": "startup", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "james.williams@test.org", "phone": "+1-860-385-7637"}, {"type": "technical", "name": "Charles Anderson", "email": "nancy.anderson@demo.net", "phone": "+1-292-215-7585"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-06-18", "renewalDate": "2022-06-18", "amount": 23263.0, "currency": "GBP", "services": [{"id": "svc-978", "name": "Analytics", "quantity": 2774, "unit": "user", "unitPrice": 330.95}, {"id": "svc-834", "name": "Maintenance", "quantity": 90, "unit": "package", "unitPrice": 1567.97}]}}, {"id": "rec-00042", "createdAt": "2021-01-09T12:52:03Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-90686181", "name": "Cyberdyne Systems", "segment": "startup", "industry": "manufacturing", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Thomas Williams", "email": "patricia.williams@mock.co", "phone": "+1-777-544-8143"}, {"type": "technical", "name": "Nancy Martin", "email": "james.jones@sample.io", "phone": "+1-590-814-7003"}]}, "subscription": {"plan": "custom", "startDate": "2024-04-04", "renewalDate": "2026-04-04", "amount": 3615.35, "currency": "USD", "services": [{"id": "svc-398", "name": "Analytics", "quantity": 3218, "unit": "instance", "unitPrice": 97.46}, {"id": "svc-900", "name": "Training", "quantity": 16, "unit": "hour", "unitPrice": 912.73}]}}, {"id": "rec-00043", "createdAt": "2025-03-22T01:11:31Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-53738002", "name": "Initech", "segment": "enterprise", "industry": "finance", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "William Moore", "email": "elizabeth.garcia@demo.net", "phone": "+1-715-775-8757"}, {"type": "technical", "name": "William Williams", "email": "john.smith@fake.tech", "phone": "+1-239-405-2198"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-04", "renewalDate": "2026-04-04", "amount": 14907.82, "currency": "GBP", "services": [{"id": "svc-681", "name": "Compute Instances", "quantity": 4579, "unit": "license", "unitPrice": 194.49}, {"id": "svc-409", "name": "Training", "quantity": 99, "unit": "hour", "unitPrice": 1096.28}]}}, {"id": "rec-00044", "createdAt": "2025-12-12T16:15:23Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-39410024", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "retail", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "David Brown", "email": "elizabeth.wilson@fake.tech", "phone": "+1-923-559-2375"}, {"type": "technical", "name": "John Thomas", "email": "mary.moore@fake.tech", "phone": "+1-888-161-2680"}]}, "subscription": {"plan": "free", "startDate": "2021-05-06", "renewalDate": "2022-05-06", "amount": 38131.9, "currency": "USD", "services": [{"id": "svc-365", "name": "Analytics", "quantity": 2856, "unit": "user", "unitPrice": 174.04}, {"id": "svc-868", "name": "Implementation", "quantity": 92, "unit": "session", "unitPrice": 1752.46}]}}, {"id": "rec-00045", "createdAt": "2021-06-04T06:11:25Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-68824251", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "technology", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "David Williams", "email": "robert.taylor@sample.io", "phone": "+1-768-399-4964"}, {"type": "technical", "name": "Elizabeth Harris", "email": "william.jackson@test.org", "phone": "+1-743-402-2402"}]}, "subscription": {"plan": "custom", "startDate": "2021-01-04", "renewalDate": "2024-01-04", "amount": 30450.81, "currency": "AUD", "services": [{"id": "svc-431", "name": "Analytics", "quantity": 6523, "unit": "TB", "unitPrice": 24.57}, {"id": "svc-709", "name": "Support Plan", "quantity": 2, "unit": "session", "unitPrice": 801.13}]}}, {"id": "rec-00046", "createdAt": "2022-11-25T00:32:34Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-26142993", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "James Miller", "email": "nancy.thompson@sample.io", "phone": "+1-492-339-6612"}, {"type": "technical", "name": "Joseph Miller", "email": "linda.white@test.org", "phone": "+1-263-775-3594"}]}, "subscription": {"plan": "professional", "startDate": "2021-06-08", "renewalDate": "2023-06-08", "amount": 9189.67, "currency": "GBP", "services": [{"id": "svc-277", "name": "Security", "quantity": 4352, "unit": "user", "unitPrice": 137.67}, {"id": "svc-377", "name": "Training", "quantity": 22, "unit": "subscription", "unitPrice": 58.03}]}}, {"id": "rec-00047", "createdAt": "2025-04-22T04:21:59Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-42850140", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "finance", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "James Garcia", "email": "joseph.brown@mock.co", "phone": "+1-977-229-6403"}, {"type": "technical", "name": "Linda Williams", "email": "thomas.anderson@example.com", "phone": "+1-918-778-5957"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-11", "renewalDate": "2026-07-11", "amount": 6815.16, "currency": "GBP", "services": [{"id": "svc-377", "name": "Security", "quantity": 2456, "unit": "GB", "unitPrice": 139.64}, {"id": "svc-166", "name": "Consulting", "quantity": 89, "unit": "package", "unitPrice": 1852.73}]}}, {"id": "rec-00048", "createdAt": "2022-05-10T20:46:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65955720", "name": "Massive Dynamic", "segment": "startup", "industry": "education", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "patricia.white@demo.net", "phone": "+1-383-930-4589"}, {"type": "technical", "name": "Susan Wilson", "email": "charles.jones@example.com", "phone": "+1-752-822-5590"}]}, "subscription": {"plan": "basic", "startDate": "2023-06-02", "renewalDate": "2026-06-02", "amount": 29757.31, "currency": "GBP", "services": [{"id": "svc-826", "name": "Compute Instances", "quantity": 2807, "unit": "user", "unitPrice": 186.61}, {"id": "svc-991", "name": "Training", "quantity": 59, "unit": "unit", "unitPrice": 686.45}]}}, {"id": "rec-00049", "createdAt": "2022-01-25T02:08:23Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-96519192", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "William Robinson", "email": "mary.white@test.org", "phone": "+1-975-726-3811"}, {"type": "technical", "name": "Robert Williams", "email": "sarah.moore@example.com", "phone": "+1-665-728-4665"}]}, "subscription": {"plan": "free", "startDate": "2022-04-03", "renewalDate": "2025-04-03", "amount": 20932.02, "currency": "CAD", "services": [{"id": "svc-201", "name": "Analytics", "quantity": 613, "unit": "GB", "unitPrice": 354.53}, {"id": "svc-455", "name": "Implementation", "quantity": 100, "unit": "subscription", "unitPrice": 472.27}]}}, {"id": "rec-00050", "createdAt": "2025-04-02T00:46:38Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-37512572", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Jennifer White", "email": "john.robinson@test.org", "phone": "+1-354-412-3267"}, {"type": "technical", "name": "Thomas Wilson", "email": "michael.miller@test.org", "phone": "+1-619-415-2929"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-06", "renewalDate": "2023-09-06", "amount": 5333.07, "currency": "AUD", "services": [{"id": "svc-610", "name": "Cloud Storage", "quantity": 9142, "unit": "instance", "unitPrice": 26.18}, {"id": "svc-309", "name": "Maintenance", "quantity": 94, "unit": "subscription", "unitPrice": 1073.22}]}}, {"id": "rec-00051", "createdAt": "2022-06-16T19:33:53Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-11328097", "name": "Stark Industries", "segment": "enterprise", "industry": "education", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Karen Thomas", "email": "linda.miller@fake.tech", "phone": "+1-785-734-1065"}, {"type": "technical", "name": "Joseph Miller", "email": "michael.davis@fake.tech", "phone": "+1-748-971-5612"}]}, "subscription": {"plan": "basic", "startDate": "2020-10-08", "renewalDate": "2022-10-08", "amount": 32587.92, "currency": "USD", "services": [{"id": "svc-725", "name": "Compute Instances", "quantity": 7693, "unit": "TB", "unitPrice": 138.49}, {"id": "svc-187", "name": "Implementation", "quantity": 72, "unit": "hour", "unitPrice": 109.55}]}}, {"id": "rec-00052", "createdAt": "2022-04-18T12:56:38Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-94959579", "name": "Initech", "segment": "startup", "industry": "manufacturing", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "David White", "email": "mary.thomas@sample.io", "phone": "+1-868-825-8490"}, {"type": "technical", "name": "Jennifer Moore", "email": "robert.wilson@example.com", "phone": "+1-477-103-3756"}]}, "subscription": {"plan": "custom", "startDate": "2020-09-03", "renewalDate": "2021-09-03", "amount": 330.9, "currency": "GBP", "services": [{"id": "svc-854", "name": "Security", "quantity": 7225, "unit": "GB", "unitPrice": 442.31}, {"id": "svc-593", "name": "Maintenance", "quantity": 75, "unit": "session", "unitPrice": 1961.69}]}}, {"id": "rec-00053", "createdAt": "2021-12-10T17:12:43Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-49473846", "name": "LexCorp", "segment": "enterprise", "industry": "technology", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "David Jones", "email": "thomas.williams@demo.net", "phone": "+1-392-515-9326"}, {"type": "technical", "name": "James White", "email": "sarah.white@example.com", "phone": "+1-340-805-1914"}]}, "subscription": {"plan": "free", "startDate": "2023-03-08", "renewalDate": "2024-03-08", "amount": 33763.99, "currency": "USD", "services": [{"id": "svc-232", "name": "Security", "quantity": 758, "unit": "GB", "unitPrice": 466.47}, {"id": "svc-801", "name": "Consulting", "quantity": 69, "unit": "package", "unitPrice": 1639.73}]}}, {"id": "rec-00054", "createdAt": "2021-10-07T04:55:54Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-17125401", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Mary Johnson", "email": "jennifer.anderson@test.org", "phone": "+1-332-785-5936"}, {"type": "technical", "name": "Joseph Jackson", "email": "karen.martin@example.com", "phone": "+1-620-305-5171"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-13", "renewalDate": "2023-03-13", "amount": 21434.47, "currency": "AUD", "services": [{"id": "svc-173", "name": "Compute Instances", "quantity": 1966, "unit": "GB", "unitPrice": 429.72}, {"id": "svc-327", "name": "Implementation", "quantity": 33, "unit": "session", "unitPrice": 204.75}]}}, {"id": "rec-00055", "createdAt": "2021-05-16T11:04:19Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-51477241", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Joseph Wilson", "email": "thomas.miller@test.org", "phone": "+1-970-817-7280"}, {"type": "technical", "name": "Thomas Harris", "email": "michael.wilson@test.org", "phone": "+1-719-610-6903"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-26", "renewalDate": "2022-12-26", "amount": 42924.11, "currency": "GBP", "services": [{"id": "svc-641", "name": "Cloud Storage", "quantity": 5799, "unit": "TB", "unitPrice": 378.03}, {"id": "svc-161", "name": "Support Plan", "quantity": 34, "unit": "session", "unitPrice": 1504.87}]}}, {"id": "rec-00056", "createdAt": "2023-08-27T08:47:21Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-41803607", "name": "Acme Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Michael Robinson", "email": "mary.brown@demo.net", "phone": "+1-396-610-8143"}, {"type": "technical", "name": "Linda Jackson", "email": "sarah.wilson@sample.io", "phone": "+1-957-214-5939"}]}, "subscription": {"plan": "basic", "startDate": "2021-06-05", "renewalDate": "2022-06-05", "amount": 18195.64, "currency": "EUR", "services": [{"id": "svc-104", "name": "Database", "quantity": 2862, "unit": "license", "unitPrice": 145.94}, {"id": "svc-845", "name": "Training", "quantity": 6, "unit": "package", "unitPrice": 1188.72}]}}, {"id": "rec-00057", "createdAt": "2025-05-15T00:44:00Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-44331048", "name": "Aperture Science", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "Susan Anderson", "email": "john.thomas@sample.io", "phone": "+1-485-737-2395"}, {"type": "technical", "name": "Jennifer Williams", "email": "elizabeth.garcia@sample.io", "phone": "+1-686-612-8939"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-03-09", "renewalDate": "2027-03-09", "amount": 35849.93, "currency": "GBP", "services": [{"id": "svc-975", "name": "Database", "quantity": 2688, "unit": "license", "unitPrice": 168.35}, {"id": "svc-743", "name": "Consulting", "quantity": 70, "unit": "session", "unitPrice": 1640.39}]}}, {"id": "rec-00058", "createdAt": "2024-08-10T04:48:50Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-86157252", "name": "Initech", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2014, "contacts": [{"type": "primary", "name": "Nancy Taylor", "email": "william.smith@demo.net", "phone": "+1-553-495-2249"}, {"type": "technical", "name": "John Thompson", "email": "jessica.martin@sample.io", "phone": "+1-341-252-3034"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-25", "renewalDate": "2024-01-25", "amount": 38150.73, "currency": "USD", "services": [{"id": "svc-150", "name": "Database", "quantity": 5427, "unit": "TB", "unitPrice": 444.97}, {"id": "svc-450", "name": "Support Plan", "quantity": 20, "unit": "session", "unitPrice": 1041.36}]}}, {"id": "rec-00059", "createdAt": "2020-04-24T21:40:12Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-85440772", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Thomas Moore", "email": "robert.moore@mock.co", "phone": "+1-437-123-5499"}, {"type": "technical", "name": "Karen Thomas", "email": "david.miller@test.org", "phone": "+1-766-439-2046"}]}, "subscription": {"plan": "professional", "startDate": "2022-04-13", "renewalDate": "2024-04-13", "amount": 43074.06, "currency": "GBP", "services": [{"id": "svc-384", "name": "Security", "quantity": 2319, "unit": "GB", "unitPrice": 18.96}, {"id": "svc-542", "name": "Implementation", "quantity": 24, "unit": "session", "unitPrice": 1439.6}]}}, {"id": "rec-00060", "createdAt": "2025-01-27T01:53:50Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-36171168", "name": "Initech", "segment": "mid-market", "industry": "education", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "william.moore@mock.co", "phone": "+1-783-979-9168"}, {"type": "technical", "name": "Karen Smith", "email": "robert.miller@demo.net", "phone": "+1-523-812-2883"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-10", "renewalDate": "2025-06-10", "amount": 38633.17, "currency": "AUD", "services": [{"id": "svc-879", "name": "Database", "quantity": 6974, "unit": "license", "unitPrice": 405.15}, {"id": "svc-600", "name": "Maintenance", "quantity": 6, "unit": "session", "unitPrice": 1776.01}]}}, {"id": "rec-00061", "createdAt": "2023-06-05T19:27:25Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-76157537", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "retail", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "jessica.white@fake.tech", "phone": "+1-691-849-4432"}, {"type": "technical", "name": "Sarah Miller", "email": "jennifer.wilson@sample.io", "phone": "+1-776-394-7370"}]}, "subscription": {"plan": "basic", "startDate": "2021-09-05", "renewalDate": "2024-09-05", "amount": 18416.23, "currency": "AUD", "services": [{"id": "svc-577", "name": "Security", "quantity": 3647, "unit": "instance", "unitPrice": 121.01}, {"id": "svc-183", "name": "Support Plan", "quantity": 24, "unit": "package", "unitPrice": 1856.85}]}}, {"id": "rec-00062", "createdAt": "2024-08-06T18:38:31Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-75857128", "name": "Globex", "segment": "startup", "industry": "finance", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Jennifer Jackson", "email": "jessica.white@mock.co", "phone": "+1-810-993-3636"}, {"type": "technical", "name": "Jessica Robinson", "email": "james.thompson@sample.io", "phone": "+1-682-494-2135"}]}, "subscription": {"plan": "free", "startDate": "2024-08-19", "renewalDate": "2025-08-19", "amount": 30413.78, "currency": "AUD", "services": [{"id": "svc-731", "name": "Cloud Storage", "quantity": 2284, "unit": "instance", "unitPrice": 118.17}, {"id": "svc-176", "name": "Implementation", "quantity": 6, "unit": "package", "unitPrice": 267.19}]}}, {"id": "rec-00063", "createdAt": "2021-02-12T03:58:05Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-42156235", "name": "Stark Industries", "segment": "small-business", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Linda White", "email": "john.jackson@demo.net", "phone": "+1-520-631-9453"}, {"type": "technical", "name": "Elizabeth Davis", "email": "william.johnson@mock.co", "phone": "+1-386-593-2785"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-08-27", "renewalDate": "2023-08-27", "amount": 16646.91, "currency": "CAD", "services": [{"id": "svc-276", "name": "Security", "quantity": 4618, "unit": "instance", "unitPrice": 375.31}, {"id": "svc-502", "name": "Support Plan", "quantity": 77, "unit": "session", "unitPrice": 1442.82}]}}, {"id": "rec-00064", "createdAt": "2022-05-12T17:21:04Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-74856989", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Jessica White", "email": "richard.martin@demo.net", "phone": "+1-671-876-9306"}, {"type": "technical", "name": "John Thompson", "email": "thomas.thompson@test.org", "phone": "+1-454-375-2331"}]}, "subscription": {"plan": "basic", "startDate": "2023-01-12", "renewalDate": "2026-01-12", "amount": 41710.57, "currency": "USD", "services": [{"id": "svc-611", "name": "Compute Instances", "quantity": 3549, "unit": "user", "unitPrice": 274.48}, {"id": "svc-264", "name": "Implementation", "quantity": 47, "unit": "session", "unitPrice": 1912.29}]}}, {"id": "rec-00065", "createdAt": "2023-11-09T16:04:33Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-40380607", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "john.davis@test.org", "phone": "+1-569-164-9435"}, {"type": "technical", "name": "Karen White", "email": "patricia.anderson@mock.co", "phone": "+1-220-694-9134"}]}, "subscription": {"plan": "custom", "startDate": "2020-03-20", "renewalDate": "2022-03-20", "amount": 20780.63, "currency": "GBP", "services": [{"id": "svc-505", "name": "Database", "quantity": 3938, "unit": "instance", "unitPrice": 167.11}, {"id": "svc-633", "name": "Implementation", "quantity": 77, "unit": "session", "unitPrice": 790.23}]}}, {"id": "rec-00066", "createdAt": "2022-10-18T12:26:22Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-48819566", "name": "Globex", "segment": "small-business", "industry": "education", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Elizabeth White", "email": "nancy.jones@demo.net", "phone": "+1-439-135-1987"}, {"type": "technical", "name": "Mary Harris", "email": "nancy.garcia@sample.io", "phone": "+1-735-714-3194"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-09", "renewalDate": "2025-06-09", "amount": 49135.24, "currency": "USD", "services": [{"id": "svc-541", "name": "Analytics", "quantity": 3890, "unit": "TB", "unitPrice": 227.08}, {"id": "svc-152", "name": "Implementation", "quantity": 70, "unit": "hour", "unitPrice": 1333.82}]}}, {"id": "rec-00067", "createdAt": "2021-11-25T20:39:21Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-80507989", "name": "Soylent Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "charles.williams@sample.io", "phone": "+1-597-846-1305"}, {"type": "technical", "name": "Richard Garcia", "email": "jessica.taylor@example.com", "phone": "+1-427-794-1636"}]}, "subscription": {"plan": "custom", "startDate": "2020-07-05", "renewalDate": "2022-07-05", "amount": 19315.82, "currency": "CAD", "services": [{"id": "svc-311", "name": "Analytics", "quantity": 1915, "unit": "TB", "unitPrice": 395.81}, {"id": "svc-853", "name": "Maintenance", "quantity": 99, "unit": "session", "unitPrice": 1178.26}]}}, {"id": "rec-00068", "createdAt": "2022-11-14T05:20:58Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-36551999", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "john.brown@fake.tech", "phone": "+1-629-431-6715"}, {"type": "technical", "name": "Patricia Smith", "email": "charles.moore@demo.net", "phone": "+1-222-281-3002"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-11", "renewalDate": "2022-06-11", "amount": 41855.49, "currency": "USD", "services": [{"id": "svc-797", "name": "Database", "quantity": 6009, "unit": "user", "unitPrice": 203.94}, {"id": "svc-979", "name": "Maintenance", "quantity": 11, "unit": "session", "unitPrice": 1552.82}]}}, {"id": "rec-00069", "createdAt": "2024-01-26T01:19:29Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-41661537", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "James Taylor", "email": "patricia.brown@demo.net", "phone": "+1-756-247-2336"}, {"type": "technical", "name": "Robert Jackson", "email": "susan.harris@sample.io", "phone": "+1-408-525-6340"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-02", "renewalDate": "2024-03-02", "amount": 8526.83, "currency": "CAD", "services": [{"id": "svc-667", "name": "Analytics", "quantity": 7167, "unit": "GB", "unitPrice": 161.4}, {"id": "svc-462", "name": "Training", "quantity": 4, "unit": "subscription", "unitPrice": 1667.4}]}}, {"id": "rec-00070", "createdAt": "2024-08-15T07:46:37Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96111441", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "susan.wilson@demo.net", "phone": "+1-905-956-7413"}, {"type": "technical", "name": "James Thompson", "email": "patricia.smith@example.com", "phone": "+1-274-556-7198"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-25", "renewalDate": "2023-12-25", "amount": 39558.38, "currency": "AUD", "services": [{"id": "svc-747", "name": "Compute Instances", "quantity": 5315, "unit": "TB", "unitPrice": 220.36}, {"id": "svc-444", "name": "Implementation", "quantity": 68, "unit": "session", "unitPrice": 1538.1}]}}, {"id": "rec-00071", "createdAt": "2020-10-11T04:30:49Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-81567721", "name": "Soylent Corp", "segment": "mid-market", "industry": "education", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Joseph Johnson", "email": "jessica.williams@sample.io", "phone": "+1-543-821-2026"}, {"type": "technical", "name": "James Jackson", "email": "robert.smith@fake.tech", "phone": "+1-517-941-2608"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-11", "renewalDate": "2025-09-11", "amount": 28489.09, "currency": "USD", "services": [{"id": "svc-432", "name": "Database", "quantity": 8861, "unit": "user", "unitPrice": 217.05}, {"id": "svc-418", "name": "Support Plan", "quantity": 62, "unit": "session", "unitPrice": 1938.73}]}}, {"id": "rec-00072", "createdAt": "2024-12-03T12:46:07Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-70310190", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "John Martin", "email": "karen.wilson@fake.tech", "phone": "+1-334-398-2394"}, {"type": "technical", "name": "William Anderson", "email": "richard.williams@sample.io", "phone": "+1-887-409-4550"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-09", "renewalDate": "2026-01-09", "amount": 205.25, "currency": "GBP", "services": [{"id": "svc-139", "name": "Analytics", "quantity": 5282, "unit": "TB", "unitPrice": 234.49}, {"id": "svc-576", "name": "Training", "quantity": 81, "unit": "session", "unitPrice": 1696.41}]}}, {"id": "rec-00073", "createdAt": "2025-09-01T20:37:24Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29009073", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Michael Moore", "email": "john.jones@test.org", "phone": "+1-222-818-9249"}, {"type": "technical", "name": "Joseph Wilson", "email": "john.davis@fake.tech", "phone": "+1-769-629-6601"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-26", "renewalDate": "2024-01-26", "amount": 6288.1, "currency": "GBP", "services": [{"id": "svc-691", "name": "Cloud Storage", "quantity": 6315, "unit": "GB", "unitPrice": 493.2}, {"id": "svc-466", "name": "Implementation", "quantity": 57, "unit": "unit", "unitPrice": 303.41}]}}, {"id": "rec-00074", "createdAt": "2023-05-15T15:23:35Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99297191", "name": "Acme Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Richard Wilson", "email": "michael.williams@test.org", "phone": "+1-945-903-4364"}, {"type": "technical", "name": "Mary Moore", "email": "jennifer.robinson@sample.io", "phone": "+1-248-925-1412"}]}, "subscription": {"plan": "basic", "startDate": "2023-02-16", "renewalDate": "2025-02-16", "amount": 47681.91, "currency": "AUD", "services": [{"id": "svc-200", "name": "Database", "quantity": 1201, "unit": "license", "unitPrice": 203.96}, {"id": "svc-272", "name": "Implementation", "quantity": 52, "unit": "hour", "unitPrice": 1710.02}]}}, {"id": "rec-00075", "createdAt": "2022-02-21T12:40:20Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95321140", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Sarah Thompson", "email": "michael.jackson@example.com", "phone": "+1-864-250-8690"}, {"type": "technical", "name": "Richard Robinson", "email": "michael.brown@demo.net", "phone": "+1-894-930-3184"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-28", "renewalDate": "2025-12-28", "amount": 3932.41, "currency": "GBP", "services": [{"id": "svc-814", "name": "Analytics", "quantity": 678, "unit": "GB", "unitPrice": 189.74}, {"id": "svc-878", "name": "Implementation", "quantity": 32, "unit": "session", "unitPrice": 1426.5}]}}, {"id": "rec-00076", "createdAt": "2021-02-23T10:59:47Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38245529", "name": "Oscorp", "segment": "mid-market", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Karen Jackson", "email": "james.davis@sample.io", "phone": "+1-328-465-7505"}, {"type": "technical", "name": "Thomas Smith", "email": "william.white@example.com", "phone": "+1-485-973-5903"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-09", "renewalDate": "2025-03-09", "amount": 35353.9, "currency": "AUD", "services": [{"id": "svc-352", "name": "Analytics", "quantity": 1343, "unit": "GB", "unitPrice": 366.95}, {"id": "svc-445", "name": "Consulting", "quantity": 11, "unit": "unit", "unitPrice": 486.39}]}}, {"id": "rec-00077", "createdAt": "2024-11-05T02:56:22Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-73950537", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Karen Jones", "email": "thomas.anderson@mock.co", "phone": "+1-282-525-2723"}, {"type": "technical", "name": "Michael Johnson", "email": "mary.robinson@sample.io", "phone": "+1-275-153-2269"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-28", "renewalDate": "2027-05-28", "amount": 49516.48, "currency": "GBP", "services": [{"id": "svc-605", "name": "Compute Instances", "quantity": 8121, "unit": "license", "unitPrice": 72.38}, {"id": "svc-556", "name": "Consulting", "quantity": 24, "unit": "subscription", "unitPrice": 1749.84}]}}, {"id": "rec-00078", "createdAt": "2025-12-17T03:49:58Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52490010", "name": "Oscorp", "segment": "startup", "industry": "retail", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Mary Miller", "email": "nancy.brown@fake.tech", "phone": "+1-557-999-3005"}, {"type": "technical", "name": "Mary Anderson", "email": "james.thomas@fake.tech", "phone": "+1-232-454-7797"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-28", "renewalDate": "2025-03-28", "amount": 45493.48, "currency": "AUD", "services": [{"id": "svc-673", "name": "Security", "quantity": 23, "unit": "instance", "unitPrice": 285.79}, {"id": "svc-902", "name": "Consulting", "quantity": 80, "unit": "hour", "unitPrice": 385.53}]}}, {"id": "rec-00079", "createdAt": "2021-05-26T01:37:11Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59619366", "name": "Aperture Science", "segment": "enterprise", "industry": "technology", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "linda.thomas@demo.net", "phone": "+1-920-857-8777"}, {"type": "technical", "name": "William Williams", "email": "john.garcia@fake.tech", "phone": "+1-682-138-1471"}]}, "subscription": {"plan": "custom", "startDate": "2020-06-08", "renewalDate": "2022-06-08", "amount": 6149.92, "currency": "GBP", "services": [{"id": "svc-226", "name": "Cloud Storage", "quantity": 5949, "unit": "license", "unitPrice": 392.87}, {"id": "svc-203", "name": "Implementation", "quantity": 85, "unit": "subscription", "unitPrice": 689.44}]}}, {"id": "rec-00080", "createdAt": "2020-06-20T22:14:28Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96243345", "name": "Aperture Science", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Michael Miller", "email": "linda.thompson@test.org", "phone": "+1-303-952-6395"}, {"type": "technical", "name": "Thomas Smith", "email": "susan.moore@demo.net", "phone": "+1-703-418-4615"}]}, "subscription": {"plan": "professional", "startDate": "2023-10-01", "renewalDate": "2025-10-01", "amount": 12466.69, "currency": "USD", "services": [{"id": "svc-292", "name": "Compute Instances", "quantity": 6172, "unit": "TB", "unitPrice": 7.79}, {"id": "svc-754", "name": "Training", "quantity": 48, "unit": "hour", "unitPrice": 955.68}]}}, {"id": "rec-00081", "createdAt": "2024-09-26T05:51:48Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-44492255", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "James Thompson", "email": "nancy.johnson@test.org", "phone": "+1-218-941-4409"}, {"type": "technical", "name": "Nancy Martinez", "email": "joseph.garcia@example.com", "phone": "+1-350-846-6205"}]}, "subscription": {"plan": "basic", "startDate": "2023-04-17", "renewalDate": "2025-04-17", "amount": 4738.64, "currency": "USD", "services": [{"id": "svc-284", "name": "Analytics", "quantity": 3864, "unit": "instance", "unitPrice": 121.95}, {"id": "svc-989", "name": "Support Plan", "quantity": 83, "unit": "hour", "unitPrice": 621.3}]}}, {"id": "rec-00082", "createdAt": "2025-05-17T04:31:56Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-61230385", "name": "Stark Industries", "segment": "startup", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Sarah Garcia", "email": "patricia.thomas@demo.net", "phone": "+1-672-313-8161"}, {"type": "technical", "name": "Patricia Brown", "email": "james.robinson@sample.io", "phone": "+1-548-709-2938"}]}, "subscription": {"plan": "basic", "startDate": "2024-08-18", "renewalDate": "2026-08-18", "amount": 312.68, "currency": "AUD", "services": [{"id": "svc-118", "name": "Compute Instances", "quantity": 785, "unit": "instance", "unitPrice": 313.36}, {"id": "svc-636", "name": "Implementation", "quantity": 29, "unit": "subscription", "unitPrice": 1848.52}]}}, {"id": "rec-00083", "createdAt": "2023-05-01T00:48:53Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-31109855", "name": "Soylent Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "John Anderson", "email": "sarah.wilson@sample.io", "phone": "+1-436-898-5343"}, {"type": "technical", "name": "Mary Anderson", "email": "richard.davis@test.org", "phone": "+1-653-303-1661"}]}, "subscription": {"plan": "custom", "startDate": "2021-07-16", "renewalDate": "2023-07-16", "amount": 36815.25, "currency": "CAD", "services": [{"id": "svc-380", "name": "Database", "quantity": 381, "unit": "license", "unitPrice": 140.6}, {"id": "svc-668", "name": "Support Plan", "quantity": 17, "unit": "subscription", "unitPrice": 572.76}]}}, {"id": "rec-00084", "createdAt": "2023-03-11T20:03:07Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13013065", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Jones", "email": "john.harris@fake.tech", "phone": "+1-579-168-4228"}, {"type": "technical", "name": "Susan Taylor", "email": "michael.moore@mock.co", "phone": "+1-694-835-5421"}]}, "subscription": {"plan": "professional", "startDate": "2022-06-06", "renewalDate": "2023-06-06", "amount": 47112.43, "currency": "USD", "services": [{"id": "svc-877", "name": "Database", "quantity": 6035, "unit": "user", "unitPrice": 462.89}, {"id": "svc-318", "name": "Implementation", "quantity": 19, "unit": "unit", "unitPrice": 822.33}]}}, {"id": "rec-00085", "createdAt": "2025-03-07T17:15:26Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27940502", "name": "Virtucon", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "john.johnson@example.com", "phone": "+1-363-344-6984"}, {"type": "technical", "name": "Sarah Smith", "email": "john.harris@test.org", "phone": "+1-441-756-3110"}]}, "subscription": {"plan": "basic", "startDate": "2023-12-03", "renewalDate": "2024-12-03", "amount": 2192.44, "currency": "EUR", "services": [{"id": "svc-478", "name": "Analytics", "quantity": 8986, "unit": "user", "unitPrice": 213.37}, {"id": "svc-953", "name": "Consulting", "quantity": 37, "unit": "unit", "unitPrice": 89.8}]}}, {"id": "rec-00086", "createdAt": "2024-11-25T05:51:51Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-21960480", "name": "Acme Corp", "segment": "small-business", "industry": "education", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Susan Taylor", "email": "linda.martinez@test.org", "phone": "+1-483-515-3114"}, {"type": "technical", "name": "Nancy Martin", "email": "michael.smith@fake.tech", "phone": "+1-888-849-6877"}]}, "subscription": {"plan": "custom", "startDate": "2021-10-19", "renewalDate": "2024-10-19", "amount": 8096.62, "currency": "CAD", "services": [{"id": "svc-224", "name": "Cloud Storage", "quantity": 626, "unit": "instance", "unitPrice": 299.99}, {"id": "svc-510", "name": "Implementation", "quantity": 24, "unit": "package", "unitPrice": 1688.23}]}}, {"id": "rec-00087", "createdAt": "2022-02-09T21:56:54Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-43926931", "name": "Soylent Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Karen Williams", "email": "michael.davis@example.com", "phone": "+1-740-158-4463"}, {"type": "technical", "name": "Joseph Johnson", "email": "robert.thompson@demo.net", "phone": "+1-906-861-6653"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-23", "renewalDate": "2024-03-23", "amount": 1776.59, "currency": "AUD", "services": [{"id": "svc-718", "name": "Compute Instances", "quantity": 2234, "unit": "TB", "unitPrice": 399.28}, {"id": "svc-339", "name": "Consulting", "quantity": 2, "unit": "package", "unitPrice": 205.99}]}}, {"id": "rec-00088", "createdAt": "2020-07-05T12:18:52Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59049785", "name": "Initech", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "William Jones", "email": "thomas.smith@test.org", "phone": "+1-768-420-2814"}, {"type": "technical", "name": "Nancy Anderson", "email": "jessica.anderson@example.com", "phone": "+1-869-125-3955"}]}, "subscription": {"plan": "professional", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 23984.17, "currency": "GBP", "services": [{"id": "svc-192", "name": "Compute Instances", "quantity": 5413, "unit": "user", "unitPrice": 201.46}, {"id": "svc-678", "name": "Maintenance", "quantity": 25, "unit": "package", "unitPrice": 903.6}]}}, {"id": "rec-00089", "createdAt": "2025-09-06T10:34:19Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-97596784", "name": "Virtucon", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "mary.garcia@example.com", "phone": "+1-654-363-5818"}, {"type": "technical", "name": "Charles Jackson", "email": "thomas.martinez@test.org", "phone": "+1-268-455-8859"}]}, "subscription": {"plan": "free", "startDate": "2021-09-26", "renewalDate": "2023-09-26", "amount": 17110.43, "currency": "EUR", "services": [{"id": "svc-504", "name": "Analytics", "quantity": 9922, "unit": "GB", "unitPrice": 459.64}, {"id": "svc-968", "name": "Consulting", "quantity": 18, "unit": "session", "unitPrice": 525.85}]}}, {"id": "rec-00090", "createdAt": "2023-09-28T05:50:41Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-11498917", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "David Harris", "email": "john.white@test.org", "phone": "+1-502-932-4199"}, {"type": "technical", "name": "Elizabeth Miller", "email": "michael.davis@demo.net", "phone": "+1-849-565-1394"}]}, "subscription": {"plan": "professional", "startDate": "2021-01-23", "renewalDate": "2023-01-23", "amount": 36566.22, "currency": "EUR", "services": [{"id": "svc-866", "name": "Security", "quantity": 6884, "unit": "instance", "unitPrice": 291.8}, {"id": "svc-260", "name": "Training", "quantity": 24, "unit": "subscription", "unitPrice": 1300.52}]}}, {"id": "rec-00091", "createdAt": "2024-01-05T07:38:58Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-73362464", "name": "Massive Dynamic", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "William Martin", "email": "elizabeth.thomas@test.org", "phone": "+1-242-277-7827"}, {"type": "technical", "name": "Patricia Johnson", "email": "sarah.harris@demo.net", "phone": "+1-793-474-8119"}]}, "subscription": {"plan": "free", "startDate": "2020-11-20", "renewalDate": "2023-11-20", "amount": 5023.14, "currency": "CAD", "services": [{"id": "svc-121", "name": "Compute Instances", "quantity": 6797, "unit": "TB", "unitPrice": 401.01}, {"id": "svc-244", "name": "Support Plan", "quantity": 53, "unit": "package", "unitPrice": 1866.05}]}}, {"id": "rec-00092", "createdAt": "2025-05-24T05:57:51Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-21096051", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Joseph Jackson", "email": "mary.smith@sample.io", "phone": "+1-963-284-1812"}, {"type": "technical", "name": "Karen Johnson", "email": "jennifer.garcia@mock.co", "phone": "+1-660-864-2699"}]}, "subscription": {"plan": "professional", "startDate": "2023-12-26", "renewalDate": "2026-12-26", "amount": 29263.25, "currency": "EUR", "services": [{"id": "svc-856", "name": "Database", "quantity": 8265, "unit": "instance", "unitPrice": 2.46}, {"id": "svc-154", "name": "Consulting", "quantity": 84, "unit": "hour", "unitPrice": 1551.15}]}}, {"id": "rec-00093", "createdAt": "2020-01-01T23:35:18Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45348091", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Linda Smith", "email": "william.davis@sample.io", "phone": "+1-320-617-4464"}, {"type": "technical", "name": "Michael Brown", "email": "patricia.davis@test.org", "phone": "+1-884-874-1813"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-19", "renewalDate": "2024-03-19", "amount": 33253.53, "currency": "GBP", "services": [{"id": "svc-381", "name": "Cloud Storage", "quantity": 6462, "unit": "user", "unitPrice": 322.41}, {"id": "svc-989", "name": "Implementation", "quantity": 73, "unit": "unit", "unitPrice": 1423.73}]}}, {"id": "rec-00094", "createdAt": "2025-11-23T01:37:27Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66893113", "name": "Globex", "segment": "enterprise", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "patricia.white@sample.io", "phone": "+1-847-544-6353"}, {"type": "technical", "name": "Mary Robinson", "email": "thomas.davis@example.com", "phone": "+1-624-231-2688"}]}, "subscription": {"plan": "free", "startDate": "2023-05-24", "renewalDate": "2024-05-24", "amount": 39071.26, "currency": "GBP", "services": [{"id": "svc-951", "name": "Compute Instances", "quantity": 3605, "unit": "GB", "unitPrice": 104.95}, {"id": "svc-609", "name": "Implementation", "quantity": 30, "unit": "unit", "unitPrice": 570.29}]}}, {"id": "rec-00095", "createdAt": "2024-11-15T13:06:00Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-62947040", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "healthcare", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Thomas Williams", "email": "michael.williams@test.org", "phone": "+1-934-131-1817"}, {"type": "technical", "name": "William Martin", "email": "nancy.thomas@fake.tech", "phone": "+1-976-801-4848"}]}, "subscription": {"plan": "basic", "startDate": "2024-07-01", "renewalDate": "2026-07-01", "amount": 32259.33, "currency": "USD", "services": [{"id": "svc-134", "name": "Compute Instances", "quantity": 5259, "unit": "instance", "unitPrice": 298.79}, {"id": "svc-437", "name": "Training", "quantity": 81, "unit": "package", "unitPrice": 1837.65}]}}, {"id": "rec-00096", "createdAt": "2020-11-18T09:18:42Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-46868022", "name": "Soylent Corp", "segment": "startup", "industry": "finance", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "charles.jackson@test.org", "phone": "+1-848-482-6552"}, {"type": "technical", "name": "Jennifer Thomas", "email": "linda.martin@sample.io", "phone": "+1-524-816-5807"}]}, "subscription": {"plan": "basic", "startDate": "2024-11-07", "renewalDate": "2026-11-07", "amount": 36122.66, "currency": "GBP", "services": [{"id": "svc-280", "name": "Compute Instances", "quantity": 4971, "unit": "instance", "unitPrice": 192.83}, {"id": "svc-505", "name": "Maintenance", "quantity": 6, "unit": "unit", "unitPrice": 1010.84}]}}, {"id": "rec-00097", "createdAt": "2024-01-04T03:28:31Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-56565323", "name": "Massive Dynamic", "segment": "startup", "industry": "retail", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Nancy Jackson", "email": "robert.miller@sample.io", "phone": "+1-766-185-2365"}, {"type": "technical", "name": "Robert Martin", "email": "william.taylor@example.com", "phone": "+1-785-525-9562"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-10-03", "renewalDate": "2023-10-03", "amount": 36405.77, "currency": "EUR", "services": [{"id": "svc-827", "name": "Cloud Storage", "quantity": 1534, "unit": "license", "unitPrice": 41.48}, {"id": "svc-454", "name": "Support Plan", "quantity": 49, "unit": "hour", "unitPrice": 954.48}]}}, {"id": "rec-00098", "createdAt": "2022-02-28T04:58:01Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82889714", "name": "Stark Industries", "segment": "mid-market", "industry": "retail", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "michael.white@fake.tech", "phone": "+1-825-790-6638"}, {"type": "technical", "name": "Robert Martin", "email": "richard.miller@demo.net", "phone": "+1-318-716-3190"}]}, "subscription": {"plan": "professional", "startDate": "2022-06-08", "renewalDate": "2025-06-08", "amount": 9024.5, "currency": "CAD", "services": [{"id": "svc-289", "name": "Database", "quantity": 767, "unit": "instance", "unitPrice": 217.31}, {"id": "svc-923", "name": "Maintenance", "quantity": 31, "unit": "session", "unitPrice": 816.03}]}}, {"id": "rec-00099", "createdAt": "2022-01-02T22:24:51Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-32450068", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "david.wilson@demo.net", "phone": "+1-519-603-8386"}, {"type": "technical", "name": "Sarah Martinez", "email": "jennifer.davis@example.com", "phone": "+1-637-800-8416"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-24", "renewalDate": "2023-03-24", "amount": 19747.68, "currency": "GBP", "services": [{"id": "svc-765", "name": "Analytics", "quantity": 5774, "unit": "instance", "unitPrice": 264.83}, {"id": "svc-439", "name": "Maintenance", "quantity": 3, "unit": "subscription", "unitPrice": 62.02}]}}, {"id": "rec-00100", "createdAt": "2023-04-10T21:15:34Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-21335075", "name": "Wayne Enterprises", "segment": "startup", "industry": "finance", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "joseph.garcia@fake.tech", "phone": "+1-439-225-6556"}, {"type": "technical", "name": "David Johnson", "email": "linda.harris@demo.net", "phone": "+1-347-971-6133"}]}, "subscription": {"plan": "basic", "startDate": "2022-07-11", "renewalDate": "2025-07-11", "amount": 2815.42, "currency": "AUD", "services": [{"id": "svc-399", "name": "Cloud Storage", "quantity": 9439, "unit": "TB", "unitPrice": 233.82}, {"id": "svc-849", "name": "Maintenance", "quantity": 72, "unit": "hour", "unitPrice": 199.55}]}}, {"id": "rec-00101", "createdAt": "2022-09-20T17:53:46Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17679378", "name": "Soylent Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Michael Wilson", "email": "jennifer.garcia@fake.tech", "phone": "+1-529-868-3473"}, {"type": "technical", "name": "Richard Robinson", "email": "jennifer.brown@test.org", "phone": "+1-956-431-3302"}]}, "subscription": {"plan": "custom", "startDate": "2020-04-18", "renewalDate": "2022-04-18", "amount": 2261.59, "currency": "AUD", "services": [{"id": "svc-899", "name": "Database", "quantity": 2624, "unit": "user", "unitPrice": 231.48}, {"id": "svc-878", "name": "Consulting", "quantity": 75, "unit": "session", "unitPrice": 1455.63}]}}, {"id": "rec-00102", "createdAt": "2023-09-11T01:06:32Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45615295", "name": "Umbrella Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Karen Taylor", "email": "robert.garcia@demo.net", "phone": "+1-486-718-3861"}, {"type": "technical", "name": "Richard Davis", "email": "david.martinez@mock.co", "phone": "+1-531-344-2737"}]}, "subscription": {"plan": "custom", "startDate": "2020-09-04", "renewalDate": "2023-09-04", "amount": 38410.93, "currency": "USD", "services": [{"id": "svc-978", "name": "Database", "quantity": 4455, "unit": "instance", "unitPrice": 70.05}, {"id": "svc-189", "name": "Training", "quantity": 51, "unit": "unit", "unitPrice": 1140.41}]}}, {"id": "rec-00103", "createdAt": "2020-03-14T01:33:16Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29230777", "name": "Initech", "segment": "small-business", "industry": "finance", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "John Moore", "email": "susan.smith@demo.net", "phone": "+1-565-305-7274"}, {"type": "technical", "name": "Nancy Brown", "email": "elizabeth.williams@mock.co", "phone": "+1-483-536-9781"}]}, "subscription": {"plan": "professional", "startDate": "2022-08-08", "renewalDate": "2025-08-08", "amount": 12155.85, "currency": "GBP", "services": [{"id": "svc-272", "name": "Compute Instances", "quantity": 9399, "unit": "user", "unitPrice": 468.97}, {"id": "svc-848", "name": "Consulting", "quantity": 9, "unit": "package", "unitPrice": 1701.45}]}}, {"id": "rec-00104", "createdAt": "2021-03-20T18:47:54Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-63829055", "name": "Umbrella Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Linda Thompson", "email": "william.smith@mock.co", "phone": "+1-933-793-4494"}, {"type": "technical", "name": "Robert Moore", "email": "richard.johnson@mock.co", "phone": "+1-837-551-6261"}]}, "subscription": {"plan": "basic", "startDate": "2021-07-24", "renewalDate": "2022-07-24", "amount": 10304.53, "currency": "GBP", "services": [{"id": "svc-298", "name": "Cloud Storage", "quantity": 6207, "unit": "GB", "unitPrice": 454.83}, {"id": "svc-590", "name": "Maintenance", "quantity": 19, "unit": "subscription", "unitPrice": 719.5}]}}, {"id": "rec-00105", "createdAt": "2025-09-08T23:23:06Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-16528524", "name": "Soylent Corp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "John Martinez", "email": "nancy.thomas@fake.tech", "phone": "+1-988-329-7215"}, {"type": "technical", "name": "Patricia Jones", "email": "jennifer.taylor@sample.io", "phone": "+1-450-391-3012"}]}, "subscription": {"plan": "basic", "startDate": "2020-11-12", "renewalDate": "2022-11-12", "amount": 8655.45, "currency": "USD", "services": [{"id": "svc-808", "name": "Cloud Storage", "quantity": 9, "unit": "TB", "unitPrice": 236.17}, {"id": "svc-843", "name": "Implementation", "quantity": 64, "unit": "package", "unitPrice": 1649.69}]}}, {"id": "rec-00106", "createdAt": "2024-12-11T23:28:11Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-92068622", "name": "Stark Industries", "segment": "startup", "industry": "manufacturing", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Robert Johnson", "email": "james.smith@demo.net", "phone": "+1-345-501-5518"}, {"type": "technical", "name": "James Martinez", "email": "nancy.moore@test.org", "phone": "+1-441-630-9590"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-14", "renewalDate": "2022-12-14", "amount": 8590.32, "currency": "USD", "services": [{"id": "svc-404", "name": "Security", "quantity": 4831, "unit": "license", "unitPrice": 345.14}, {"id": "svc-767", "name": "Support Plan", "quantity": 59, "unit": "hour", "unitPrice": 1595.47}]}}, {"id": "rec-00107", "createdAt": "2024-04-22T18:17:21Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-40855505", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Joseph Moore", "email": "robert.jones@sample.io", "phone": "+1-599-760-7342"}, {"type": "technical", "name": "Robert Miller", "email": "sarah.thompson@mock.co", "phone": "+1-280-768-8190"}]}, "subscription": {"plan": "custom", "startDate": "2022-01-21", "renewalDate": "2024-01-21", "amount": 7857.2, "currency": "USD", "services": [{"id": "svc-975", "name": "Compute Instances", "quantity": 7885, "unit": "license", "unitPrice": 143.51}, {"id": "svc-473", "name": "Maintenance", "quantity": 38, "unit": "session", "unitPrice": 783.92}]}}, {"id": "rec-00108", "createdAt": "2022-01-23T12:58:34Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-38107078", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 2006, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "nancy.white@fake.tech", "phone": "+1-639-729-2566"}, {"type": "technical", "name": "Susan Smith", "email": "jessica.wilson@fake.tech", "phone": "+1-881-842-5035"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-03", "renewalDate": "2024-06-03", "amount": 11570.74, "currency": "GBP", "services": [{"id": "svc-947", "name": "Analytics", "quantity": 2740, "unit": "TB", "unitPrice": 459.71}, {"id": "svc-290", "name": "Training", "quantity": 66, "unit": "session", "unitPrice": 1327.63}]}}, {"id": "rec-00109", "createdAt": "2020-10-05T18:58:54Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-15343208", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Thomas Wilson", "email": "thomas.smith@test.org", "phone": "+1-897-990-6261"}, {"type": "technical", "name": "Mary Thompson", "email": "thomas.smith@demo.net", "phone": "+1-247-610-4331"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-06-24", "renewalDate": "2022-06-24", "amount": 48174.17, "currency": "USD", "services": [{"id": "svc-586", "name": "Cloud Storage", "quantity": 1812, "unit": "TB", "unitPrice": 172.91}, {"id": "svc-264", "name": "Maintenance", "quantity": 57, "unit": "session", "unitPrice": 1611.83}]}}, {"id": "rec-00110", "createdAt": "2025-04-08T22:49:29Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90202539", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "karen.jones@test.org", "phone": "+1-831-620-8953"}, {"type": "technical", "name": "Mary Anderson", "email": "susan.wilson@fake.tech", "phone": "+1-717-210-6655"}]}, "subscription": {"plan": "basic", "startDate": "2023-08-11", "renewalDate": "2025-08-11", "amount": 32971.1, "currency": "USD", "services": [{"id": "svc-150", "name": "Cloud Storage", "quantity": 4814, "unit": "license", "unitPrice": 387.15}, {"id": "svc-889", "name": "Support Plan", "quantity": 45, "unit": "package", "unitPrice": 1840.0}]}}, {"id": "rec-00111", "createdAt": "2023-12-25T14:14:46Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-51048128", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "Mary Harris", "email": "richard.miller@sample.io", "phone": "+1-309-418-5013"}, {"type": "technical", "name": "Linda Smith", "email": "jessica.anderson@mock.co", "phone": "+1-444-195-8903"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-03-23", "renewalDate": "2026-03-23", "amount": 5740.7, "currency": "AUD", "services": [{"id": "svc-724", "name": "Cloud Storage", "quantity": 7201, "unit": "license", "unitPrice": 34.1}, {"id": "svc-303", "name": "Support Plan", "quantity": 5, "unit": "hour", "unitPrice": 1783.34}]}}, {"id": "rec-00112", "createdAt": "2021-12-16T16:51:10Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-55299262", "name": "Soylent Corp", "segment": "small-business", "industry": "education", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "James Miller", "email": "john.garcia@mock.co", "phone": "+1-913-330-2869"}, {"type": "technical", "name": "Thomas White", "email": "jennifer.martinez@test.org", "phone": "+1-361-845-9744"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-20", "renewalDate": "2024-01-20", "amount": 15567.11, "currency": "CAD", "services": [{"id": "svc-602", "name": "Analytics", "quantity": 2168, "unit": "TB", "unitPrice": 218.75}, {"id": "svc-659", "name": "Implementation", "quantity": 54, "unit": "subscription", "unitPrice": 1896.21}]}}, {"id": "rec-00113", "createdAt": "2025-08-05T12:07:05Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-67050018", "name": "LexCorp", "segment": "startup", "industry": "retail", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Susan Martinez", "email": "charles.thompson@demo.net", "phone": "+1-297-304-4307"}, {"type": "technical", "name": "Patricia White", "email": "james.johnson@demo.net", "phone": "+1-681-883-9063"}]}, "subscription": {"plan": "professional", "startDate": "2024-08-25", "renewalDate": "2027-08-25", "amount": 43280.8, "currency": "CAD", "services": [{"id": "svc-516", "name": "Compute Instances", "quantity": 6880, "unit": "license", "unitPrice": 23.54}, {"id": "svc-365", "name": "Maintenance", "quantity": 99, "unit": "subscription", "unitPrice": 788.31}]}}, {"id": "rec-00114", "createdAt": "2025-10-06T03:28:31Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-50379890", "name": "Stark Industries", "segment": "startup", "industry": "retail", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Patricia Anderson", "email": "richard.taylor@example.com", "phone": "+1-742-372-5989"}, {"type": "technical", "name": "Mary Anderson", "email": "james.miller@mock.co", "phone": "+1-760-784-2647"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-05", "renewalDate": "2027-11-05", "amount": 35479.27, "currency": "CAD", "services": [{"id": "svc-576", "name": "Security", "quantity": 1076, "unit": "user", "unitPrice": 314.18}, {"id": "svc-783", "name": "Maintenance", "quantity": 41, "unit": "package", "unitPrice": 1782.63}]}}, {"id": "rec-00115", "createdAt": "2021-11-10T07:48:08Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-58030592", "name": "Stark Industries", "segment": "small-business", "industry": "finance", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Jennifer Moore", "email": "robert.martinez@sample.io", "phone": "+1-210-199-8551"}, {"type": "technical", "name": "Charles Miller", "email": "elizabeth.anderson@sample.io", "phone": "+1-333-223-4945"}]}, "subscription": {"plan": "free", "startDate": "2022-09-08", "renewalDate": "2023-09-08", "amount": 11610.62, "currency": "CAD", "services": [{"id": "svc-931", "name": "Database", "quantity": 7052, "unit": "user", "unitPrice": 465.02}, {"id": "svc-357", "name": "Implementation", "quantity": 68, "unit": "unit", "unitPrice": 906.78}]}}, {"id": "rec-00116", "createdAt": "2024-03-13T20:43:05Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20531742", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "david.williams@demo.net", "phone": "+1-675-273-2013"}, {"type": "technical", "name": "John Martinez", "email": "jessica.garcia@sample.io", "phone": "+1-633-660-7310"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-01-01", "renewalDate": "2025-01-01", "amount": 24886.55, "currency": "GBP", "services": [{"id": "svc-213", "name": "Database", "quantity": 3167, "unit": "instance", "unitPrice": 76.79}, {"id": "svc-314", "name": "Support Plan", "quantity": 78, "unit": "package", "unitPrice": 371.91}]}}, {"id": "rec-00117", "createdAt": "2024-07-26T02:40:16Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-33158353", "name": "Globex", "segment": "startup", "industry": "healthcare", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Jennifer Johnson", "email": "sarah.williams@demo.net", "phone": "+1-747-972-4961"}, {"type": "technical", "name": "John Martinez", "email": "jessica.robinson@mock.co", "phone": "+1-481-388-7783"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-12-14", "renewalDate": "2023-12-14", "amount": 43541.25, "currency": "CAD", "services": [{"id": "svc-573", "name": "Compute Instances", "quantity": 7707, "unit": "TB", "unitPrice": 77.22}, {"id": "svc-803", "name": "Implementation", "quantity": 48, "unit": "session", "unitPrice": 1656.65}]}}, {"id": "rec-00118", "createdAt": "2021-08-05T11:46:42Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-86373581", "name": "Globex", "segment": "startup", "industry": "education", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "William Martin", "email": "thomas.jones@mock.co", "phone": "+1-299-478-9000"}, {"type": "technical", "name": "David Jackson", "email": "joseph.garcia@sample.io", "phone": "+1-737-126-5881"}]}, "subscription": {"plan": "free", "startDate": "2022-05-13", "renewalDate": "2024-05-13", "amount": 36622.14, "currency": "USD", "services": [{"id": "svc-990", "name": "Cloud Storage", "quantity": 7997, "unit": "TB", "unitPrice": 494.62}, {"id": "svc-558", "name": "Maintenance", "quantity": 90, "unit": "session", "unitPrice": 1930.08}]}}, {"id": "rec-00119", "createdAt": "2023-06-27T02:11:37Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-15361895", "name": "Oscorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Mary Garcia", "email": "richard.harris@sample.io", "phone": "+1-843-636-7295"}, {"type": "technical", "name": "Charles Martinez", "email": "linda.johnson@mock.co", "phone": "+1-665-520-7216"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-05", "renewalDate": "2024-07-05", "amount": 27719.15, "currency": "EUR", "services": [{"id": "svc-576", "name": "Database", "quantity": 6608, "unit": "user", "unitPrice": 446.33}, {"id": "svc-582", "name": "Support Plan", "quantity": 55, "unit": "session", "unitPrice": 972.47}]}}, {"id": "rec-00120", "createdAt": "2021-07-16T19:51:22Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-92552104", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Charles Martinez", "email": "susan.miller@demo.net", "phone": "+1-958-724-3788"}, {"type": "technical", "name": "Jennifer Smith", "email": "michael.davis@test.org", "phone": "+1-321-427-6292"}]}, "subscription": {"plan": "basic", "startDate": "2024-09-18", "renewalDate": "2027-09-18", "amount": 28818.84, "currency": "CAD", "services": [{"id": "svc-495", "name": "Cloud Storage", "quantity": 7348, "unit": "TB", "unitPrice": 210.56}, {"id": "svc-562", "name": "Maintenance", "quantity": 67, "unit": "unit", "unitPrice": 1184.09}]}}, {"id": "rec-00121", "createdAt": "2024-12-20T13:41:15Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-90630211", "name": "Massive Dynamic", "segment": "small-business", "industry": "retail", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "David Smith", "email": "jennifer.moore@test.org", "phone": "+1-437-563-2460"}, {"type": "technical", "name": "Charles Thompson", "email": "david.jones@test.org", "phone": "+1-695-569-1303"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-16", "renewalDate": "2024-12-16", "amount": 10566.28, "currency": "EUR", "services": [{"id": "svc-182", "name": "Compute Instances", "quantity": 5541, "unit": "instance", "unitPrice": 63.5}, {"id": "svc-977", "name": "Consulting", "quantity": 13, "unit": "hour", "unitPrice": 735.69}]}}, {"id": "rec-00122", "createdAt": "2024-05-22T20:40:46Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-76455711", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Elizabeth Harris", "email": "james.martin@example.com", "phone": "+1-832-178-1442"}, {"type": "technical", "name": "Nancy Thompson", "email": "sarah.brown@example.com", "phone": "+1-274-145-4901"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-02", "renewalDate": "2027-11-02", "amount": 18192.34, "currency": "GBP", "services": [{"id": "svc-833", "name": "Cloud Storage", "quantity": 817, "unit": "instance", "unitPrice": 292.9}, {"id": "svc-365", "name": "Maintenance", "quantity": 12, "unit": "subscription", "unitPrice": 1371.8}]}}, {"id": "rec-00123", "createdAt": "2023-07-19T18:12:05Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90160164", "name": "Oscorp", "segment": "enterprise", "industry": "technology", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Patricia Moore", "email": "john.harris@demo.net", "phone": "+1-592-206-8940"}, {"type": "technical", "name": "Karen Thomas", "email": "jessica.johnson@fake.tech", "phone": "+1-516-507-1935"}]}, "subscription": {"plan": "basic", "startDate": "2022-01-26", "renewalDate": "2025-01-26", "amount": 8261.72, "currency": "GBP", "services": [{"id": "svc-859", "name": "Database", "quantity": 6713, "unit": "instance", "unitPrice": 334.73}, {"id": "svc-234", "name": "Maintenance", "quantity": 85, "unit": "unit", "unitPrice": 998.28}]}}, {"id": "rec-00124", "createdAt": "2023-02-02T05:22:32Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80939258", "name": "Umbrella Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Thomas Brown", "email": "jessica.williams@fake.tech", "phone": "+1-872-732-1421"}, {"type": "technical", "name": "Sarah Robinson", "email": "michael.johnson@mock.co", "phone": "+1-731-111-4360"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-10-02", "renewalDate": "2025-10-02", "amount": 42605.46, "currency": "USD", "services": [{"id": "svc-542", "name": "Compute Instances", "quantity": 8654, "unit": "license", "unitPrice": 140.4}, {"id": "svc-487", "name": "Implementation", "quantity": 15, "unit": "session", "unitPrice": 1270.2}]}}, {"id": "rec-00125", "createdAt": "2023-03-06T19:54:32Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-18687597", "name": "Wayne Enterprises", "segment": "small-business", "industry": "finance", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "James Jones", "email": "linda.davis@test.org", "phone": "+1-367-952-4106"}, {"type": "technical", "name": "Susan White", "email": "susan.smith@demo.net", "phone": "+1-952-304-7242"}]}, "subscription": {"plan": "free", "startDate": "2023-10-18", "renewalDate": "2026-10-18", "amount": 19572.1, "currency": "AUD", "services": [{"id": "svc-525", "name": "Database", "quantity": 9844, "unit": "user", "unitPrice": 313.44}, {"id": "svc-200", "name": "Support Plan", "quantity": 45, "unit": "unit", "unitPrice": 1339.5}]}}, {"id": "rec-00126", "createdAt": "2020-05-11T12:52:59Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14903291", "name": "Stark Industries", "segment": "mid-market", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Harris", "email": "elizabeth.brown@sample.io", "phone": "+1-863-310-6443"}, {"type": "technical", "name": "Jennifer Martinez", "email": "joseph.harris@example.com", "phone": "+1-993-854-6143"}]}, "subscription": {"plan": "free", "startDate": "2021-06-13", "renewalDate": "2024-06-13", "amount": 46419.62, "currency": "EUR", "services": [{"id": "svc-144", "name": "Database", "quantity": 4287, "unit": "GB", "unitPrice": 467.32}, {"id": "svc-599", "name": "Implementation", "quantity": 99, "unit": "subscription", "unitPrice": 528.8}]}}, {"id": "rec-00127", "createdAt": "2020-01-06T00:56:47Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-35356753", "name": "Aperture Science", "segment": "small-business", "industry": "finance", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Karen Garcia", "email": "mary.thompson@example.com", "phone": "+1-707-621-8124"}, {"type": "technical", "name": "Karen Davis", "email": "karen.martin@sample.io", "phone": "+1-437-545-6326"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-23", "renewalDate": "2022-02-23", "amount": 42418.17, "currency": "AUD", "services": [{"id": "svc-710", "name": "Compute Instances", "quantity": 7543, "unit": "GB", "unitPrice": 137.9}, {"id": "svc-695", "name": "Implementation", "quantity": 34, "unit": "unit", "unitPrice": 1707.32}]}}, {"id": "rec-00128", "createdAt": "2020-12-07T00:01:19Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57253248", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Jessica Wilson", "email": "linda.martinez@example.com", "phone": "+1-577-100-9700"}, {"type": "technical", "name": "Susan Wilson", "email": "thomas.garcia@sample.io", "phone": "+1-227-133-8220"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-12", "renewalDate": "2023-02-12", "amount": 16311.61, "currency": "EUR", "services": [{"id": "svc-121", "name": "Database", "quantity": 1958, "unit": "instance", "unitPrice": 145.28}, {"id": "svc-409", "name": "Implementation", "quantity": 49, "unit": "subscription", "unitPrice": 1875.86}]}}, {"id": "rec-00129", "createdAt": "2022-10-14T20:51:32Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66205556", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "robert.johnson@mock.co", "phone": "+1-875-419-5239"}, {"type": "technical", "name": "Elizabeth Williams", "email": "john.thomas@fake.tech", "phone": "+1-295-307-2250"}]}, "subscription": {"plan": "free", "startDate": "2024-05-26", "renewalDate": "2026-05-26", "amount": 12129.27, "currency": "CAD", "services": [{"id": "svc-567", "name": "Security", "quantity": 5512, "unit": "user", "unitPrice": 183.39}, {"id": "svc-705", "name": "Implementation", "quantity": 28, "unit": "session", "unitPrice": 1467.32}]}}, {"id": "rec-00130", "createdAt": "2023-08-11T02:04:19Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-12931719", "name": "Stark Industries", "segment": "small-business", "industry": "healthcare", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "William Moore", "email": "charles.smith@fake.tech", "phone": "+1-321-123-4869"}, {"type": "technical", "name": "William Taylor", "email": "william.taylor@sample.io", "phone": "+1-515-904-8975"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-28", "renewalDate": "2024-12-28", "amount": 10686.71, "currency": "GBP", "services": [{"id": "svc-235", "name": "Cloud Storage", "quantity": 7604, "unit": "user", "unitPrice": 223.38}, {"id": "svc-598", "name": "Training", "quantity": 57, "unit": "session", "unitPrice": 1007.82}]}}, {"id": "rec-00131", "createdAt": "2025-07-24T11:18:00Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15476228", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "finance", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Jones", "email": "richard.thomas@test.org", "phone": "+1-274-566-9524"}, {"type": "technical", "name": "Jennifer Williams", "email": "nancy.williams@fake.tech", "phone": "+1-355-627-7050"}]}, "subscription": {"plan": "custom", "startDate": "2024-06-05", "renewalDate": "2025-06-05", "amount": 14940.56, "currency": "EUR", "services": [{"id": "svc-133", "name": "Security", "quantity": 7682, "unit": "TB", "unitPrice": 330.34}, {"id": "svc-631", "name": "Implementation", "quantity": 72, "unit": "subscription", "unitPrice": 1115.64}]}}, {"id": "rec-00132", "createdAt": "2020-08-28T01:04:09Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-23919744", "name": "Massive Dynamic", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "Mary Anderson", "email": "karen.taylor@example.com", "phone": "+1-848-314-2375"}, {"type": "technical", "name": "William Taylor", "email": "james.thomas@sample.io", "phone": "+1-203-878-3259"}]}, "subscription": {"plan": "custom", "startDate": "2024-12-16", "renewalDate": "2027-12-16", "amount": 23619.0, "currency": "EUR", "services": [{"id": "svc-827", "name": "Analytics", "quantity": 2903, "unit": "user", "unitPrice": 25.35}, {"id": "svc-460", "name": "Maintenance", "quantity": 32, "unit": "unit", "unitPrice": 1194.37}]}}, {"id": "rec-00133", "createdAt": "2024-11-06T15:06:55Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-12902890", "name": "Oscorp", "segment": "startup", "industry": "technology", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "James White", "email": "charles.williams@mock.co", "phone": "+1-625-862-1761"}, {"type": "technical", "name": "Elizabeth Johnson", "email": "charles.wilson@test.org", "phone": "+1-356-701-3806"}]}, "subscription": {"plan": "free", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 23155.32, "currency": "USD", "services": [{"id": "svc-804", "name": "Security", "quantity": 3618, "unit": "GB", "unitPrice": 291.3}, {"id": "svc-889", "name": "Support Plan", "quantity": 15, "unit": "subscription", "unitPrice": 1668.94}]}}, {"id": "rec-00134", "createdAt": "2023-03-16T07:54:26Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38833985", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Richard Johnson", "email": "james.white@test.org", "phone": "+1-592-101-9387"}, {"type": "technical", "name": "Mary Davis", "email": "charles.harris@mock.co", "phone": "+1-437-511-6478"}]}, "subscription": {"plan": "professional", "startDate": "2024-08-19", "renewalDate": "2026-08-19", "amount": 45470.73, "currency": "EUR", "services": [{"id": "svc-589", "name": "Cloud Storage", "quantity": 4726, "unit": "TB", "unitPrice": 457.73}, {"id": "svc-874", "name": "Training", "quantity": 31, "unit": "session", "unitPrice": 1982.91}]}}, {"id": "rec-00135", "createdAt": "2022-12-03T21:26:50Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82977255", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "technology", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Mary Harris", "email": "james.thomas@demo.net", "phone": "+1-884-729-5484"}, {"type": "technical", "name": "Susan Miller", "email": "elizabeth.thomas@test.org", "phone": "+1-447-859-6665"}]}, "subscription": {"plan": "free", "startDate": "2023-01-11", "renewalDate": "2026-01-11", "amount": 37291.67, "currency": "AUD", "services": [{"id": "svc-707", "name": "Cloud Storage", "quantity": 963, "unit": "instance", "unitPrice": 257.53}, {"id": "svc-351", "name": "Maintenance", "quantity": 22, "unit": "session", "unitPrice": 1121.95}]}}, {"id": "rec-00136", "createdAt": "2024-12-19T12:11:05Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-72184551", "name": "Aperture Science", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Richard Jackson", "email": "jennifer.jackson@demo.net", "phone": "+1-896-152-5858"}, {"type": "technical", "name": "Mary Davis", "email": "karen.jones@fake.tech", "phone": "+1-778-614-4586"}]}, "subscription": {"plan": "professional", "startDate": "2022-12-03", "renewalDate": "2025-12-03", "amount": 33393.55, "currency": "GBP", "services": [{"id": "svc-304", "name": "Analytics", "quantity": 3528, "unit": "user", "unitPrice": 11.88}, {"id": "svc-372", "name": "Consulting", "quantity": 45, "unit": "session", "unitPrice": 403.68}]}}, {"id": "rec-00137", "createdAt": "2022-12-09T03:06:07Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-37283714", "name": "Globex", "segment": "mid-market", "industry": "technology", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Elizabeth White", "email": "linda.anderson@fake.tech", "phone": "+1-816-344-6799"}, {"type": "technical", "name": "Mary Miller", "email": "david.brown@example.com", "phone": "+1-516-288-1602"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-16", "renewalDate": "2023-01-16", "amount": 40279.42, "currency": "EUR", "services": [{"id": "svc-146", "name": "Analytics", "quantity": 3332, "unit": "instance", "unitPrice": 487.9}, {"id": "svc-844", "name": "Implementation", "quantity": 17, "unit": "subscription", "unitPrice": 850.44}]}}, {"id": "rec-00138", "createdAt": "2023-04-19T19:00:54Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-70128826", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "Patricia Taylor", "email": "charles.williams@fake.tech", "phone": "+1-659-607-2596"}, {"type": "technical", "name": "Michael Martinez", "email": "david.robinson@mock.co", "phone": "+1-501-674-8452"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-12-18", "renewalDate": "2021-12-18", "amount": 37540.88, "currency": "EUR", "services": [{"id": "svc-738", "name": "Security", "quantity": 4282, "unit": "instance", "unitPrice": 218.48}, {"id": "svc-862", "name": "Implementation", "quantity": 39, "unit": "session", "unitPrice": 964.79}]}}, {"id": "rec-00139", "createdAt": "2022-11-24T09:12:39Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-43381294", "name": "Aperture Science", "segment": "enterprise", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Linda Jackson", "email": "michael.williams@demo.net", "phone": "+1-602-277-1921"}, {"type": "technical", "name": "Jessica Martin", "email": "linda.robinson@sample.io", "phone": "+1-956-124-3829"}]}, "subscription": {"plan": "free", "startDate": "2021-06-26", "renewalDate": "2024-06-26", "amount": 19447.36, "currency": "CAD", "services": [{"id": "svc-731", "name": "Cloud Storage", "quantity": 5145, "unit": "instance", "unitPrice": 122.86}, {"id": "svc-471", "name": "Consulting", "quantity": 58, "unit": "subscription", "unitPrice": 223.7}]}}, {"id": "rec-00140", "createdAt": "2024-02-20T22:11:53Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-10917099", "name": "Aperture Science", "segment": "enterprise", "industry": "finance", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "jennifer.miller@sample.io", "phone": "+1-991-383-7620"}, {"type": "technical", "name": "Elizabeth Brown", "email": "thomas.jones@example.com", "phone": "+1-588-187-6345"}]}, "subscription": {"plan": "basic", "startDate": "2022-04-07", "renewalDate": "2024-04-07", "amount": 22078.9, "currency": "USD", "services": [{"id": "svc-353", "name": "Compute Instances", "quantity": 9056, "unit": "TB", "unitPrice": 456.85}, {"id": "svc-697", "name": "Consulting", "quantity": 3, "unit": "hour", "unitPrice": 1504.88}]}}, {"id": "rec-00141", "createdAt": "2021-08-21T12:26:05Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15858315", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "patricia.martinez@sample.io", "phone": "+1-981-613-2666"}, {"type": "technical", "name": "Nancy Anderson", "email": "nancy.anderson@fake.tech", "phone": "+1-848-972-7982"}]}, "subscription": {"plan": "professional", "startDate": "2023-05-22", "renewalDate": "2026-05-22", "amount": 46948.76, "currency": "CAD", "services": [{"id": "svc-848", "name": "Database", "quantity": 1462, "unit": "instance", "unitPrice": 103.84}, {"id": "svc-895", "name": "Implementation", "quantity": 11, "unit": "session", "unitPrice": 1126.32}]}}, {"id": "rec-00142", "createdAt": "2020-06-03T08:40:21Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-55299092", "name": "Soylent Corp", "segment": "small-business", "industry": "education", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "jennifer.anderson@example.com", "phone": "+1-982-711-7590"}, {"type": "technical", "name": "David Moore", "email": "karen.wilson@fake.tech", "phone": "+1-876-891-3604"}]}, "subscription": {"plan": "free", "startDate": "2022-02-06", "renewalDate": "2023-02-06", "amount": 9290.14, "currency": "AUD", "services": [{"id": "svc-809", "name": "Cloud Storage", "quantity": 9928, "unit": "TB", "unitPrice": 241.53}, {"id": "svc-780", "name": "Implementation", "quantity": 43, "unit": "hour", "unitPrice": 1104.21}]}}, {"id": "rec-00143", "createdAt": "2023-04-08T21:45:13Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-25100801", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Robinson", "email": "mary.martinez@mock.co", "phone": "+1-344-230-2302"}, {"type": "technical", "name": "James Thomas", "email": "david.williams@example.com", "phone": "+1-356-780-5055"}]}, "subscription": {"plan": "custom", "startDate": "2020-10-20", "renewalDate": "2021-10-20", "amount": 4888.72, "currency": "EUR", "services": [{"id": "svc-262", "name": "Cloud Storage", "quantity": 9613, "unit": "user", "unitPrice": 204.39}, {"id": "svc-745", "name": "Training", "quantity": 69, "unit": "hour", "unitPrice": 435.33}]}}, {"id": "rec-00144", "createdAt": "2020-12-04T15:35:32Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-88898073", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "joseph.davis@demo.net", "phone": "+1-567-503-7328"}, {"type": "technical", "name": "Linda Johnson", "email": "richard.robinson@sample.io", "phone": "+1-451-209-6226"}]}, "subscription": {"plan": "free", "startDate": "2023-05-08", "renewalDate": "2025-05-08", "amount": 10271.32, "currency": "GBP", "services": [{"id": "svc-485", "name": "Security", "quantity": 5505, "unit": "license", "unitPrice": 87.36}, {"id": "svc-458", "name": "Implementation", "quantity": 29, "unit": "package", "unitPrice": 456.73}]}}, {"id": "rec-00145", "createdAt": "2023-04-27T18:48:31Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-98413512", "name": "Stark Industries", "segment": "small-business", "industry": "retail", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Joseph Martinez", "email": "james.martin@example.com", "phone": "+1-948-142-8177"}, {"type": "technical", "name": "James Williams", "email": "elizabeth.martinez@fake.tech", "phone": "+1-585-403-1131"}]}, "subscription": {"plan": "custom", "startDate": "2023-12-25", "renewalDate": "2025-12-25", "amount": 49041.83, "currency": "USD", "services": [{"id": "svc-526", "name": "Analytics", "quantity": 5006, "unit": "GB", "unitPrice": 128.23}, {"id": "svc-279", "name": "Implementation", "quantity": 50, "unit": "package", "unitPrice": 1275.83}]}}, {"id": "rec-00146", "createdAt": "2021-08-16T19:48:56Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27019655", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "finance", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "John Taylor", "email": "william.robinson@fake.tech", "phone": "+1-390-657-4963"}, {"type": "technical", "name": "William Taylor", "email": "thomas.johnson@example.com", "phone": "+1-765-263-9393"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-28", "renewalDate": "2022-10-28", "amount": 36990.24, "currency": "AUD", "services": [{"id": "svc-863", "name": "Database", "quantity": 1977, "unit": "TB", "unitPrice": 338.79}, {"id": "svc-137", "name": "Maintenance", "quantity": 69, "unit": "package", "unitPrice": 77.67}]}}, {"id": "rec-00147", "createdAt": "2024-02-27T20:20:03Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96651407", "name": "Acme Corp", "segment": "startup", "industry": "education", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Mary White", "email": "james.brown@sample.io", "phone": "+1-716-222-9465"}, {"type": "technical", "name": "Mary Miller", "email": "richard.harris@sample.io", "phone": "+1-900-826-8960"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-12-23", "renewalDate": "2024-12-23", "amount": 31836.63, "currency": "USD", "services": [{"id": "svc-523", "name": "Compute Instances", "quantity": 3330, "unit": "GB", "unitPrice": 438.18}, {"id": "svc-197", "name": "Consulting", "quantity": 59, "unit": "package", "unitPrice": 1499.47}]}}, {"id": "rec-00148", "createdAt": "2020-02-02T19:13:08Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-56009702", "name": "Globex", "segment": "startup", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Karen White", "email": "karen.martin@mock.co", "phone": "+1-312-377-7522"}, {"type": "technical", "name": "David Garcia", "email": "susan.garcia@mock.co", "phone": "+1-686-987-4828"}]}, "subscription": {"plan": "professional", "startDate": "2021-08-04", "renewalDate": "2024-08-04", "amount": 14341.24, "currency": "AUD", "services": [{"id": "svc-430", "name": "Compute Instances", "quantity": 4444, "unit": "license", "unitPrice": 345.71}, {"id": "svc-322", "name": "Training", "quantity": 66, "unit": "package", "unitPrice": 650.8}]}}, {"id": "rec-00149", "createdAt": "2024-10-06T18:54:59Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13483158", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Patricia Anderson", "email": "jessica.moore@sample.io", "phone": "+1-205-730-7978"}, {"type": "technical", "name": "Sarah Wilson", "email": "joseph.anderson@sample.io", "phone": "+1-918-107-4823"}]}, "subscription": {"plan": "professional", "startDate": "2021-03-05", "renewalDate": "2023-03-05", "amount": 17107.14, "currency": "EUR", "services": [{"id": "svc-162", "name": "Compute Instances", "quantity": 8663, "unit": "TB", "unitPrice": 17.21}, {"id": "svc-530", "name": "Support Plan", "quantity": 84, "unit": "session", "unitPrice": 68.6}]}}, {"id": "rec-00150", "createdAt": "2025-04-09T13:57:28Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-81498774", "name": "Acme Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jessica Thompson", "email": "patricia.taylor@test.org", "phone": "+1-703-887-8313"}, {"type": "technical", "name": "David Harris", "email": "joseph.thompson@test.org", "phone": "+1-385-569-7686"}]}, "subscription": {"plan": "professional", "startDate": "2020-04-16", "renewalDate": "2022-04-16", "amount": 10046.24, "currency": "EUR", "services": [{"id": "svc-625", "name": "Analytics", "quantity": 2775, "unit": "instance", "unitPrice": 292.86}, {"id": "svc-521", "name": "Implementation", "quantity": 6, "unit": "session", "unitPrice": 242.65}]}}, {"id": "rec-00151", "createdAt": "2022-06-12T18:33:33Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-24366631", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Patricia Martinez", "email": "william.davis@demo.net", "phone": "+1-913-898-2532"}, {"type": "technical", "name": "Karen Moore", "email": "sarah.williams@example.com", "phone": "+1-586-624-3019"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-09", "renewalDate": "2026-11-09", "amount": 49015.99, "currency": "USD", "services": [{"id": "svc-363", "name": "Analytics", "quantity": 6190, "unit": "instance", "unitPrice": 368.77}, {"id": "svc-226", "name": "Consulting", "quantity": 10, "unit": "subscription", "unitPrice": 1221.36}]}}, {"id": "rec-00152", "createdAt": "2020-10-28T17:12:42Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-22957568", "name": "Soylent Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "William Martinez", "email": "michael.williams@demo.net", "phone": "+1-311-408-4091"}, {"type": "technical", "name": "David Martinez", "email": "elizabeth.martinez@fake.tech", "phone": "+1-489-795-9220"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-17", "renewalDate": "2025-03-17", "amount": 7484.43, "currency": "GBP", "services": [{"id": "svc-986", "name": "Database", "quantity": 2174, "unit": "user", "unitPrice": 333.92}, {"id": "svc-373", "name": "Implementation", "quantity": 46, "unit": "unit", "unitPrice": 1805.03}]}}, {"id": "rec-00153", "createdAt": "2022-05-19T02:46:38Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-26246084", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "education", "yearFounded": 1950, "contacts": [{"type": "primary", "name": "James Garcia", "email": "robert.williams@fake.tech", "phone": "+1-426-207-8872"}, {"type": "technical", "name": "Richard Jackson", "email": "david.brown@test.org", "phone": "+1-426-361-9771"}]}, "subscription": {"plan": "professional", "startDate": "2023-04-16", "renewalDate": "2026-04-16", "amount": 10462.22, "currency": "USD", "services": [{"id": "svc-149", "name": "Cloud Storage", "quantity": 7043, "unit": "TB", "unitPrice": 43.57}, {"id": "svc-901", "name": "Maintenance", "quantity": 93, "unit": "session", "unitPrice": 1547.68}]}}, {"id": "rec-00154", "createdAt": "2024-12-05T13:08:36Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-91019029", "name": "Umbrella Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "richard.martin@mock.co", "phone": "+1-658-651-2497"}, {"type": "technical", "name": "Michael Garcia", "email": "joseph.martin@demo.net", "phone": "+1-436-536-8725"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-25", "renewalDate": "2023-06-25", "amount": 34399.34, "currency": "CAD", "services": [{"id": "svc-440", "name": "Security", "quantity": 5399, "unit": "GB", "unitPrice": 112.61}, {"id": "svc-110", "name": "Maintenance", "quantity": 96, "unit": "package", "unitPrice": 1306.65}]}}, {"id": "rec-00155", "createdAt": "2025-03-02T14:29:36Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-13574815", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Sarah Moore", "email": "karen.jackson@sample.io", "phone": "+1-576-566-9746"}, {"type": "technical", "name": "Elizabeth Miller", "email": "richard.garcia@sample.io", "phone": "+1-212-469-2103"}]}, "subscription": {"plan": "basic", "startDate": "2020-06-18", "renewalDate": "2021-06-18", "amount": 34109.42, "currency": "AUD", "services": [{"id": "svc-753", "name": "Security", "quantity": 5164, "unit": "license", "unitPrice": 223.32}, {"id": "svc-206", "name": "Consulting", "quantity": 97, "unit": "hour", "unitPrice": 1672.31}]}}, {"id": "rec-00156", "createdAt": "2025-11-18T04:14:03Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-45112748", "name": "Weyland-Yutani", "segment": "small-business", "industry": "retail", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Karen Williams", "email": "elizabeth.martinez@demo.net", "phone": "+1-926-591-6881"}, {"type": "technical", "name": "Thomas Thomas", "email": "robert.robinson@test.org", "phone": "+1-249-736-9012"}]}, "subscription": {"plan": "custom", "startDate": "2024-01-05", "renewalDate": "2027-01-05", "amount": 9276.83, "currency": "AUD", "services": [{"id": "svc-713", "name": "Security", "quantity": 7740, "unit": "TB", "unitPrice": 59.41}, {"id": "svc-218", "name": "Maintenance", "quantity": 97, "unit": "hour", "unitPrice": 1806.55}]}}, {"id": "rec-00157", "createdAt": "2025-07-22T22:28:03Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-55328919", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "education", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "robert.garcia@fake.tech", "phone": "+1-202-633-3705"}, {"type": "technical", "name": "Patricia Thomas", "email": "susan.robinson@fake.tech", "phone": "+1-751-826-3888"}]}, "subscription": {"plan": "custom", "startDate": "2020-08-10", "renewalDate": "2021-08-10", "amount": 48350.88, "currency": "USD", "services": [{"id": "svc-598", "name": "Security", "quantity": 4457, "unit": "user", "unitPrice": 494.09}, {"id": "svc-110", "name": "Support Plan", "quantity": 33, "unit": "subscription", "unitPrice": 782.01}]}}, {"id": "rec-00158", "createdAt": "2025-04-09T06:57:51Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-75802257", "name": "Soylent Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "patricia.davis@test.org", "phone": "+1-688-626-6926"}, {"type": "technical", "name": "David Moore", "email": "patricia.wilson@test.org", "phone": "+1-622-713-6885"}]}, "subscription": {"plan": "free", "startDate": "2024-07-03", "renewalDate": "2027-07-03", "amount": 3365.47, "currency": "AUD", "services": [{"id": "svc-713", "name": "Analytics", "quantity": 9252, "unit": "instance", "unitPrice": 350.74}, {"id": "svc-300", "name": "Training", "quantity": 43, "unit": "hour", "unitPrice": 156.8}]}}, {"id": "rec-00159", "createdAt": "2025-06-04T17:18:50Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-23493198", "name": "Aperture Science", "segment": "mid-market", "industry": "finance", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "John Smith", "email": "elizabeth.anderson@sample.io", "phone": "+1-492-888-1614"}, {"type": "technical", "name": "Robert Martin", "email": "john.taylor@fake.tech", "phone": "+1-596-522-7409"}]}, "subscription": {"plan": "custom", "startDate": "2022-04-09", "renewalDate": "2024-04-09", "amount": 11927.23, "currency": "GBP", "services": [{"id": "svc-729", "name": "Security", "quantity": 6578, "unit": "license", "unitPrice": 198.56}, {"id": "svc-241", "name": "Maintenance", "quantity": 73, "unit": "subscription", "unitPrice": 1788.76}]}}, {"id": "rec-00160", "createdAt": "2020-02-04T21:14:42Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-72622088", "name": "Massive Dynamic", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Nancy Williams", "email": "robert.miller@fake.tech", "phone": "+1-242-447-9713"}, {"type": "technical", "name": "David Miller", "email": "elizabeth.smith@mock.co", "phone": "+1-419-230-7052"}]}, "subscription": {"plan": "professional", "startDate": "2024-07-15", "renewalDate": "2025-07-15", "amount": 35118.12, "currency": "AUD", "services": [{"id": "svc-110", "name": "Analytics", "quantity": 9056, "unit": "TB", "unitPrice": 19.43}, {"id": "svc-608", "name": "Maintenance", "quantity": 72, "unit": "session", "unitPrice": 994.86}]}}, {"id": "rec-00161", "createdAt": "2021-10-24T17:53:30Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97440395", "name": "Weyland-Yutani", "segment": "small-business", "industry": "education", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "james.martin@test.org", "phone": "+1-242-394-4063"}, {"type": "technical", "name": "Joseph Wilson", "email": "charles.johnson@mock.co", "phone": "+1-435-538-2912"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-01", "renewalDate": "2021-02-01", "amount": 10798.82, "currency": "CAD", "services": [{"id": "svc-263", "name": "Security", "quantity": 5195, "unit": "GB", "unitPrice": 70.82}, {"id": "svc-735", "name": "Maintenance", "quantity": 52, "unit": "session", "unitPrice": 41.38}]}}, {"id": "rec-00162", "createdAt": "2023-05-02T10:21:42Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-54031326", "name": "Stark Industries", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "william.thomas@mock.co", "phone": "+1-480-310-9452"}, {"type": "technical", "name": "Robert Anderson", "email": "karen.anderson@test.org", "phone": "+1-460-440-1798"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-13", "renewalDate": "2023-04-13", "amount": 15471.31, "currency": "GBP", "services": [{"id": "svc-602", "name": "Database", "quantity": 5510, "unit": "TB", "unitPrice": 287.01}, {"id": "svc-614", "name": "Maintenance", "quantity": 26, "unit": "subscription", "unitPrice": 1444.19}]}}, {"id": "rec-00163", "createdAt": "2021-01-21T04:32:38Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-61241286", "name": "Globex", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "sarah.robinson@test.org", "phone": "+1-200-913-2357"}, {"type": "technical", "name": "John Anderson", "email": "jennifer.taylor@sample.io", "phone": "+1-977-823-5291"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-21", "renewalDate": "2021-02-21", "amount": 34860.89, "currency": "GBP", "services": [{"id": "svc-856", "name": "Compute Instances", "quantity": 7076, "unit": "license", "unitPrice": 151.33}, {"id": "svc-919", "name": "Implementation", "quantity": 7, "unit": "hour", "unitPrice": 1510.15}]}}, {"id": "rec-00164", "createdAt": "2021-02-01T11:52:21Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-14629806", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Linda White", "email": "james.thomas@example.com", "phone": "+1-210-561-8372"}, {"type": "technical", "name": "Susan Anderson", "email": "joseph.miller@mock.co", "phone": "+1-924-202-8028"}]}, "subscription": {"plan": "free", "startDate": "2020-04-22", "renewalDate": "2021-04-22", "amount": 16021.33, "currency": "AUD", "services": [{"id": "svc-206", "name": "Compute Instances", "quantity": 4342, "unit": "TB", "unitPrice": 22.67}, {"id": "svc-831", "name": "Implementation", "quantity": 18, "unit": "unit", "unitPrice": 1135.46}]}}, {"id": "rec-00165", "createdAt": "2022-11-04T02:10:05Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-13308463", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "James Moore", "email": "james.williams@fake.tech", "phone": "+1-220-222-7952"}, {"type": "technical", "name": "John Brown", "email": "mary.martinez@mock.co", "phone": "+1-484-824-3919"}]}, "subscription": {"plan": "basic", "startDate": "2023-02-20", "renewalDate": "2026-02-20", "amount": 17299.65, "currency": "CAD", "services": [{"id": "svc-633", "name": "Cloud Storage", "quantity": 175, "unit": "TB", "unitPrice": 91.54}, {"id": "svc-767", "name": "Training", "quantity": 98, "unit": "session", "unitPrice": 1134.51}]}}, {"id": "rec-00166", "createdAt": "2020-10-13T20:23:41Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-32848728", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Linda Martinez", "email": "richard.thompson@fake.tech", "phone": "+1-829-358-3172"}, {"type": "technical", "name": "David Jones", "email": "james.brown@mock.co", "phone": "+1-869-499-5171"}]}, "subscription": {"plan": "free", "startDate": "2022-03-08", "renewalDate": "2023-03-08", "amount": 1486.25, "currency": "CAD", "services": [{"id": "svc-890", "name": "Analytics", "quantity": 9838, "unit": "GB", "unitPrice": 465.71}, {"id": "svc-341", "name": "Support Plan", "quantity": 33, "unit": "hour", "unitPrice": 1677.78}]}}, {"id": "rec-00167", "createdAt": "2020-03-04T22:53:23Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-27213713", "name": "Weyland-Yutani", "segment": "startup", "industry": "manufacturing", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Jessica Martin", "email": "elizabeth.thompson@example.com", "phone": "+1-314-953-6480"}, {"type": "technical", "name": "Sarah Wilson", "email": "thomas.taylor@sample.io", "phone": "+1-485-506-6520"}]}, "subscription": {"plan": "professional", "startDate": "2023-10-26", "renewalDate": "2026-10-26", "amount": 34394.53, "currency": "AUD", "services": [{"id": "svc-879", "name": "Cloud Storage", "quantity": 7573, "unit": "license", "unitPrice": 254.45}, {"id": "svc-884", "name": "Support Plan", "quantity": 91, "unit": "hour", "unitPrice": 1550.73}]}}, {"id": "rec-00168", "createdAt": "2024-06-16T01:15:50Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97836551", "name": "Virtucon", "segment": "startup", "industry": "finance", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Susan Wilson", "email": "jessica.miller@fake.tech", "phone": "+1-564-313-8900"}, {"type": "technical", "name": "Mary Williams", "email": "michael.harris@mock.co", "phone": "+1-730-550-1509"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-12", "renewalDate": "2023-12-12", "amount": 5284.51, "currency": "CAD", "services": [{"id": "svc-636", "name": "Database", "quantity": 5406, "unit": "user", "unitPrice": 423.02}, {"id": "svc-625", "name": "Support Plan", "quantity": 63, "unit": "subscription", "unitPrice": 1479.47}]}}, {"id": "rec-00169", "createdAt": "2021-08-24T18:44:13Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-79685586", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "charles.robinson@demo.net", "phone": "+1-782-698-3254"}, {"type": "technical", "name": "Karen Jones", "email": "john.jackson@example.com", "phone": "+1-658-336-3714"}]}, "subscription": {"plan": "basic", "startDate": "2024-03-11", "renewalDate": "2026-03-11", "amount": 17957.97, "currency": "EUR", "services": [{"id": "svc-777", "name": "Cloud Storage", "quantity": 9023, "unit": "user", "unitPrice": 33.32}, {"id": "svc-826", "name": "Maintenance", "quantity": 70, "unit": "subscription", "unitPrice": 1407.64}]}}, {"id": "rec-00170", "createdAt": "2022-07-05T21:55:21Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-79061853", "name": "Stark Industries", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Patricia Johnson", "email": "william.jackson@test.org", "phone": "+1-538-940-9356"}, {"type": "technical", "name": "Robert Robinson", "email": "jessica.brown@fake.tech", "phone": "+1-858-380-6340"}]}, "subscription": {"plan": "basic", "startDate": "2024-04-28", "renewalDate": "2027-04-28", "amount": 19790.0, "currency": "USD", "services": [{"id": "svc-634", "name": "Database", "quantity": 4921, "unit": "user", "unitPrice": 215.08}, {"id": "svc-999", "name": "Training", "quantity": 13, "unit": "unit", "unitPrice": 951.16}]}}, {"id": "rec-00171", "createdAt": "2025-11-23T22:34:27Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-91213360", "name": "Virtucon", "segment": "startup", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "sarah.moore@demo.net", "phone": "+1-834-605-7504"}, {"type": "technical", "name": "Jessica Thomas", "email": "richard.garcia@mock.co", "phone": "+1-703-220-2939"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-22", "renewalDate": "2025-01-22", "amount": 16856.49, "currency": "USD", "services": [{"id": "svc-538", "name": "Database", "quantity": 6172, "unit": "license", "unitPrice": 189.73}, {"id": "svc-757", "name": "Maintenance", "quantity": 42, "unit": "subscription", "unitPrice": 1410.96}]}}, {"id": "rec-00172", "createdAt": "2023-03-09T06:06:09Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97161134", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Thomas Harris", "email": "jennifer.johnson@example.com", "phone": "+1-523-137-3903"}, {"type": "technical", "name": "Patricia Harris", "email": "jessica.garcia@sample.io", "phone": "+1-393-931-1808"}]}, "subscription": {"plan": "free", "startDate": "2022-12-10", "renewalDate": "2023-12-10", "amount": 42058.23, "currency": "AUD", "services": [{"id": "svc-230", "name": "Compute Instances", "quantity": 3908, "unit": "instance", "unitPrice": 406.95}, {"id": "svc-217", "name": "Support Plan", "quantity": 77, "unit": "package", "unitPrice": 68.99}]}}, {"id": "rec-00173", "createdAt": "2021-02-05T07:07:28Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-31436289", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Richard Miller", "email": "elizabeth.jackson@mock.co", "phone": "+1-420-413-9595"}, {"type": "technical", "name": "Robert Davis", "email": "linda.thomas@mock.co", "phone": "+1-551-316-6337"}]}, "subscription": {"plan": "free", "startDate": "2022-02-15", "renewalDate": "2024-02-15", "amount": 29538.58, "currency": "EUR", "services": [{"id": "svc-862", "name": "Compute Instances", "quantity": 9531, "unit": "GB", "unitPrice": 361.39}, {"id": "svc-814", "name": "Implementation", "quantity": 39, "unit": "hour", "unitPrice": 1197.25}]}}, {"id": "rec-00174", "createdAt": "2024-03-06T17:14:56Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-75011023", "name": "Oscorp", "segment": "small-business", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Mary Wilson", "email": "john.jones@fake.tech", "phone": "+1-937-352-8092"}, {"type": "technical", "name": "David Garcia", "email": "elizabeth.brown@mock.co", "phone": "+1-345-755-9807"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-03", "renewalDate": "2025-06-03", "amount": 49507.0, "currency": "EUR", "services": [{"id": "svc-485", "name": "Cloud Storage", "quantity": 4745, "unit": "GB", "unitPrice": 456.47}, {"id": "svc-468", "name": "Training", "quantity": 70, "unit": "hour", "unitPrice": 1906.64}]}}, {"id": "rec-00175", "createdAt": "2022-08-06T11:56:10Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-46091947", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "technology", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "nancy.white@mock.co", "phone": "+1-308-994-9556"}, {"type": "technical", "name": "John Jones", "email": "mary.martinez@sample.io", "phone": "+1-474-858-7336"}]}, "subscription": {"plan": "free", "startDate": "2020-02-26", "renewalDate": "2022-02-26", "amount": 46479.44, "currency": "AUD", "services": [{"id": "svc-918", "name": "Database", "quantity": 3216, "unit": "GB", "unitPrice": 369.92}, {"id": "svc-721", "name": "Implementation", "quantity": 11, "unit": "package", "unitPrice": 414.09}]}}, {"id": "rec-00176", "createdAt": "2024-01-13T23:54:48Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-69083530", "name": "Umbrella Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "John Miller", "email": "susan.harris@example.com", "phone": "+1-461-811-8780"}, {"type": "technical", "name": "Susan Taylor", "email": "patricia.anderson@example.com", "phone": "+1-389-654-1083"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-28", "renewalDate": "2023-06-28", "amount": 17633.03, "currency": "CAD", "services": [{"id": "svc-990", "name": "Database", "quantity": 7848, "unit": "GB", "unitPrice": 330.47}, {"id": "svc-366", "name": "Maintenance", "quantity": 84, "unit": "unit", "unitPrice": 210.03}]}}, {"id": "rec-00177", "createdAt": "2025-08-25T08:24:53Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-27250306", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Jessica Jackson", "email": "michael.jackson@test.org", "phone": "+1-898-431-9359"}, {"type": "technical", "name": "Charles Williams", "email": "mary.miller@fake.tech", "phone": "+1-659-857-8054"}]}, "subscription": {"plan": "custom", "startDate": "2024-07-22", "renewalDate": "2026-07-22", "amount": 12707.16, "currency": "GBP", "services": [{"id": "svc-424", "name": "Database", "quantity": 5288, "unit": "GB", "unitPrice": 283.01}, {"id": "svc-999", "name": "Maintenance", "quantity": 22, "unit": "package", "unitPrice": 1359.68}]}}, {"id": "rec-00178", "createdAt": "2024-06-24T17:10:10Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95590826", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "susan.garcia@fake.tech", "phone": "+1-313-739-2942"}, {"type": "technical", "name": "Patricia Johnson", "email": "jessica.smith@sample.io", "phone": "+1-340-318-2893"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-12", "renewalDate": "2023-06-12", "amount": 21770.87, "currency": "CAD", "services": [{"id": "svc-220", "name": "Security", "quantity": 5093, "unit": "user", "unitPrice": 234.1}, {"id": "svc-525", "name": "Consulting", "quantity": 68, "unit": "session", "unitPrice": 1361.08}]}}, {"id": "rec-00179", "createdAt": "2022-11-04T15:41:36Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-31742725", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "joseph.wilson@test.org", "phone": "+1-617-824-2709"}, {"type": "technical", "name": "Nancy Moore", "email": "james.wilson@test.org", "phone": "+1-818-940-5075"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-19", "renewalDate": "2024-01-19", "amount": 448.69, "currency": "CAD", "services": [{"id": "svc-254", "name": "Compute Instances", "quantity": 680, "unit": "instance", "unitPrice": 490.39}, {"id": "svc-862", "name": "Maintenance", "quantity": 52, "unit": "session", "unitPrice": 321.28}]}}, {"id": "rec-00180", "createdAt": "2021-04-05T10:17:38Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-63017073", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "sarah.anderson@test.org", "phone": "+1-882-268-9404"}, {"type": "technical", "name": "Sarah Jones", "email": "elizabeth.garcia@demo.net", "phone": "+1-446-997-5569"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-24", "renewalDate": "2026-01-24", "amount": 41507.56, "currency": "CAD", "services": [{"id": "svc-991", "name": "Cloud Storage", "quantity": 4795, "unit": "instance", "unitPrice": 379.62}, {"id": "svc-620", "name": "Support Plan", "quantity": 31, "unit": "hour", "unitPrice": 356.32}]}}, {"id": "rec-00181", "createdAt": "2022-06-16T13:05:20Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-85750094", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "William Williams", "email": "charles.thomas@fake.tech", "phone": "+1-672-232-6362"}, {"type": "technical", "name": "Jessica Jones", "email": "thomas.jackson@mock.co", "phone": "+1-587-534-7427"}]}, "subscription": {"plan": "free", "startDate": "2020-06-20", "renewalDate": "2021-06-20", "amount": 17032.64, "currency": "GBP", "services": [{"id": "svc-665", "name": "Database", "quantity": 9598, "unit": "instance", "unitPrice": 418.37}, {"id": "svc-658", "name": "Maintenance", "quantity": 37, "unit": "unit", "unitPrice": 1808.89}]}}, {"id": "rec-00182", "createdAt": "2024-08-06T19:55:04Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99298628", "name": "Acme Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "William Thompson", "email": "james.garcia@mock.co", "phone": "+1-685-856-3741"}, {"type": "technical", "name": "Mary Jackson", "email": "jennifer.wilson@fake.tech", "phone": "+1-507-852-8181"}]}, "subscription": {"plan": "custom", "startDate": "2020-05-22", "renewalDate": "2022-05-22", "amount": 34541.11, "currency": "CAD", "services": [{"id": "svc-848", "name": "Database", "quantity": 6686, "unit": "license", "unitPrice": 77.08}, {"id": "svc-284", "name": "Training", "quantity": 30, "unit": "subscription", "unitPrice": 87.58}]}}, {"id": "rec-00183", "createdAt": "2023-11-08T16:02:56Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-98568086", "name": "Globex", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "sarah.taylor@mock.co", "phone": "+1-493-736-6081"}, {"type": "technical", "name": "Michael Jones", "email": "william.moore@sample.io", "phone": "+1-976-370-2763"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-12-11", "renewalDate": "2023-12-11", "amount": 19934.36, "currency": "AUD", "services": [{"id": "svc-581", "name": "Database", "quantity": 1944, "unit": "license", "unitPrice": 2.44}, {"id": "svc-396", "name": "Maintenance", "quantity": 18, "unit": "subscription", "unitPrice": 1106.93}]}}, {"id": "rec-00184", "createdAt": "2020-08-22T07:22:01Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27296755", "name": "Oscorp", "segment": "small-business", "industry": "retail", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Davis", "email": "patricia.jones@demo.net", "phone": "+1-686-983-5708"}, {"type": "technical", "name": "John Anderson", "email": "linda.anderson@demo.net", "phone": "+1-733-190-4535"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-03-18", "renewalDate": "2024-03-18", "amount": 45310.03, "currency": "AUD", "services": [{"id": "svc-946", "name": "Compute Instances", "quantity": 8720, "unit": "instance", "unitPrice": 150.36}, {"id": "svc-548", "name": "Maintenance", "quantity": 39, "unit": "session", "unitPrice": 322.08}]}}, {"id": "rec-00185", "createdAt": "2020-01-04T02:04:21Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17402977", "name": "Massive Dynamic", "segment": "enterprise", "industry": "education", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Nancy Brown", "email": "robert.white@fake.tech", "phone": "+1-269-642-3521"}, {"type": "technical", "name": "Nancy Martin", "email": "nancy.thomas@example.com", "phone": "+1-890-358-2599"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-12-01", "renewalDate": "2023-12-01", "amount": 30267.58, "currency": "AUD", "services": [{"id": "svc-693", "name": "Database", "quantity": 5234, "unit": "TB", "unitPrice": 408.23}, {"id": "svc-836", "name": "Training", "quantity": 67, "unit": "package", "unitPrice": 1889.07}]}}, {"id": "rec-00186", "createdAt": "2020-03-27T22:44:44Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-94929131", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "robert.davis@sample.io", "phone": "+1-849-593-5292"}, {"type": "technical", "name": "Joseph Wilson", "email": "james.miller@test.org", "phone": "+1-842-550-4693"}]}, "subscription": {"plan": "custom", "startDate": "2024-02-05", "renewalDate": "2026-02-05", "amount": 36385.23, "currency": "USD", "services": [{"id": "svc-195", "name": "Analytics", "quantity": 358, "unit": "license", "unitPrice": 210.94}, {"id": "svc-557", "name": "Training", "quantity": 46, "unit": "subscription", "unitPrice": 1173.43}]}}, {"id": "rec-00187", "createdAt": "2020-05-13T01:05:46Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-70679895", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "William Brown", "email": "william.robinson@test.org", "phone": "+1-369-388-3277"}, {"type": "technical", "name": "Karen Harris", "email": "david.davis@example.com", "phone": "+1-420-719-9037"}]}, "subscription": {"plan": "basic", "startDate": "2020-05-06", "renewalDate": "2021-05-06", "amount": 3326.87, "currency": "USD", "services": [{"id": "svc-663", "name": "Compute Instances", "quantity": 6948, "unit": "user", "unitPrice": 469.19}, {"id": "svc-625", "name": "Training", "quantity": 51, "unit": "subscription", "unitPrice": 1632.48}]}}, {"id": "rec-00188", "createdAt": "2025-09-18T14:01:29Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-89103602", "name": "Umbrella Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Joseph Thomas", "email": "david.anderson@demo.net", "phone": "+1-864-810-5500"}, {"type": "technical", "name": "Patricia Thompson", "email": "linda.jackson@fake.tech", "phone": "+1-510-974-4727"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-22", "renewalDate": "2023-12-22", "amount": 18771.96, "currency": "USD", "services": [{"id": "svc-178", "name": "Cloud Storage", "quantity": 4633, "unit": "TB", "unitPrice": 66.05}, {"id": "svc-140", "name": "Training", "quantity": 76, "unit": "package", "unitPrice": 62.47}]}}, {"id": "rec-00189", "createdAt": "2025-06-15T08:11:12Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-87642089", "name": "Globex", "segment": "small-business", "industry": "healthcare", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "Nancy Taylor", "email": "elizabeth.brown@demo.net", "phone": "+1-936-543-8854"}, {"type": "technical", "name": "Jennifer Williams", "email": "william.johnson@sample.io", "phone": "+1-202-438-5110"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-10", "renewalDate": "2027-04-10", "amount": 4399.47, "currency": "CAD", "services": [{"id": "svc-287", "name": "Database", "quantity": 5979, "unit": "TB", "unitPrice": 56.48}, {"id": "svc-365", "name": "Support Plan", "quantity": 35, "unit": "hour", "unitPrice": 1602.12}]}}, {"id": "rec-00190", "createdAt": "2025-03-10T13:22:58Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-57990368", "name": "Initech", "segment": "mid-market", "industry": "retail", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Mary Thomas", "email": "richard.taylor@test.org", "phone": "+1-291-812-1207"}, {"type": "technical", "name": "Elizabeth Smith", "email": "karen.white@demo.net", "phone": "+1-475-814-3207"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-26", "renewalDate": "2021-12-26", "amount": 15113.84, "currency": "GBP", "services": [{"id": "svc-154", "name": "Security", "quantity": 7207, "unit": "TB", "unitPrice": 206.12}, {"id": "svc-535", "name": "Training", "quantity": 4, "unit": "subscription", "unitPrice": 1409.63}]}}, {"id": "rec-00191", "createdAt": "2021-01-22T01:28:03Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66717265", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "retail", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "nancy.jones@example.com", "phone": "+1-433-322-6286"}, {"type": "technical", "name": "William Thomas", "email": "david.miller@sample.io", "phone": "+1-982-921-4218"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-05-22", "renewalDate": "2024-05-22", "amount": 41866.96, "currency": "USD", "services": [{"id": "svc-131", "name": "Database", "quantity": 7150, "unit": "GB", "unitPrice": 165.35}, {"id": "svc-506", "name": "Consulting", "quantity": 27, "unit": "package", "unitPrice": 291.01}]}}, {"id": "rec-00192", "createdAt": "2023-08-25T21:45:18Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-43067057", "name": "LexCorp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Sarah Martinez", "email": "john.jackson@test.org", "phone": "+1-865-398-1413"}, {"type": "technical", "name": "Susan Garcia", "email": "susan.johnson@mock.co", "phone": "+1-979-479-5922"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-06", "renewalDate": "2022-01-06", "amount": 42883.63, "currency": "GBP", "services": [{"id": "svc-270", "name": "Database", "quantity": 8991, "unit": "GB", "unitPrice": 293.99}, {"id": "svc-662", "name": "Consulting", "quantity": 30, "unit": "package", "unitPrice": 1358.03}]}}, {"id": "rec-00193", "createdAt": "2022-02-14T20:55:56Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-45559921", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Patricia Robinson", "email": "karen.anderson@mock.co", "phone": "+1-806-235-3792"}, {"type": "technical", "name": "Sarah Williams", "email": "elizabeth.moore@fake.tech", "phone": "+1-641-758-7514"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-26", "renewalDate": "2023-10-26", "amount": 33101.51, "currency": "USD", "services": [{"id": "svc-237", "name": "Database", "quantity": 2712, "unit": "GB", "unitPrice": 492.85}, {"id": "svc-132", "name": "Consulting", "quantity": 32, "unit": "session", "unitPrice": 149.5}]}}, {"id": "rec-00194", "createdAt": "2024-11-17T20:48:27Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-62655536", "name": "Globex", "segment": "small-business", "industry": "technology", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Michael White", "email": "jennifer.moore@test.org", "phone": "+1-955-823-2285"}, {"type": "technical", "name": "Elizabeth Davis", "email": "joseph.harris@test.org", "phone": "+1-725-505-7780"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-01", "renewalDate": "2024-09-01", "amount": 7447.22, "currency": "AUD", "services": [{"id": "svc-857", "name": "Database", "quantity": 3909, "unit": "instance", "unitPrice": 149.54}, {"id": "svc-153", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 59.59}]}}, {"id": "rec-00195", "createdAt": "2023-05-21T19:23:50Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55900034", "name": "Initech", "segment": "small-business", "industry": "technology", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Nancy White", "email": "susan.davis@example.com", "phone": "+1-521-285-5450"}, {"type": "technical", "name": "Charles Johnson", "email": "patricia.garcia@test.org", "phone": "+1-588-806-2044"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-03", "renewalDate": "2025-07-03", "amount": 307.35, "currency": "EUR", "services": [{"id": "svc-875", "name": "Compute Instances", "quantity": 2586, "unit": "TB", "unitPrice": 327.63}, {"id": "svc-534", "name": "Training", "quantity": 39, "unit": "hour", "unitPrice": 1446.54}]}}, {"id": "rec-00196", "createdAt": "2020-01-21T14:06:19Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-62819270", "name": "Acme Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Mary Jackson", "email": "joseph.thompson@test.org", "phone": "+1-568-440-6448"}, {"type": "technical", "name": "Mary Moore", "email": "karen.brown@test.org", "phone": "+1-673-740-7099"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-10", "renewalDate": "2021-04-10", "amount": 47088.62, "currency": "USD", "services": [{"id": "svc-911", "name": "Compute Instances", "quantity": 9383, "unit": "GB", "unitPrice": 403.9}, {"id": "svc-759", "name": "Maintenance", "quantity": 94, "unit": "subscription", "unitPrice": 1727.34}]}}, {"id": "rec-00197", "createdAt": "2022-12-11T18:05:36Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-82501363", "name": "Acme Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Patricia Davis", "email": "susan.johnson@demo.net", "phone": "+1-728-287-3769"}, {"type": "technical", "name": "Patricia Wilson", "email": "elizabeth.anderson@fake.tech", "phone": "+1-617-741-6709"}]}, "subscription": {"plan": "free", "startDate": "2022-07-06", "renewalDate": "2023-07-06", "amount": 36143.62, "currency": "EUR", "services": [{"id": "svc-992", "name": "Compute Instances", "quantity": 6651, "unit": "TB", "unitPrice": 194.19}, {"id": "svc-565", "name": "Training", "quantity": 87, "unit": "hour", "unitPrice": 707.61}]}}, {"id": "rec-00198", "createdAt": "2022-03-03T21:40:13Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24218997", "name": "Oscorp", "segment": "mid-market", "industry": "education", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Susan Martinez", "email": "robert.williams@test.org", "phone": "+1-368-453-8261"}, {"type": "technical", "name": "Linda Jackson", "email": "richard.davis@demo.net", "phone": "+1-717-545-5831"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-04-13", "renewalDate": "2025-04-13", "amount": 45620.29, "currency": "GBP", "services": [{"id": "svc-796", "name": "Database", "quantity": 2994, "unit": "instance", "unitPrice": 163.95}, {"id": "svc-952", "name": "Maintenance", "quantity": 11, "unit": "hour", "unitPrice": 295.08}]}}, {"id": "rec-00199", "createdAt": "2025-02-14T06:39:45Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-87717389", "name": "Soylent Corp", "segment": "small-business", "industry": "retail", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "William Williams", "email": "john.johnson@example.com", "phone": "+1-859-108-4774"}, {"type": "technical", "name": "James Miller", "email": "michael.white@test.org", "phone": "+1-312-760-8553"}]}, "subscription": {"plan": "custom", "startDate": "2024-12-21", "renewalDate": "2026-12-21", "amount": 30546.08, "currency": "AUD", "services": [{"id": "svc-766", "name": "Compute Instances", "quantity": 8268, "unit": "license", "unitPrice": 264.31}, {"id": "svc-133", "name": "Implementation", "quantity": 43, "unit": "package", "unitPrice": 59.42}]}}, {"id": "rec-00200", "createdAt": "2025-07-03T00:13:55Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-22553946", "name": "Oscorp", "segment": "mid-market", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Charles Smith", "email": "patricia.white@mock.co", "phone": "+1-945-267-3732"}, {"type": "technical", "name": "Nancy Wilson", "email": "charles.garcia@sample.io", "phone": "+1-286-667-5345"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-26", "renewalDate": "2025-03-26", "amount": 28633.01, "currency": "USD", "services": [{"id": "svc-370", "name": "Database", "quantity": 3202, "unit": "GB", "unitPrice": 320.79}, {"id": "svc-387", "name": "Support Plan", "quantity": 14, "unit": "subscription", "unitPrice": 1837.82}]}}, {"id": "rec-00201", "createdAt": "2023-08-21T22:22:30Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-40823615", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Jones", "email": "karen.thompson@demo.net", "phone": "+1-719-926-8344"}, {"type": "technical", "name": "David Harris", "email": "robert.johnson@mock.co", "phone": "+1-319-973-3911"}]}, "subscription": {"plan": "basic", "startDate": "2022-10-18", "renewalDate": "2024-10-18", "amount": 1545.85, "currency": "AUD", "services": [{"id": "svc-100", "name": "Compute Instances", "quantity": 131, "unit": "GB", "unitPrice": 241.28}, {"id": "svc-313", "name": "Training", "quantity": 74, "unit": "session", "unitPrice": 1135.34}]}}, {"id": "rec-00202", "createdAt": "2024-05-05T01:21:21Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57755845", "name": "Stark Industries", "segment": "startup", "industry": "manufacturing", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Charles White", "email": "joseph.davis@sample.io", "phone": "+1-820-472-1919"}, {"type": "technical", "name": "Elizabeth Jones", "email": "linda.anderson@demo.net", "phone": "+1-898-967-8632"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-03", "renewalDate": "2025-09-03", "amount": 44016.76, "currency": "USD", "services": [{"id": "svc-251", "name": "Cloud Storage", "quantity": 6610, "unit": "GB", "unitPrice": 238.23}, {"id": "svc-562", "name": "Support Plan", "quantity": 65, "unit": "hour", "unitPrice": 957.79}]}}, {"id": "rec-00203", "createdAt": "2024-01-26T17:24:23Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-76638720", "name": "Umbrella Corp", "segment": "small-business", "industry": "education", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "jessica.brown@sample.io", "phone": "+1-313-598-3669"}, {"type": "technical", "name": "Richard Wilson", "email": "joseph.martin@test.org", "phone": "+1-721-146-2954"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-18", "renewalDate": "2024-09-18", "amount": 49404.43, "currency": "EUR", "services": [{"id": "svc-724", "name": "Analytics", "quantity": 9381, "unit": "instance", "unitPrice": 340.31}, {"id": "svc-317", "name": "Implementation", "quantity": 25, "unit": "session", "unitPrice": 1221.88}]}}, {"id": "rec-00204", "createdAt": "2025-03-23T21:17:18Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96663942", "name": "Oscorp", "segment": "startup", "industry": "education", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Patricia Thompson", "email": "james.martin@sample.io", "phone": "+1-787-361-6270"}, {"type": "technical", "name": "William Thomas", "email": "david.miller@demo.net", "phone": "+1-433-433-4665"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-06-10", "renewalDate": "2022-06-10", "amount": 2463.65, "currency": "AUD", "services": [{"id": "svc-645", "name": "Cloud Storage", "quantity": 5938, "unit": "GB", "unitPrice": 466.06}, {"id": "svc-798", "name": "Implementation", "quantity": 59, "unit": "unit", "unitPrice": 360.01}]}}, {"id": "rec-00205", "createdAt": "2021-07-25T18:06:21Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14451083", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Susan White", "email": "nancy.johnson@demo.net", "phone": "+1-602-544-6506"}, {"type": "technical", "name": "Patricia Jones", "email": "susan.johnson@fake.tech", "phone": "+1-301-534-9293"}]}, "subscription": {"plan": "free", "startDate": "2021-08-02", "renewalDate": "2024-08-02", "amount": 10903.96, "currency": "AUD", "services": [{"id": "svc-764", "name": "Cloud Storage", "quantity": 9440, "unit": "user", "unitPrice": 492.65}, {"id": "svc-741", "name": "Training", "quantity": 2, "unit": "hour", "unitPrice": 1838.44}]}}, {"id": "rec-00206", "createdAt": "2025-08-11T23:06:29Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-99434327", "name": "Wayne Enterprises", "segment": "startup", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Joseph Miller", "email": "linda.smith@example.com", "phone": "+1-703-568-7507"}, {"type": "technical", "name": "Jennifer Jackson", "email": "richard.jackson@fake.tech", "phone": "+1-296-539-1648"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-05", "renewalDate": "2025-01-05", "amount": 27768.0, "currency": "EUR", "services": [{"id": "svc-949", "name": "Compute Instances", "quantity": 2393, "unit": "instance", "unitPrice": 222.72}, {"id": "svc-104", "name": "Implementation", "quantity": 62, "unit": "hour", "unitPrice": 454.08}]}}, {"id": "rec-00207", "createdAt": "2024-04-18T15:21:09Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39575232", "name": "Wayne Enterprises", "segment": "small-business", "industry": "finance", "yearFounded": 1950, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "david.johnson@fake.tech", "phone": "+1-786-152-4537"}, {"type": "technical", "name": "Jessica Jackson", "email": "patricia.jones@test.org", "phone": "+1-224-268-2975"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-04-02", "renewalDate": "2025-04-02", "amount": 10155.78, "currency": "GBP", "services": [{"id": "svc-136", "name": "Database", "quantity": 9315, "unit": "TB", "unitPrice": 235.51}, {"id": "svc-311", "name": "Implementation", "quantity": 25, "unit": "session", "unitPrice": 819.54}]}}, {"id": "rec-00208", "createdAt": "2023-09-12T10:23:48Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-45680081", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "sarah.jackson@sample.io", "phone": "+1-764-362-9154"}, {"type": "technical", "name": "William Brown", "email": "james.johnson@sample.io", "phone": "+1-739-752-8433"}]}, "subscription": {"plan": "free", "startDate": "2022-12-26", "renewalDate": "2023-12-26", "amount": 22857.36, "currency": "USD", "services": [{"id": "svc-984", "name": "Cloud Storage", "quantity": 9470, "unit": "TB", "unitPrice": 193.48}, {"id": "svc-600", "name": "Consulting", "quantity": 14, "unit": "session", "unitPrice": 889.61}]}}, {"id": "rec-00209", "createdAt": "2021-11-26T13:06:23Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-94739634", "name": "Umbrella Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 2002, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "linda.harris@example.com", "phone": "+1-495-804-3125"}, {"type": "technical", "name": "James Williams", "email": "richard.moore@test.org", "phone": "+1-672-505-9283"}]}, "subscription": {"plan": "free", "startDate": "2021-08-27", "renewalDate": "2022-08-27", "amount": 47215.63, "currency": "AUD", "services": [{"id": "svc-900", "name": "Analytics", "quantity": 4189, "unit": "user", "unitPrice": 30.76}, {"id": "svc-856", "name": "Support Plan", "quantity": 49, "unit": "session", "unitPrice": 1568.77}]}}, {"id": "rec-00210", "createdAt": "2024-11-10T18:18:45Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20168024", "name": "Wayne Enterprises", "segment": "startup", "industry": "retail", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Jennifer Smith", "email": "karen.robinson@sample.io", "phone": "+1-894-875-2820"}, {"type": "technical", "name": "Karen Johnson", "email": "jennifer.moore@mock.co", "phone": "+1-295-299-8782"}]}, "subscription": {"plan": "free", "startDate": "2022-03-22", "renewalDate": "2025-03-22", "amount": 1995.71, "currency": "GBP", "services": [{"id": "svc-193", "name": "Compute Instances", "quantity": 2977, "unit": "TB", "unitPrice": 39.23}, {"id": "svc-972", "name": "Support Plan", "quantity": 39, "unit": "unit", "unitPrice": 683.27}]}}, {"id": "rec-00211", "createdAt": "2022-07-25T15:31:45Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-78422596", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "David Taylor", "email": "mary.taylor@demo.net", "phone": "+1-568-262-9536"}, {"type": "technical", "name": "James Jackson", "email": "sarah.jones@mock.co", "phone": "+1-960-840-2291"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-01", "renewalDate": "2026-01-01", "amount": 39114.86, "currency": "AUD", "services": [{"id": "svc-327", "name": "Database", "quantity": 3705, "unit": "GB", "unitPrice": 453.53}, {"id": "svc-670", "name": "Support Plan", "quantity": 92, "unit": "package", "unitPrice": 1416.04}]}}, {"id": "rec-00212", "createdAt": "2021-12-17T09:55:36Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-24032856", "name": "Acme Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "joseph.johnson@example.com", "phone": "+1-305-199-8853"}, {"type": "technical", "name": "David Taylor", "email": "david.martin@demo.net", "phone": "+1-526-289-1009"}]}, "subscription": {"plan": "free", "startDate": "2021-02-10", "renewalDate": "2023-02-10", "amount": 29822.16, "currency": "USD", "services": [{"id": "svc-870", "name": "Database", "quantity": 233, "unit": "user", "unitPrice": 23.82}, {"id": "svc-486", "name": "Support Plan", "quantity": 3, "unit": "package", "unitPrice": 1745.07}]}}, {"id": "rec-00213", "createdAt": "2020-05-23T14:11:43Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-91957325", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Jennifer Thompson", "email": "patricia.anderson@mock.co", "phone": "+1-332-523-3434"}, {"type": "technical", "name": "Richard White", "email": "jennifer.jackson@fake.tech", "phone": "+1-226-883-5812"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-10-09", "renewalDate": "2025-10-09", "amount": 49593.68, "currency": "USD", "services": [{"id": "svc-574", "name": "Analytics", "quantity": 8516, "unit": "TB", "unitPrice": 304.68}, {"id": "svc-222", "name": "Maintenance", "quantity": 89, "unit": "session", "unitPrice": 512.5}]}}, {"id": "rec-00214", "createdAt": "2024-03-10T15:33:44Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-20529637", "name": "Massive Dynamic", "segment": "mid-market", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "William Martin", "email": "john.martin@demo.net", "phone": "+1-842-597-1315"}, {"type": "technical", "name": "Mary Robinson", "email": "joseph.wilson@demo.net", "phone": "+1-260-171-2598"}]}, "subscription": {"plan": "professional", "startDate": "2024-09-24", "renewalDate": "2026-09-24", "amount": 9395.57, "currency": "GBP", "services": [{"id": "svc-801", "name": "Compute Instances", "quantity": 8264, "unit": "instance", "unitPrice": 402.91}, {"id": "svc-469", "name": "Consulting", "quantity": 45, "unit": "subscription", "unitPrice": 647.88}]}}, {"id": "rec-00215", "createdAt": "2022-07-20T10:12:44Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-93036616", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Robert Williams", "email": "jennifer.wilson@demo.net", "phone": "+1-337-232-7831"}, {"type": "technical", "name": "Jennifer Harris", "email": "david.smith@mock.co", "phone": "+1-658-417-7558"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-25", "renewalDate": "2025-01-25", "amount": 41646.8, "currency": "USD", "services": [{"id": "svc-502", "name": "Cloud Storage", "quantity": 6483, "unit": "GB", "unitPrice": 330.62}, {"id": "svc-572", "name": "Consulting", "quantity": 4, "unit": "unit", "unitPrice": 768.41}]}}, {"id": "rec-00216", "createdAt": "2020-10-02T19:40:06Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-72139653", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Susan Brown", "email": "susan.thompson@mock.co", "phone": "+1-797-751-3800"}, {"type": "technical", "name": "Richard Davis", "email": "linda.miller@fake.tech", "phone": "+1-622-963-5476"}]}, "subscription": {"plan": "free", "startDate": "2024-03-14", "renewalDate": "2026-03-14", "amount": 6249.01, "currency": "USD", "services": [{"id": "svc-394", "name": "Security", "quantity": 7870, "unit": "user", "unitPrice": 275.4}, {"id": "svc-561", "name": "Consulting", "quantity": 73, "unit": "subscription", "unitPrice": 1471.2}]}}, {"id": "rec-00217", "createdAt": "2025-02-10T02:52:58Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-56611950", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "retail", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Linda Wilson", "email": "john.thomas@mock.co", "phone": "+1-332-813-1461"}, {"type": "technical", "name": "Robert Smith", "email": "joseph.thomas@demo.net", "phone": "+1-471-306-6503"}]}, "subscription": {"plan": "basic", "startDate": "2023-05-13", "renewalDate": "2024-05-13", "amount": 30783.68, "currency": "CAD", "services": [{"id": "svc-137", "name": "Security", "quantity": 9466, "unit": "instance", "unitPrice": 303.23}, {"id": "svc-398", "name": "Maintenance", "quantity": 2, "unit": "unit", "unitPrice": 1376.93}]}}, {"id": "rec-00218", "createdAt": "2020-10-14T16:08:32Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-64230073", "name": "Aperture Science", "segment": "enterprise", "industry": "retail", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "linda.martin@example.com", "phone": "+1-296-266-5035"}, {"type": "technical", "name": "James Thompson", "email": "william.white@mock.co", "phone": "+1-756-768-3303"}]}, "subscription": {"plan": "free", "startDate": "2023-11-15", "renewalDate": "2026-11-15", "amount": 25043.71, "currency": "USD", "services": [{"id": "svc-654", "name": "Analytics", "quantity": 9736, "unit": "user", "unitPrice": 49.77}, {"id": "svc-255", "name": "Consulting", "quantity": 92, "unit": "session", "unitPrice": 1475.48}]}}, {"id": "rec-00219", "createdAt": "2021-10-07T21:25:12Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-84102481", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Karen Garcia", "email": "susan.taylor@demo.net", "phone": "+1-400-576-8279"}, {"type": "technical", "name": "Jennifer Smith", "email": "jessica.miller@fake.tech", "phone": "+1-601-649-9068"}]}, "subscription": {"plan": "custom", "startDate": "2023-09-04", "renewalDate": "2024-09-04", "amount": 8947.08, "currency": "CAD", "services": [{"id": "svc-164", "name": "Cloud Storage", "quantity": 1693, "unit": "license", "unitPrice": 58.87}, {"id": "svc-619", "name": "Implementation", "quantity": 73, "unit": "hour", "unitPrice": 528.35}]}}, {"id": "rec-00220", "createdAt": "2021-12-25T09:25:41Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-45882304", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "education", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "John Jones", "email": "james.taylor@example.com", "phone": "+1-920-169-9881"}, {"type": "technical", "name": "James Johnson", "email": "michael.garcia@mock.co", "phone": "+1-232-894-2794"}]}, "subscription": {"plan": "custom", "startDate": "2022-08-05", "renewalDate": "2023-08-05", "amount": 44743.01, "currency": "AUD", "services": [{"id": "svc-938", "name": "Analytics", "quantity": 5276, "unit": "user", "unitPrice": 39.08}, {"id": "svc-315", "name": "Implementation", "quantity": 2, "unit": "subscription", "unitPrice": 656.83}]}}, {"id": "rec-00221", "createdAt": "2022-05-25T19:37:20Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95580242", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "patricia.johnson@example.com", "phone": "+1-619-130-2294"}, {"type": "technical", "name": "Charles Smith", "email": "david.white@mock.co", "phone": "+1-937-917-2628"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-09-22", "renewalDate": "2021-09-22", "amount": 7970.73, "currency": "AUD", "services": [{"id": "svc-920", "name": "Cloud Storage", "quantity": 5793, "unit": "TB", "unitPrice": 481.72}, {"id": "svc-769", "name": "Support Plan", "quantity": 79, "unit": "unit", "unitPrice": 209.64}]}}, {"id": "rec-00222", "createdAt": "2022-12-22T09:23:55Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28856500", "name": "Massive Dynamic", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Jennifer Martinez", "email": "linda.williams@mock.co", "phone": "+1-714-599-9722"}, {"type": "technical", "name": "Robert Davis", "email": "thomas.robinson@test.org", "phone": "+1-327-762-5664"}]}, "subscription": {"plan": "free", "startDate": "2022-08-23", "renewalDate": "2025-08-23", "amount": 6127.75, "currency": "GBP", "services": [{"id": "svc-195", "name": "Compute Instances", "quantity": 4289, "unit": "instance", "unitPrice": 159.92}, {"id": "svc-380", "name": "Training", "quantity": 1, "unit": "package", "unitPrice": 922.26}]}}, {"id": "rec-00223", "createdAt": "2021-08-05T00:53:51Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-56005396", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Jessica Garcia", "email": "richard.anderson@sample.io", "phone": "+1-988-714-6218"}, {"type": "technical", "name": "Susan Smith", "email": "richard.garcia@mock.co", "phone": "+1-261-739-5541"}]}, "subscription": {"plan": "custom", "startDate": "2021-01-15", "renewalDate": "2024-01-15", "amount": 37040.68, "currency": "CAD", "services": [{"id": "svc-399", "name": "Security", "quantity": 6075, "unit": "TB", "unitPrice": 202.79}, {"id": "svc-275", "name": "Maintenance", "quantity": 70, "unit": "unit", "unitPrice": 378.96}]}}, {"id": "rec-00224", "createdAt": "2020-05-01T01:22:00Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17308812", "name": "Acme Corp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "William Thompson", "email": "john.thomas@fake.tech", "phone": "+1-221-572-4971"}, {"type": "technical", "name": "Elizabeth Smith", "email": "karen.williams@sample.io", "phone": "+1-278-899-1923"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-16", "renewalDate": "2023-10-16", "amount": 35265.12, "currency": "USD", "services": [{"id": "svc-267", "name": "Cloud Storage", "quantity": 1015, "unit": "TB", "unitPrice": 68.63}, {"id": "svc-333", "name": "Implementation", "quantity": 42, "unit": "session", "unitPrice": 1852.56}]}}, {"id": "rec-00225", "createdAt": "2021-08-08T19:28:39Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-11847285", "name": "Aperture Science", "segment": "small-business", "industry": "healthcare", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "joseph.wilson@sample.io", "phone": "+1-254-727-5008"}, {"type": "technical", "name": "David Martinez", "email": "john.thompson@example.com", "phone": "+1-616-165-2167"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-05-19", "renewalDate": "2022-05-19", "amount": 29966.81, "currency": "USD", "services": [{"id": "svc-318", "name": "Cloud Storage", "quantity": 510, "unit": "GB", "unitPrice": 55.66}, {"id": "svc-635", "name": "Support Plan", "quantity": 43, "unit": "hour", "unitPrice": 727.15}]}}, {"id": "rec-00226", "createdAt": "2020-01-20T19:20:37Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-35734502", "name": "Virtucon", "segment": "small-business", "industry": "retail", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Joseph Miller", "email": "patricia.anderson@test.org", "phone": "+1-900-271-1230"}, {"type": "technical", "name": "Thomas Jones", "email": "elizabeth.garcia@example.com", "phone": "+1-361-579-3993"}]}, "subscription": {"plan": "basic", "startDate": "2021-10-18", "renewalDate": "2023-10-18", "amount": 21114.76, "currency": "USD", "services": [{"id": "svc-196", "name": "Compute Instances", "quantity": 6905, "unit": "instance", "unitPrice": 226.38}, {"id": "svc-411", "name": "Training", "quantity": 39, "unit": "unit", "unitPrice": 407.3}]}}, {"id": "rec-00227", "createdAt": "2025-02-27T03:24:01Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-16312577", "name": "Umbrella Corp", "segment": "startup", "industry": "education", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "John White", "email": "sarah.harris@fake.tech", "phone": "+1-709-205-4253"}, {"type": "technical", "name": "James Jones", "email": "john.martinez@fake.tech", "phone": "+1-934-282-5071"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-13", "renewalDate": "2022-06-13", "amount": 13330.95, "currency": "USD", "services": [{"id": "svc-561", "name": "Security", "quantity": 9583, "unit": "GB", "unitPrice": 465.57}, {"id": "svc-602", "name": "Consulting", "quantity": 8, "unit": "unit", "unitPrice": 1934.64}]}}, {"id": "rec-00228", "createdAt": "2024-01-08T21:43:13Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66803784", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Susan Jackson", "email": "joseph.brown@example.com", "phone": "+1-206-655-8776"}, {"type": "technical", "name": "James Robinson", "email": "william.robinson@test.org", "phone": "+1-654-329-9371"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-12", "renewalDate": "2027-01-12", "amount": 45694.23, "currency": "USD", "services": [{"id": "svc-840", "name": "Analytics", "quantity": 835, "unit": "user", "unitPrice": 112.48}, {"id": "svc-218", "name": "Support Plan", "quantity": 64, "unit": "package", "unitPrice": 116.29}]}}, {"id": "rec-00229", "createdAt": "2023-08-12T15:55:18Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-51839983", "name": "Umbrella Corp", "segment": "small-business", "industry": "technology", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Susan Robinson", "email": "robert.smith@sample.io", "phone": "+1-830-797-2945"}, {"type": "technical", "name": "Sarah Davis", "email": "jennifer.martinez@mock.co", "phone": "+1-562-884-1099"}]}, "subscription": {"plan": "custom", "startDate": "2022-12-25", "renewalDate": "2023-12-25", "amount": 21571.12, "currency": "GBP", "services": [{"id": "svc-580", "name": "Cloud Storage", "quantity": 5272, "unit": "user", "unitPrice": 350.88}, {"id": "svc-732", "name": "Training", "quantity": 9, "unit": "hour", "unitPrice": 1797.04}]}}, {"id": "rec-00230", "createdAt": "2022-04-11T09:06:38Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-93341935", "name": "Acme Corp", "segment": "enterprise", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Patricia Thompson", "email": "susan.harris@fake.tech", "phone": "+1-344-612-9732"}, {"type": "technical", "name": "Thomas Garcia", "email": "joseph.martin@demo.net", "phone": "+1-772-865-2935"}]}, "subscription": {"plan": "professional", "startDate": "2023-08-17", "renewalDate": "2024-08-17", "amount": 31798.52, "currency": "EUR", "services": [{"id": "svc-626", "name": "Cloud Storage", "quantity": 4357, "unit": "user", "unitPrice": 284.17}, {"id": "svc-725", "name": "Consulting", "quantity": 80, "unit": "subscription", "unitPrice": 315.94}]}}, {"id": "rec-00231", "createdAt": "2020-11-12T19:01:28Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-85367501", "name": "Acme Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "nancy.martin@mock.co", "phone": "+1-454-654-8257"}, {"type": "technical", "name": "William Johnson", "email": "patricia.garcia@mock.co", "phone": "+1-567-547-5420"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-01", "renewalDate": "2023-03-01", "amount": 39954.71, "currency": "GBP", "services": [{"id": "svc-125", "name": "Database", "quantity": 680, "unit": "TB", "unitPrice": 100.65}, {"id": "svc-336", "name": "Maintenance", "quantity": 54, "unit": "unit", "unitPrice": 677.2}]}}, {"id": "rec-00232", "createdAt": "2021-05-16T10:25:32Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-86825857", "name": "Umbrella Corp", "segment": "startup", "industry": "finance", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "David Williams", "email": "jennifer.thomas@demo.net", "phone": "+1-484-161-1357"}, {"type": "technical", "name": "Karen Brown", "email": "david.thompson@mock.co", "phone": "+1-482-218-8814"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-18", "renewalDate": "2021-04-18", "amount": 35914.95, "currency": "GBP", "services": [{"id": "svc-278", "name": "Cloud Storage", "quantity": 2886, "unit": "GB", "unitPrice": 335.17}, {"id": "svc-315", "name": "Training", "quantity": 82, "unit": "package", "unitPrice": 1533.67}]}}, {"id": "rec-00233", "createdAt": "2021-04-27T01:28:57Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-14172153", "name": "Stark Industries", "segment": "enterprise", "industry": "finance", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Karen Jones", "email": "robert.martin@fake.tech", "phone": "+1-659-952-3770"}, {"type": "technical", "name": "Joseph Harris", "email": "thomas.williams@fake.tech", "phone": "+1-686-177-3954"}]}, "subscription": {"plan": "free", "startDate": "2020-01-23", "renewalDate": "2023-01-23", "amount": 19996.95, "currency": "GBP", "services": [{"id": "svc-775", "name": "Database", "quantity": 4913, "unit": "TB", "unitPrice": 212.98}, {"id": "svc-951", "name": "Support Plan", "quantity": 3, "unit": "subscription", "unitPrice": 827.88}]}}, {"id": "rec-00234", "createdAt": "2023-04-10T15:44:43Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-61400187", "name": "Massive Dynamic", "segment": "startup", "industry": "finance", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "David Anderson", "email": "joseph.anderson@mock.co", "phone": "+1-879-773-4360"}, {"type": "technical", "name": "James Taylor", "email": "robert.taylor@sample.io", "phone": "+1-736-173-2300"}]}, "subscription": {"plan": "free", "startDate": "2022-03-05", "renewalDate": "2023-03-05", "amount": 12954.86, "currency": "CAD", "services": [{"id": "svc-720", "name": "Analytics", "quantity": 7816, "unit": "instance", "unitPrice": 188.35}, {"id": "svc-357", "name": "Consulting", "quantity": 45, "unit": "package", "unitPrice": 937.02}]}}, {"id": "rec-00235", "createdAt": "2021-09-19T23:31:43Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-47553523", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Joseph Smith", "email": "michael.robinson@sample.io", "phone": "+1-333-816-5136"}, {"type": "technical", "name": "Jennifer Davis", "email": "susan.white@demo.net", "phone": "+1-850-648-8375"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-04", "renewalDate": "2025-11-04", "amount": 5205.85, "currency": "EUR", "services": [{"id": "svc-208", "name": "Analytics", "quantity": 3624, "unit": "instance", "unitPrice": 168.71}, {"id": "svc-333", "name": "Support Plan", "quantity": 66, "unit": "hour", "unitPrice": 1515.58}]}}, {"id": "rec-00236", "createdAt": "2022-12-12T06:24:08Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-74555336", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "technology", "yearFounded": 2021, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "susan.smith@demo.net", "phone": "+1-631-962-5887"}, {"type": "technical", "name": "Jessica Smith", "email": "sarah.davis@mock.co", "phone": "+1-993-497-4973"}]}, "subscription": {"plan": "custom", "startDate": "2023-06-11", "renewalDate": "2024-06-11", "amount": 39791.41, "currency": "USD", "services": [{"id": "svc-886", "name": "Security", "quantity": 5257, "unit": "instance", "unitPrice": 35.05}, {"id": "svc-307", "name": "Implementation", "quantity": 28, "unit": "subscription", "unitPrice": 141.61}]}}, {"id": "rec-00237", "createdAt": "2020-10-09T21:25:57Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65149697", "name": "LexCorp", "segment": "mid-market", "industry": "finance", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Jennifer Johnson", "email": "mary.thomas@fake.tech", "phone": "+1-764-604-1555"}, {"type": "technical", "name": "Susan Johnson", "email": "elizabeth.jackson@sample.io", "phone": "+1-925-838-4931"}]}, "subscription": {"plan": "basic", "startDate": "2021-12-27", "renewalDate": "2024-12-27", "amount": 18830.82, "currency": "CAD", "services": [{"id": "svc-118", "name": "Compute Instances", "quantity": 4047, "unit": "license", "unitPrice": 190.48}, {"id": "svc-548", "name": "Training", "quantity": 68, "unit": "hour", "unitPrice": 1763.9}]}}, {"id": "rec-00238", "createdAt": "2024-03-22T11:46:11Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-71307873", "name": "Virtucon", "segment": "startup", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "robert.williams@mock.co", "phone": "+1-436-311-4608"}, {"type": "technical", "name": "David Davis", "email": "linda.thompson@test.org", "phone": "+1-339-278-1550"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 1237.65, "currency": "USD", "services": [{"id": "svc-695", "name": "Cloud Storage", "quantity": 1434, "unit": "user", "unitPrice": 433.56}, {"id": "svc-825", "name": "Support Plan", "quantity": 41, "unit": "unit", "unitPrice": 1211.31}]}}, {"id": "rec-00239", "createdAt": "2022-09-22T08:01:33Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45437665", "name": "Aperture Science", "segment": "mid-market", "industry": "finance", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "jessica.white@sample.io", "phone": "+1-876-785-8471"}, {"type": "technical", "name": "James Jones", "email": "linda.thomas@mock.co", "phone": "+1-501-211-3565"}]}, "subscription": {"plan": "free", "startDate": "2020-06-11", "renewalDate": "2022-06-11", "amount": 23153.37, "currency": "AUD", "services": [{"id": "svc-895", "name": "Compute Instances", "quantity": 4809, "unit": "TB", "unitPrice": 496.72}, {"id": "svc-116", "name": "Maintenance", "quantity": 5, "unit": "session", "unitPrice": 413.64}]}}, {"id": "rec-00240", "createdAt": "2025-12-18T04:55:21Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["trial", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45506727", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Michael Miller", "email": "charles.harris@example.com", "phone": "+1-774-654-1161"}, {"type": "technical", "name": "Elizabeth Robinson", "email": "james.wilson@example.com", "phone": "+1-521-667-6631"}]}, "subscription": {"plan": "basic", "startDate": "2022-05-19", "renewalDate": "2023-05-19", "amount": 25091.48, "currency": "GBP", "services": [{"id": "svc-852", "name": "Cloud Storage", "quantity": 1963, "unit": "TB", "unitPrice": 87.99}, {"id": "svc-419", "name": "Training", "quantity": 88, "unit": "subscription", "unitPrice": 1167.0}]}}, {"id": "rec-00241", "createdAt": "2024-06-14T23:21:05Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54666364", "name": "Stark Industries", "segment": "small-business", "industry": "education", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Joseph Garcia", "email": "joseph.jones@test.org", "phone": "+1-739-880-9960"}, {"type": "technical", "name": "Charles Thompson", "email": "patricia.white@fake.tech", "phone": "+1-587-647-4574"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-14", "renewalDate": "2022-08-14", "amount": 35272.68, "currency": "GBP", "services": [{"id": "svc-742", "name": "Security", "quantity": 3278, "unit": "user", "unitPrice": 255.01}, {"id": "svc-403", "name": "Training", "quantity": 33, "unit": "session", "unitPrice": 580.57}]}}, {"id": "rec-00242", "createdAt": "2022-05-11T14:54:44Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66898106", "name": "Oscorp", "segment": "small-business", "industry": "technology", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "John Williams", "email": "david.anderson@demo.net", "phone": "+1-803-319-8906"}, {"type": "technical", "name": "Michael Brown", "email": "elizabeth.martinez@example.com", "phone": "+1-632-646-2488"}]}, "subscription": {"plan": "basic", "startDate": "2023-04-17", "renewalDate": "2026-04-17", "amount": 30743.54, "currency": "GBP", "services": [{"id": "svc-437", "name": "Cloud Storage", "quantity": 8813, "unit": "license", "unitPrice": 286.99}, {"id": "svc-536", "name": "Maintenance", "quantity": 99, "unit": "unit", "unitPrice": 1034.02}]}}, {"id": "rec-00243", "createdAt": "2025-04-23T02:03:24Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-19409690", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Richard Thompson", "email": "david.anderson@demo.net", "phone": "+1-800-318-4058"}, {"type": "technical", "name": "Joseph Jackson", "email": "michael.martin@example.com", "phone": "+1-640-616-7395"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-03", "renewalDate": "2025-12-03", "amount": 25300.41, "currency": "GBP", "services": [{"id": "svc-603", "name": "Cloud Storage", "quantity": 2021, "unit": "GB", "unitPrice": 92.98}, {"id": "svc-353", "name": "Consulting", "quantity": 73, "unit": "subscription", "unitPrice": 1546.97}]}}, {"id": "rec-00244", "createdAt": "2024-06-12T10:38:16Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20978002", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2014, "contacts": [{"type": "primary", "name": "Charles Moore", "email": "mary.thompson@example.com", "phone": "+1-401-134-6398"}, {"type": "technical", "name": "William Martin", "email": "jennifer.davis@demo.net", "phone": "+1-524-789-4110"}]}, "subscription": {"plan": "free", "startDate": "2024-10-15", "renewalDate": "2026-10-15", "amount": 17702.06, "currency": "GBP", "services": [{"id": "svc-601", "name": "Cloud Storage", "quantity": 74, "unit": "instance", "unitPrice": 444.64}, {"id": "svc-613", "name": "Maintenance", "quantity": 80, "unit": "unit", "unitPrice": 198.27}]}}, {"id": "rec-00245", "createdAt": "2022-11-17T15:57:22Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35799134", "name": "Massive Dynamic", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "sarah.martinez@demo.net", "phone": "+1-609-565-5926"}, {"type": "technical", "name": "Nancy Brown", "email": "james.wilson@fake.tech", "phone": "+1-561-754-1203"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-26", "renewalDate": "2025-12-26", "amount": 13855.9, "currency": "GBP", "services": [{"id": "svc-809", "name": "Cloud Storage", "quantity": 7990, "unit": "TB", "unitPrice": 31.27}, {"id": "svc-884", "name": "Consulting", "quantity": 76, "unit": "subscription", "unitPrice": 46.05}]}}, {"id": "rec-00246", "createdAt": "2021-08-11T00:23:40Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-48815817", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Elizabeth Taylor", "email": "karen.smith@example.com", "phone": "+1-833-294-4465"}, {"type": "technical", "name": "Susan Robinson", "email": "susan.harris@example.com", "phone": "+1-874-979-4695"}]}, "subscription": {"plan": "professional", "startDate": "2023-02-01", "renewalDate": "2025-02-01", "amount": 286.8, "currency": "AUD", "services": [{"id": "svc-955", "name": "Compute Instances", "quantity": 3364, "unit": "GB", "unitPrice": 157.94}, {"id": "svc-153", "name": "Consulting", "quantity": 17, "unit": "subscription", "unitPrice": 1941.93}]}}, {"id": "rec-00247", "createdAt": "2020-11-17T22:27:34Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-60310282", "name": "Soylent Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "karen.smith@sample.io", "phone": "+1-298-510-6735"}, {"type": "technical", "name": "William White", "email": "thomas.martin@sample.io", "phone": "+1-659-548-1947"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-07", "renewalDate": "2026-04-07", "amount": 28204.71, "currency": "AUD", "services": [{"id": "svc-790", "name": "Analytics", "quantity": 9737, "unit": "license", "unitPrice": 67.1}, {"id": "svc-875", "name": "Implementation", "quantity": 87, "unit": "subscription", "unitPrice": 56.15}]}}, {"id": "rec-00248", "createdAt": "2020-04-10T15:08:05Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-14268766", "name": "Aperture Science", "segment": "startup", "industry": "manufacturing", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Joseph Smith", "email": "patricia.thompson@test.org", "phone": "+1-707-650-4496"}, {"type": "technical", "name": "Richard Martin", "email": "michael.martinez@demo.net", "phone": "+1-290-959-9712"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-06", "renewalDate": "2026-03-06", "amount": 34079.93, "currency": "AUD", "services": [{"id": "svc-934", "name": "Cloud Storage", "quantity": 8771, "unit": "license", "unitPrice": 38.05}, {"id": "svc-985", "name": "Consulting", "quantity": 70, "unit": "unit", "unitPrice": 927.68}]}}, {"id": "rec-00249", "createdAt": "2021-05-13T17:47:31Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-84800473", "name": "Umbrella Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Joseph Moore", "email": "patricia.johnson@test.org", "phone": "+1-781-755-9205"}, {"type": "technical", "name": "Richard Harris", "email": "patricia.harris@example.com", "phone": "+1-408-859-5438"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-12-14", "renewalDate": "2026-12-14", "amount": 15525.13, "currency": "EUR", "services": [{"id": "svc-797", "name": "Database", "quantity": 7562, "unit": "license", "unitPrice": 362.27}, {"id": "svc-617", "name": "Support Plan", "quantity": 70, "unit": "session", "unitPrice": 811.84}]}}, {"id": "rec-00250", "createdAt": "2022-07-03T16:17:58Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-59422853", "name": "LexCorp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "nancy.white@mock.co", "phone": "+1-807-718-2265"}, {"type": "technical", "name": "Michael Wilson", "email": "jessica.garcia@fake.tech", "phone": "+1-957-413-9120"}]}, "subscription": {"plan": "basic", "startDate": "2021-08-12", "renewalDate": "2024-08-12", "amount": 26271.12, "currency": "USD", "services": [{"id": "svc-967", "name": "Cloud Storage", "quantity": 716, "unit": "instance", "unitPrice": 254.14}, {"id": "svc-793", "name": "Maintenance", "quantity": 22, "unit": "package", "unitPrice": 1704.03}]}}, {"id": "rec-00251", "createdAt": "2022-03-17T09:23:44Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99442552", "name": "LexCorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Robert Robinson", "email": "sarah.williams@sample.io", "phone": "+1-754-195-9431"}, {"type": "technical", "name": "Charles Harris", "email": "john.taylor@sample.io", "phone": "+1-528-225-3352"}]}, "subscription": {"plan": "free", "startDate": "2024-10-24", "renewalDate": "2026-10-24", "amount": 5518.72, "currency": "GBP", "services": [{"id": "svc-898", "name": "Security", "quantity": 1916, "unit": "TB", "unitPrice": 17.05}, {"id": "svc-775", "name": "Training", "quantity": 38, "unit": "session", "unitPrice": 1080.16}]}}, {"id": "rec-00252", "createdAt": "2025-07-09T20:49:49Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-37945866", "name": "Virtucon", "segment": "startup", "industry": "finance", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Michael White", "email": "david.garcia@sample.io", "phone": "+1-626-246-4365"}, {"type": "technical", "name": "Nancy Garcia", "email": "michael.moore@mock.co", "phone": "+1-878-613-3289"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-09", "renewalDate": "2025-07-09", "amount": 29090.49, "currency": "CAD", "services": [{"id": "svc-992", "name": "Cloud Storage", "quantity": 7202, "unit": "GB", "unitPrice": 76.67}, {"id": "svc-765", "name": "Maintenance", "quantity": 100, "unit": "hour", "unitPrice": 1802.76}]}}, {"id": "rec-00253", "createdAt": "2020-03-06T20:13:28Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-20353040", "name": "Globex", "segment": "startup", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Nancy Jones", "email": "john.miller@mock.co", "phone": "+1-945-220-6877"}, {"type": "technical", "name": "Joseph Martinez", "email": "jessica.robinson@demo.net", "phone": "+1-249-838-5967"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-24", "renewalDate": "2024-03-24", "amount": 12453.95, "currency": "AUD", "services": [{"id": "svc-318", "name": "Analytics", "quantity": 9898, "unit": "instance", "unitPrice": 357.23}, {"id": "svc-614", "name": "Support Plan", "quantity": 18, "unit": "package", "unitPrice": 278.19}]}}, {"id": "rec-00254", "createdAt": "2022-03-18T04:31:33Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-46359551", "name": "Soylent Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "william.martin@demo.net", "phone": "+1-422-839-6113"}, {"type": "technical", "name": "Sarah Davis", "email": "john.white@example.com", "phone": "+1-889-314-5546"}]}, "subscription": {"plan": "custom", "startDate": "2021-07-27", "renewalDate": "2022-07-27", "amount": 39908.18, "currency": "EUR", "services": [{"id": "svc-242", "name": "Compute Instances", "quantity": 2843, "unit": "TB", "unitPrice": 86.24}, {"id": "svc-198", "name": "Training", "quantity": 21, "unit": "session", "unitPrice": 781.74}]}}, {"id": "rec-00255", "createdAt": "2020-02-20T12:35:48Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-12619444", "name": "Soylent Corp", "segment": "startup", "industry": "technology", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "james.harris@demo.net", "phone": "+1-404-506-1600"}, {"type": "technical", "name": "Richard Moore", "email": "richard.davis@sample.io", "phone": "+1-994-330-8623"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-22", "renewalDate": "2024-03-22", "amount": 7860.64, "currency": "AUD", "services": [{"id": "svc-906", "name": "Analytics", "quantity": 6097, "unit": "license", "unitPrice": 114.55}, {"id": "svc-559", "name": "Maintenance", "quantity": 71, "unit": "package", "unitPrice": 1594.71}]}}, {"id": "rec-00256", "createdAt": "2023-08-12T10:22:09Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-44201508", "name": "Aperture Science", "segment": "small-business", "industry": "technology", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "james.davis@fake.tech", "phone": "+1-532-221-2059"}, {"type": "technical", "name": "Susan Taylor", "email": "john.brown@test.org", "phone": "+1-314-802-6779"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-10-07", "renewalDate": "2021-10-07", "amount": 5238.33, "currency": "CAD", "services": [{"id": "svc-121", "name": "Security", "quantity": 9795, "unit": "GB", "unitPrice": 132.81}, {"id": "svc-527", "name": "Consulting", "quantity": 15, "unit": "subscription", "unitPrice": 1692.68}]}}, {"id": "rec-00257", "createdAt": "2020-02-06T12:51:16Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-25792656", "name": "Globex", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Thomas Thompson", "email": "jennifer.jackson@demo.net", "phone": "+1-633-129-6571"}, {"type": "technical", "name": "Richard Brown", "email": "joseph.martin@fake.tech", "phone": "+1-836-613-3350"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-03-21", "renewalDate": "2021-03-21", "amount": 29025.75, "currency": "USD", "services": [{"id": "svc-434", "name": "Security", "quantity": 811, "unit": "GB", "unitPrice": 423.37}, {"id": "svc-625", "name": "Implementation", "quantity": 25, "unit": "subscription", "unitPrice": 1747.99}]}}, {"id": "rec-00258", "createdAt": "2025-06-03T12:24:25Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-73015538", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "finance", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "James Davis", "email": "jessica.wilson@sample.io", "phone": "+1-999-789-2333"}, {"type": "technical", "name": "Susan Smith", "email": "robert.smith@test.org", "phone": "+1-651-951-1611"}]}, "subscription": {"plan": "basic", "startDate": "2024-05-23", "renewalDate": "2025-05-23", "amount": 4533.27, "currency": "GBP", "services": [{"id": "svc-283", "name": "Database", "quantity": 8317, "unit": "license", "unitPrice": 143.85}, {"id": "svc-131", "name": "Consulting", "quantity": 28, "unit": "package", "unitPrice": 883.61}]}}, {"id": "rec-00259", "createdAt": "2021-10-15T07:48:37Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-95931794", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "linda.martin@example.com", "phone": "+1-249-144-4084"}, {"type": "technical", "name": "Elizabeth White", "email": "robert.martin@fake.tech", "phone": "+1-944-629-5697"}]}, "subscription": {"plan": "basic", "startDate": "2021-07-24", "renewalDate": "2022-07-24", "amount": 8178.64, "currency": "GBP", "services": [{"id": "svc-184", "name": "Analytics", "quantity": 3126, "unit": "TB", "unitPrice": 396.49}, {"id": "svc-518", "name": "Maintenance", "quantity": 66, "unit": "session", "unitPrice": 1401.68}]}}, {"id": "rec-00260", "createdAt": "2020-09-11T03:19:59Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17546077", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "Patricia White", "email": "james.thomas@demo.net", "phone": "+1-333-255-3743"}, {"type": "technical", "name": "Jennifer White", "email": "david.jackson@mock.co", "phone": "+1-988-100-5183"}]}, "subscription": {"plan": "free", "startDate": "2020-10-04", "renewalDate": "2023-10-04", "amount": 39658.24, "currency": "EUR", "services": [{"id": "svc-316", "name": "Cloud Storage", "quantity": 9867, "unit": "TB", "unitPrice": 47.06}, {"id": "svc-501", "name": "Support Plan", "quantity": 50, "unit": "unit", "unitPrice": 1340.48}]}}, {"id": "rec-00261", "createdAt": "2023-07-04T08:55:52Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-92182275", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Thomas Thompson", "email": "joseph.garcia@test.org", "phone": "+1-334-581-1692"}, {"type": "technical", "name": "John Robinson", "email": "michael.harris@mock.co", "phone": "+1-436-590-7711"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-07-06", "renewalDate": "2025-07-06", "amount": 49207.83, "currency": "AUD", "services": [{"id": "svc-637", "name": "Compute Instances", "quantity": 2098, "unit": "GB", "unitPrice": 200.93}, {"id": "svc-298", "name": "Consulting", "quantity": 14, "unit": "package", "unitPrice": 637.29}]}}, {"id": "rec-00262", "createdAt": "2024-03-02T14:26:55Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52233596", "name": "Wayne Enterprises", "segment": "startup", "industry": "manufacturing", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "joseph.anderson@sample.io", "phone": "+1-822-343-5031"}, {"type": "technical", "name": "William Miller", "email": "linda.jackson@test.org", "phone": "+1-488-480-4140"}]}, "subscription": {"plan": "professional", "startDate": "2023-12-17", "renewalDate": "2025-12-17", "amount": 38390.68, "currency": "AUD", "services": [{"id": "svc-286", "name": "Analytics", "quantity": 1596, "unit": "instance", "unitPrice": 349.3}, {"id": "svc-837", "name": "Support Plan", "quantity": 3, "unit": "session", "unitPrice": 1241.44}]}}, {"id": "rec-00263", "createdAt": "2020-09-02T15:55:51Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-58478850", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "robert.anderson@mock.co", "phone": "+1-350-754-3965"}, {"type": "technical", "name": "Richard Smith", "email": "robert.harris@example.com", "phone": "+1-980-545-8052"}]}, "subscription": {"plan": "basic", "startDate": "2020-01-14", "renewalDate": "2022-01-14", "amount": 20922.56, "currency": "USD", "services": [{"id": "svc-460", "name": "Database", "quantity": 4666, "unit": "instance", "unitPrice": 325.27}, {"id": "svc-753", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 1795.18}]}}, {"id": "rec-00264", "createdAt": "2022-06-06T16:11:24Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-85785605", "name": "Oscorp", "segment": "enterprise", "industry": "technology", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Charles Williams", "email": "jessica.moore@fake.tech", "phone": "+1-284-250-6095"}, {"type": "technical", "name": "Charles Martin", "email": "jennifer.moore@fake.tech", "phone": "+1-401-860-8280"}]}, "subscription": {"plan": "free", "startDate": "2024-11-17", "renewalDate": "2027-11-17", "amount": 22723.15, "currency": "GBP", "services": [{"id": "svc-644", "name": "Compute Instances", "quantity": 4043, "unit": "TB", "unitPrice": 32.29}, {"id": "svc-930", "name": "Implementation", "quantity": 63, "unit": "package", "unitPrice": 1553.47}]}}, {"id": "rec-00265", "createdAt": "2020-11-10T04:26:36Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-29126405", "name": "Globex", "segment": "startup", "industry": "technology", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Linda Garcia", "email": "william.anderson@demo.net", "phone": "+1-767-686-8283"}, {"type": "technical", "name": "Thomas Jones", "email": "elizabeth.miller@mock.co", "phone": "+1-361-523-3563"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-09", "renewalDate": "2023-07-09", "amount": 34701.39, "currency": "EUR", "services": [{"id": "svc-197", "name": "Cloud Storage", "quantity": 1136, "unit": "user", "unitPrice": 324.55}, {"id": "svc-693", "name": "Implementation", "quantity": 94, "unit": "unit", "unitPrice": 1845.39}]}}, {"id": "rec-00266", "createdAt": "2020-05-03T21:22:19Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82109695", "name": "Oscorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "Linda Smith", "email": "joseph.white@mock.co", "phone": "+1-860-607-4985"}, {"type": "technical", "name": "David Moore", "email": "james.johnson@mock.co", "phone": "+1-375-900-4451"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-09", "renewalDate": "2026-06-09", "amount": 43636.51, "currency": "AUD", "services": [{"id": "svc-697", "name": "Security", "quantity": 3006, "unit": "license", "unitPrice": 430.67}, {"id": "svc-161", "name": "Maintenance", "quantity": 90, "unit": "session", "unitPrice": 1702.08}]}}, {"id": "rec-00267", "createdAt": "2023-11-13T00:18:51Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-44625222", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "retail", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Richard Harris", "email": "richard.robinson@demo.net", "phone": "+1-392-134-6323"}, {"type": "technical", "name": "Karen Martinez", "email": "karen.smith@example.com", "phone": "+1-225-909-5777"}]}, "subscription": {"plan": "professional", "startDate": "2022-08-14", "renewalDate": "2024-08-14", "amount": 18608.92, "currency": "CAD", "services": [{"id": "svc-851", "name": "Security", "quantity": 885, "unit": "instance", "unitPrice": 397.41}, {"id": "svc-976", "name": "Training", "quantity": 10, "unit": "session", "unitPrice": 1729.76}]}}, {"id": "rec-00268", "createdAt": "2022-01-07T04:15:14Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-22564782", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 2002, "contacts": [{"type": "primary", "name": "Elizabeth Jones", "email": "patricia.jackson@mock.co", "phone": "+1-676-582-3467"}, {"type": "technical", "name": "John Brown", "email": "john.thomas@example.com", "phone": "+1-254-261-7073"}]}, "subscription": {"plan": "free", "startDate": "2023-08-01", "renewalDate": "2025-08-01", "amount": 1604.8, "currency": "GBP", "services": [{"id": "svc-709", "name": "Database", "quantity": 4018, "unit": "user", "unitPrice": 365.97}, {"id": "svc-650", "name": "Support Plan", "quantity": 92, "unit": "package", "unitPrice": 81.35}]}}, {"id": "rec-00269", "createdAt": "2025-11-17T16:14:03Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-26859447", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Jessica Jackson", "email": "william.harris@mock.co", "phone": "+1-572-256-9379"}, {"type": "technical", "name": "Robert White", "email": "linda.garcia@sample.io", "phone": "+1-523-809-8305"}]}, "subscription": {"plan": "professional", "startDate": "2020-11-22", "renewalDate": "2022-11-22", "amount": 48817.55, "currency": "CAD", "services": [{"id": "svc-458", "name": "Security", "quantity": 3455, "unit": "TB", "unitPrice": 259.82}, {"id": "svc-483", "name": "Training", "quantity": 12, "unit": "package", "unitPrice": 1218.88}]}}, {"id": "rec-00270", "createdAt": "2020-08-08T02:08:18Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-43617101", "name": "Weyland-Yutani", "segment": "small-business", "industry": "education", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jennifer Williams", "email": "richard.williams@example.com", "phone": "+1-218-566-8384"}, {"type": "technical", "name": "John White", "email": "elizabeth.wilson@mock.co", "phone": "+1-965-221-2386"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-05-03", "renewalDate": "2025-05-03", "amount": 14328.58, "currency": "CAD", "services": [{"id": "svc-544", "name": "Analytics", "quantity": 2957, "unit": "instance", "unitPrice": 125.94}, {"id": "svc-559", "name": "Support Plan", "quantity": 46, "unit": "unit", "unitPrice": 1211.33}]}}, {"id": "rec-00271", "createdAt": "2021-10-19T09:57:53Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-42341388", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Sarah Williams", "email": "jessica.jackson@fake.tech", "phone": "+1-966-672-7298"}, {"type": "technical", "name": "John White", "email": "patricia.thompson@sample.io", "phone": "+1-871-453-3756"}]}, "subscription": {"plan": "custom", "startDate": "2023-02-24", "renewalDate": "2025-02-24", "amount": 6985.99, "currency": "AUD", "services": [{"id": "svc-840", "name": "Security", "quantity": 447, "unit": "license", "unitPrice": 401.65}, {"id": "svc-354", "name": "Implementation", "quantity": 37, "unit": "package", "unitPrice": 404.85}]}}, {"id": "rec-00272", "createdAt": "2024-07-07T21:32:35Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-84784989", "name": "Cyberdyne Systems", "segment": "startup", "industry": "manufacturing", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Sarah Jones", "email": "william.martin@mock.co", "phone": "+1-464-798-4757"}, {"type": "technical", "name": "Susan Brown", "email": "michael.anderson@sample.io", "phone": "+1-341-622-8912"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-09-21", "renewalDate": "2026-09-21", "amount": 38409.14, "currency": "AUD", "services": [{"id": "svc-653", "name": "Analytics", "quantity": 4152, "unit": "instance", "unitPrice": 490.28}, {"id": "svc-116", "name": "Maintenance", "quantity": 78, "unit": "subscription", "unitPrice": 570.19}]}}, {"id": "rec-00273", "createdAt": "2021-10-04T17:46:58Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-73537924", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "karen.garcia@test.org", "phone": "+1-264-494-8617"}, {"type": "technical", "name": "Susan Robinson", "email": "david.garcia@sample.io", "phone": "+1-385-507-2949"}]}, "subscription": {"plan": "free", "startDate": "2021-09-13", "renewalDate": "2023-09-13", "amount": 42336.43, "currency": "USD", "services": [{"id": "svc-763", "name": "Analytics", "quantity": 59, "unit": "instance", "unitPrice": 23.78}, {"id": "svc-895", "name": "Training", "quantity": 3, "unit": "subscription", "unitPrice": 1470.56}]}}, {"id": "rec-00274", "createdAt": "2023-02-09T01:45:26Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-51660754", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "richard.wilson@mock.co", "phone": "+1-882-829-7917"}, {"type": "technical", "name": "Nancy Robinson", "email": "joseph.anderson@sample.io", "phone": "+1-389-892-2118"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-08-09", "renewalDate": "2026-08-09", "amount": 7698.94, "currency": "AUD", "services": [{"id": "svc-994", "name": "Compute Instances", "quantity": 4871, "unit": "instance", "unitPrice": 177.68}, {"id": "svc-365", "name": "Training", "quantity": 7, "unit": "subscription", "unitPrice": 71.0}]}}, {"id": "rec-00275", "createdAt": "2024-04-24T02:17:32Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-39966380", "name": "Soylent Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Nancy White", "email": "richard.martin@fake.tech", "phone": "+1-860-652-5759"}, {"type": "technical", "name": "William Robinson", "email": "karen.white@fake.tech", "phone": "+1-444-987-9271"}]}, "subscription": {"plan": "free", "startDate": "2023-10-11", "renewalDate": "2024-10-11", "amount": 22017.38, "currency": "EUR", "services": [{"id": "svc-715", "name": "Analytics", "quantity": 7914, "unit": "instance", "unitPrice": 321.46}, {"id": "svc-928", "name": "Maintenance", "quantity": 11, "unit": "hour", "unitPrice": 1570.13}]}}, {"id": "rec-00276", "createdAt": "2025-10-26T05:34:16Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-68996748", "name": "Acme Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Karen Martin", "email": "karen.garcia@demo.net", "phone": "+1-371-138-7314"}, {"type": "technical", "name": "Robert Robinson", "email": "karen.taylor@mock.co", "phone": "+1-761-864-6882"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-04", "renewalDate": "2026-05-04", "amount": 12087.45, "currency": "GBP", "services": [{"id": "svc-301", "name": "Database", "quantity": 6071, "unit": "TB", "unitPrice": 401.84}, {"id": "svc-287", "name": "Support Plan", "quantity": 60, "unit": "hour", "unitPrice": 1810.78}]}}, {"id": "rec-00277", "createdAt": "2021-02-09T00:03:55Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-98989986", "name": "Virtucon", "segment": "small-business", "industry": "finance", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "Joseph Davis", "email": "sarah.martinez@fake.tech", "phone": "+1-666-435-8103"}, {"type": "technical", "name": "Susan Robinson", "email": "james.johnson@example.com", "phone": "+1-928-717-2911"}]}, "subscription": {"plan": "free", "startDate": "2020-09-05", "renewalDate": "2021-09-05", "amount": 29977.82, "currency": "AUD", "services": [{"id": "svc-106", "name": "Security", "quantity": 2814, "unit": "user", "unitPrice": 101.09}, {"id": "svc-921", "name": "Maintenance", "quantity": 52, "unit": "subscription", "unitPrice": 77.11}]}}, {"id": "rec-00278", "createdAt": "2020-05-04T00:41:28Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-79793622", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Patricia Harris", "email": "richard.garcia@sample.io", "phone": "+1-609-295-4469"}, {"type": "technical", "name": "Michael Davis", "email": "william.taylor@sample.io", "phone": "+1-609-578-4139"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-09", "renewalDate": "2027-05-09", "amount": 33990.81, "currency": "USD", "services": [{"id": "svc-341", "name": "Compute Instances", "quantity": 956, "unit": "user", "unitPrice": 79.53}, {"id": "svc-830", "name": "Implementation", "quantity": 2, "unit": "subscription", "unitPrice": 1456.05}]}}, {"id": "rec-00279", "createdAt": "2022-09-07T14:19:53Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-88812548", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jessica Martinez", "email": "richard.martinez@mock.co", "phone": "+1-472-156-6792"}, {"type": "technical", "name": "James Thomas", "email": "michael.brown@example.com", "phone": "+1-654-150-6375"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-12-28", "renewalDate": "2026-12-28", "amount": 18913.44, "currency": "CAD", "services": [{"id": "svc-735", "name": "Cloud Storage", "quantity": 7796, "unit": "GB", "unitPrice": 341.23}, {"id": "svc-224", "name": "Training", "quantity": 62, "unit": "subscription", "unitPrice": 505.43}]}}, {"id": "rec-00280", "createdAt": "2022-01-19T03:51:22Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-11301734", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Charles Moore", "email": "susan.harris@mock.co", "phone": "+1-379-913-3006"}, {"type": "technical", "name": "Jessica Martinez", "email": "michael.jackson@test.org", "phone": "+1-827-597-9811"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-04-28", "renewalDate": "2024-04-28", "amount": 33256.45, "currency": "GBP", "services": [{"id": "svc-164", "name": "Database", "quantity": 6975, "unit": "user", "unitPrice": 128.53}, {"id": "svc-679", "name": "Implementation", "quantity": 81, "unit": "package", "unitPrice": 1212.03}]}}, {"id": "rec-00281", "createdAt": "2025-04-04T00:10:28Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80779311", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "nancy.white@mock.co", "phone": "+1-798-675-4877"}, {"type": "technical", "name": "Sarah Miller", "email": "richard.johnson@example.com", "phone": "+1-420-141-6517"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-08-19", "renewalDate": "2025-08-19", "amount": 27011.17, "currency": "AUD", "services": [{"id": "svc-849", "name": "Security", "quantity": 2781, "unit": "user", "unitPrice": 47.36}, {"id": "svc-113", "name": "Training", "quantity": 23, "unit": "hour", "unitPrice": 1087.97}]}}, {"id": "rec-00282", "createdAt": "2021-01-20T09:27:54Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-52231549", "name": "Oscorp", "segment": "startup", "industry": "finance", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Patricia Wilson", "email": "james.miller@fake.tech", "phone": "+1-373-150-1318"}, {"type": "technical", "name": "Robert Thomas", "email": "sarah.harris@test.org", "phone": "+1-998-737-9036"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-16", "renewalDate": "2025-03-16", "amount": 44175.28, "currency": "EUR", "services": [{"id": "svc-832", "name": "Cloud Storage", "quantity": 4803, "unit": "GB", "unitPrice": 226.35}, {"id": "svc-789", "name": "Implementation", "quantity": 33, "unit": "session", "unitPrice": 1535.78}]}}, {"id": "rec-00283", "createdAt": "2024-04-27T01:08:14Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-65955735", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "retail", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Michael Martin", "email": "joseph.taylor@test.org", "phone": "+1-769-315-6621"}, {"type": "technical", "name": "Charles Brown", "email": "nancy.wilson@mock.co", "phone": "+1-695-665-9187"}]}, "subscription": {"plan": "basic", "startDate": "2020-08-18", "renewalDate": "2022-08-18", "amount": 48469.68, "currency": "AUD", "services": [{"id": "svc-626", "name": "Security", "quantity": 8120, "unit": "instance", "unitPrice": 202.97}, {"id": "svc-977", "name": "Implementation", "quantity": 90, "unit": "package", "unitPrice": 203.41}]}}, {"id": "rec-00284", "createdAt": "2025-11-20T12:00:34Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-87734448", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Michael Martinez", "email": "james.garcia@fake.tech", "phone": "+1-702-532-9352"}, {"type": "technical", "name": "Joseph Moore", "email": "mary.robinson@sample.io", "phone": "+1-996-606-2477"}]}, "subscription": {"plan": "professional", "startDate": "2022-05-14", "renewalDate": "2025-05-14", "amount": 33007.19, "currency": "GBP", "services": [{"id": "svc-773", "name": "Analytics", "quantity": 1182, "unit": "instance", "unitPrice": 127.07}, {"id": "svc-660", "name": "Support Plan", "quantity": 25, "unit": "hour", "unitPrice": 1891.21}]}}, {"id": "rec-00285", "createdAt": "2022-06-27T03:29:52Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-81065010", "name": "Massive Dynamic", "segment": "enterprise", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "David Johnson", "email": "william.martinez@example.com", "phone": "+1-575-425-8062"}, {"type": "technical", "name": "Mary Martinez", "email": "linda.davis@sample.io", "phone": "+1-937-529-1962"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-23", "renewalDate": "2022-04-23", "amount": 40972.38, "currency": "CAD", "services": [{"id": "svc-195", "name": "Analytics", "quantity": 1584, "unit": "user", "unitPrice": 288.9}, {"id": "svc-559", "name": "Support Plan", "quantity": 79, "unit": "subscription", "unitPrice": 495.25}]}}, {"id": "rec-00286", "createdAt": "2022-08-13T13:18:16Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54836271", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Linda Brown", "email": "jennifer.jones@test.org", "phone": "+1-517-746-5257"}, {"type": "technical", "name": "Susan Martinez", "email": "susan.garcia@example.com", "phone": "+1-384-936-6074"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-03", "renewalDate": "2023-09-03", "amount": 10719.81, "currency": "EUR", "services": [{"id": "svc-263", "name": "Cloud Storage", "quantity": 1189, "unit": "user", "unitPrice": 244.2}, {"id": "svc-607", "name": "Support Plan", "quantity": 90, "unit": "subscription", "unitPrice": 982.45}]}}, {"id": "rec-00287", "createdAt": "2020-07-27T09:48:14Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-90940028", "name": "Massive Dynamic", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Robert Jackson", "email": "michael.thomas@fake.tech", "phone": "+1-429-526-1846"}, {"type": "technical", "name": "Patricia Jones", "email": "richard.garcia@test.org", "phone": "+1-370-677-6581"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-03-24", "renewalDate": "2026-03-24", "amount": 47879.88, "currency": "USD", "services": [{"id": "svc-862", "name": "Security", "quantity": 2961, "unit": "GB", "unitPrice": 111.36}, {"id": "svc-857", "name": "Training", "quantity": 73, "unit": "package", "unitPrice": 1411.14}]}}, {"id": "rec-00288", "createdAt": "2020-11-27T18:08:39Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52952495", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "david.taylor@sample.io", "phone": "+1-377-172-9293"}, {"type": "technical", "name": "Mary White", "email": "joseph.white@example.com", "phone": "+1-803-628-4388"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-22", "renewalDate": "2023-08-22", "amount": 22785.87, "currency": "AUD", "services": [{"id": "svc-372", "name": "Security", "quantity": 5789, "unit": "instance", "unitPrice": 135.4}, {"id": "svc-246", "name": "Training", "quantity": 55, "unit": "session", "unitPrice": 56.47}]}}, {"id": "rec-00289", "createdAt": "2024-04-28T15:19:36Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-94257559", "name": "LexCorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1972, "contacts": [{"type": "primary", "name": "Sarah Robinson", "email": "linda.jones@test.org", "phone": "+1-746-317-6071"}, {"type": "technical", "name": "Karen Moore", "email": "thomas.moore@test.org", "phone": "+1-258-637-1677"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-15", "renewalDate": "2025-11-15", "amount": 43457.63, "currency": "USD", "services": [{"id": "svc-344", "name": "Security", "quantity": 7197, "unit": "user", "unitPrice": 448.36}, {"id": "svc-900", "name": "Implementation", "quantity": 84, "unit": "subscription", "unitPrice": 472.26}]}}, {"id": "rec-00290", "createdAt": "2022-12-12T12:34:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-28746522", "name": "Oscorp", "segment": "small-business", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Linda Davis", "email": "robert.moore@fake.tech", "phone": "+1-644-404-2414"}, {"type": "technical", "name": "Charles Harris", "email": "linda.johnson@sample.io", "phone": "+1-374-951-3530"}]}, "subscription": {"plan": "professional", "startDate": "2022-04-25", "renewalDate": "2024-04-25", "amount": 27215.21, "currency": "CAD", "services": [{"id": "svc-579", "name": "Database", "quantity": 2123, "unit": "license", "unitPrice": 180.52}, {"id": "svc-784", "name": "Consulting", "quantity": 84, "unit": "subscription", "unitPrice": 1972.57}]}}, {"id": "rec-00291", "createdAt": "2022-01-15T15:59:45Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-69368656", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "elizabeth.robinson@demo.net", "phone": "+1-444-450-5782"}, {"type": "technical", "name": "Linda Jackson", "email": "joseph.williams@example.com", "phone": "+1-565-854-8266"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-01", "renewalDate": "2025-09-01", "amount": 22033.12, "currency": "USD", "services": [{"id": "svc-328", "name": "Security", "quantity": 9801, "unit": "instance", "unitPrice": 2.62}, {"id": "svc-913", "name": "Consulting", "quantity": 81, "unit": "hour", "unitPrice": 856.58}]}}, {"id": "rec-00292", "createdAt": "2023-11-16T19:57:59Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-92666217", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Michael Anderson", "email": "susan.brown@test.org", "phone": "+1-921-840-5827"}, {"type": "technical", "name": "Michael Taylor", "email": "robert.garcia@example.com", "phone": "+1-369-497-5544"}]}, "subscription": {"plan": "free", "startDate": "2024-01-19", "renewalDate": "2027-01-19", "amount": 40940.41, "currency": "AUD", "services": [{"id": "svc-386", "name": "Database", "quantity": 2498, "unit": "TB", "unitPrice": 161.62}, {"id": "svc-950", "name": "Support Plan", "quantity": 81, "unit": "session", "unitPrice": 1219.2}]}}, {"id": "rec-00293", "createdAt": "2021-09-27T18:42:20Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55422313", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Patricia Harris", "email": "michael.harris@demo.net", "phone": "+1-349-731-6449"}, {"type": "technical", "name": "Mary Wilson", "email": "patricia.jackson@example.com", "phone": "+1-339-146-9753"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-08", "renewalDate": "2023-12-08", "amount": 30825.14, "currency": "AUD", "services": [{"id": "svc-977", "name": "Analytics", "quantity": 348, "unit": "instance", "unitPrice": 461.93}, {"id": "svc-792", "name": "Support Plan", "quantity": 14, "unit": "session", "unitPrice": 1988.16}]}}, {"id": "rec-00294", "createdAt": "2023-02-02T21:12:24Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-50893438", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Thomas Anderson", "email": "sarah.robinson@demo.net", "phone": "+1-423-241-4640"}, {"type": "technical", "name": "William Martinez", "email": "richard.martin@test.org", "phone": "+1-359-860-1660"}]}, "subscription": {"plan": "free", "startDate": "2023-06-15", "renewalDate": "2026-06-15", "amount": 18156.75, "currency": "GBP", "services": [{"id": "svc-461", "name": "Compute Instances", "quantity": 4880, "unit": "user", "unitPrice": 99.01}, {"id": "svc-205", "name": "Consulting", "quantity": 78, "unit": "unit", "unitPrice": 825.8}]}}, {"id": "rec-00295", "createdAt": "2022-10-13T00:23:04Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-62274288", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "linda.harris@fake.tech", "phone": "+1-515-707-3752"}, {"type": "technical", "name": "Linda Smith", "email": "nancy.jones@demo.net", "phone": "+1-649-635-6329"}]}, "subscription": {"plan": "basic", "startDate": "2022-11-01", "renewalDate": "2023-11-01", "amount": 30292.65, "currency": "EUR", "services": [{"id": "svc-820", "name": "Database", "quantity": 8561, "unit": "GB", "unitPrice": 79.32}, {"id": "svc-520", "name": "Support Plan", "quantity": 49, "unit": "unit", "unitPrice": 1150.02}]}}, {"id": "rec-00296", "createdAt": "2020-01-15T18:50:52Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-26284704", "name": "Massive Dynamic", "segment": "startup", "industry": "finance", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Karen Jackson", "email": "elizabeth.wilson@sample.io", "phone": "+1-442-286-5123"}, {"type": "technical", "name": "Richard Thomas", "email": "karen.wilson@test.org", "phone": "+1-490-675-9618"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-20", "renewalDate": "2023-03-20", "amount": 32638.67, "currency": "CAD", "services": [{"id": "svc-490", "name": "Security", "quantity": 4808, "unit": "instance", "unitPrice": 134.61}, {"id": "svc-984", "name": "Implementation", "quantity": 48, "unit": "session", "unitPrice": 758.57}]}}, {"id": "rec-00297", "createdAt": "2024-09-27T11:57:28Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-81627759", "name": "Globex", "segment": "small-business", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "linda.harris@example.com", "phone": "+1-331-756-8519"}, {"type": "technical", "name": "Jennifer Anderson", "email": "robert.white@sample.io", "phone": "+1-788-454-8736"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-02-14", "renewalDate": "2025-02-14", "amount": 15449.33, "currency": "CAD", "services": [{"id": "svc-841", "name": "Compute Instances", "quantity": 5768, "unit": "license", "unitPrice": 299.45}, {"id": "svc-423", "name": "Maintenance", "quantity": 100, "unit": "hour", "unitPrice": 352.22}]}}, {"id": "rec-00298", "createdAt": "2022-08-12T09:19:11Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-16790729", "name": "Wayne Enterprises", "segment": "startup", "industry": "technology", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "richard.wilson@fake.tech", "phone": "+1-271-882-5831"}, {"type": "technical", "name": "Richard Harris", "email": "robert.wilson@fake.tech", "phone": "+1-484-605-4537"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-13", "renewalDate": "2026-11-13", "amount": 37270.58, "currency": "EUR", "services": [{"id": "svc-404", "name": "Database", "quantity": 3646, "unit": "license", "unitPrice": 175.72}, {"id": "svc-862", "name": "Support Plan", "quantity": 8, "unit": "session", "unitPrice": 902.33}]}}, {"id": "rec-00299", "createdAt": "2020-06-02T07:27:14Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-77070595", "name": "Virtucon", "segment": "enterprise", "industry": "finance", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "Elizabeth Davis", "email": "william.jones@test.org", "phone": "+1-558-828-7754"}, {"type": "technical", "name": "Joseph Brown", "email": "linda.jackson@mock.co", "phone": "+1-326-567-7335"}]}, "subscription": {"plan": "custom", "startDate": "2022-09-09", "renewalDate": "2023-09-09", "amount": 38856.57, "currency": "GBP", "services": [{"id": "svc-409", "name": "Compute Instances", "quantity": 4484, "unit": "license", "unitPrice": 232.89}, {"id": "svc-768", "name": "Maintenance", "quantity": 89, "unit": "hour", "unitPrice": 704.01}]}}, {"id": "rec-00300", "createdAt": "2024-02-10T10:11:52Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82617072", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "education", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Patricia Smith", "email": "mary.garcia@mock.co", "phone": "+1-652-408-3767"}, {"type": "technical", "name": "Charles Jackson", "email": "john.jones@demo.net", "phone": "+1-672-628-5929"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-18", "renewalDate": "2023-01-18", "amount": 36105.88, "currency": "AUD", "services": [{"id": "svc-893", "name": "Security", "quantity": 9912, "unit": "instance", "unitPrice": 433.32}, {"id": "svc-316", "name": "Consulting", "quantity": 38, "unit": "package", "unitPrice": 1810.35}]}}, {"id": "rec-00301", "createdAt": "2020-10-15T16:34:15Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-37940072", "name": "Weyland-Yutani", "segment": "startup", "industry": "finance", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Susan Miller", "email": "elizabeth.brown@sample.io", "phone": "+1-823-647-2206"}, {"type": "technical", "name": "Robert Miller", "email": "elizabeth.martinez@demo.net", "phone": "+1-514-901-3885"}]}, "subscription": {"plan": "basic", "startDate": "2023-11-03", "renewalDate": "2024-11-03", "amount": 29979.22, "currency": "USD", "services": [{"id": "svc-148", "name": "Analytics", "quantity": 8522, "unit": "user", "unitPrice": 126.53}, {"id": "svc-806", "name": "Consulting", "quantity": 5, "unit": "hour", "unitPrice": 414.94}]}}, {"id": "rec-00302", "createdAt": "2021-05-16T15:31:15Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24355254", "name": "Stark Industries", "segment": "mid-market", "industry": "education", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Charles Taylor", "email": "david.taylor@sample.io", "phone": "+1-778-568-3421"}, {"type": "technical", "name": "Robert Thompson", "email": "sarah.williams@test.org", "phone": "+1-651-955-3108"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-03-20", "renewalDate": "2021-03-20", "amount": 24000.93, "currency": "AUD", "services": [{"id": "svc-805", "name": "Database", "quantity": 3802, "unit": "user", "unitPrice": 384.73}, {"id": "svc-869", "name": "Maintenance", "quantity": 54, "unit": "hour", "unitPrice": 1283.34}]}}, {"id": "rec-00303", "createdAt": "2021-04-03T18:20:13Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-63988784", "name": "Soylent Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Richard Martinez", "email": "joseph.garcia@demo.net", "phone": "+1-211-628-9605"}, {"type": "technical", "name": "Susan Jackson", "email": "sarah.miller@example.com", "phone": "+1-477-550-9670"}]}, "subscription": {"plan": "free", "startDate": "2024-11-08", "renewalDate": "2027-11-08", "amount": 13807.62, "currency": "EUR", "services": [{"id": "svc-116", "name": "Database", "quantity": 6926, "unit": "user", "unitPrice": 377.97}, {"id": "svc-746", "name": "Training", "quantity": 1, "unit": "session", "unitPrice": 1386.89}]}}, {"id": "rec-00304", "createdAt": "2021-11-05T00:57:43Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-75604082", "name": "Initech", "segment": "small-business", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Richard Davis", "email": "robert.martin@example.com", "phone": "+1-485-466-5910"}, {"type": "technical", "name": "Charles Harris", "email": "robert.martin@test.org", "phone": "+1-204-208-2632"}]}, "subscription": {"plan": "professional", "startDate": "2024-09-13", "renewalDate": "2027-09-13", "amount": 11613.07, "currency": "CAD", "services": [{"id": "svc-603", "name": "Security", "quantity": 9073, "unit": "TB", "unitPrice": 89.97}, {"id": "svc-958", "name": "Consulting", "quantity": 4, "unit": "session", "unitPrice": 1437.98}]}}, {"id": "rec-00305", "createdAt": "2021-03-12T21:35:42Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-49019232", "name": "Soylent Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2021, "contacts": [{"type": "primary", "name": "Patricia Taylor", "email": "richard.jones@mock.co", "phone": "+1-508-937-5867"}, {"type": "technical", "name": "Linda Anderson", "email": "william.anderson@fake.tech", "phone": "+1-393-430-6861"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-11", "renewalDate": "2023-06-11", "amount": 16959.83, "currency": "GBP", "services": [{"id": "svc-120", "name": "Analytics", "quantity": 4662, "unit": "license", "unitPrice": 445.59}, {"id": "svc-893", "name": "Implementation", "quantity": 37, "unit": "session", "unitPrice": 1939.66}]}}, {"id": "rec-00306", "createdAt": "2022-02-16T05:53:10Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15970173", "name": "Stark Industries", "segment": "small-business", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Mary Brown", "email": "jessica.thomas@sample.io", "phone": "+1-313-694-7482"}, {"type": "technical", "name": "Charles Harris", "email": "elizabeth.williams@mock.co", "phone": "+1-779-390-9730"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-10-28", "renewalDate": "2025-10-28", "amount": 18531.18, "currency": "CAD", "services": [{"id": "svc-683", "name": "Cloud Storage", "quantity": 6498, "unit": "license", "unitPrice": 79.52}, {"id": "svc-762", "name": "Consulting", "quantity": 66, "unit": "unit", "unitPrice": 1697.83}]}}, {"id": "rec-00307", "createdAt": "2025-05-18T07:19:43Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76471088", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Karen Harris", "email": "susan.brown@mock.co", "phone": "+1-512-333-9080"}, {"type": "technical", "name": "John Thomas", "email": "sarah.williams@sample.io", "phone": "+1-873-746-6525"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-09-17", "renewalDate": "2026-09-17", "amount": 26111.93, "currency": "USD", "services": [{"id": "svc-330", "name": "Database", "quantity": 6174, "unit": "instance", "unitPrice": 147.93}, {"id": "svc-467", "name": "Consulting", "quantity": 60, "unit": "session", "unitPrice": 278.09}]}}, {"id": "rec-00308", "createdAt": "2023-06-28T09:30:22Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-25872398", "name": "Globex", "segment": "mid-market", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "David Jackson", "email": "michael.wilson@example.com", "phone": "+1-831-824-4977"}, {"type": "technical", "name": "David Brown", "email": "susan.martinez@demo.net", "phone": "+1-859-839-3923"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-09", "renewalDate": "2021-12-09", "amount": 11467.95, "currency": "CAD", "services": [{"id": "svc-373", "name": "Compute Instances", "quantity": 8991, "unit": "TB", "unitPrice": 422.9}, {"id": "svc-163", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 886.02}]}}, {"id": "rec-00309", "createdAt": "2021-02-18T01:56:26Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65301909", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "John Garcia", "email": "jessica.garcia@example.com", "phone": "+1-754-273-7224"}, {"type": "technical", "name": "Sarah Brown", "email": "joseph.miller@mock.co", "phone": "+1-830-234-1529"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-05", "renewalDate": "2023-03-05", "amount": 16021.3, "currency": "GBP", "services": [{"id": "svc-854", "name": "Security", "quantity": 1667, "unit": "license", "unitPrice": 293.21}, {"id": "svc-889", "name": "Consulting", "quantity": 13, "unit": "subscription", "unitPrice": 1981.15}]}}, {"id": "rec-00310", "createdAt": "2025-10-09T17:29:43Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-31824237", "name": "Oscorp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "joseph.martin@example.com", "phone": "+1-987-358-7482"}, {"type": "technical", "name": "Linda Moore", "email": "mary.jackson@demo.net", "phone": "+1-854-673-1920"}]}, "subscription": {"plan": "custom", "startDate": "2024-10-19", "renewalDate": "2026-10-19", "amount": 38139.4, "currency": "AUD", "services": [{"id": "svc-231", "name": "Compute Instances", "quantity": 7465, "unit": "TB", "unitPrice": 457.9}, {"id": "svc-455", "name": "Consulting", "quantity": 38, "unit": "package", "unitPrice": 391.92}]}}, {"id": "rec-00311", "createdAt": "2022-06-18T19:29:08Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-21530454", "name": "Virtucon", "segment": "enterprise", "industry": "retail", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Karen Smith", "email": "joseph.harris@sample.io", "phone": "+1-646-298-6645"}, {"type": "technical", "name": "Joseph Miller", "email": "patricia.miller@test.org", "phone": "+1-897-183-8782"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-10", "renewalDate": "2024-09-10", "amount": 41766.84, "currency": "AUD", "services": [{"id": "svc-223", "name": "Analytics", "quantity": 4447, "unit": "instance", "unitPrice": 287.15}, {"id": "svc-230", "name": "Implementation", "quantity": 74, "unit": "package", "unitPrice": 1739.46}]}}, {"id": "rec-00312", "createdAt": "2023-10-01T16:40:14Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-35642876", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Susan Anderson", "email": "charles.martin@sample.io", "phone": "+1-864-442-5290"}, {"type": "technical", "name": "John Martin", "email": "jennifer.white@example.com", "phone": "+1-914-647-1247"}]}, "subscription": {"plan": "free", "startDate": "2022-03-01", "renewalDate": "2023-03-01", "amount": 9311.35, "currency": "CAD", "services": [{"id": "svc-334", "name": "Security", "quantity": 8590, "unit": "TB", "unitPrice": 430.5}, {"id": "svc-504", "name": "Maintenance", "quantity": 79, "unit": "session", "unitPrice": 1998.97}]}}, {"id": "rec-00313", "createdAt": "2021-10-27T02:45:33Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-48534304", "name": "Weyland-Yutani", "segment": "small-business", "industry": "technology", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "karen.robinson@fake.tech", "phone": "+1-464-537-8875"}, {"type": "technical", "name": "Patricia Miller", "email": "nancy.wilson@example.com", "phone": "+1-528-462-8423"}]}, "subscription": {"plan": "custom", "startDate": "2020-04-28", "renewalDate": "2021-04-28", "amount": 20040.06, "currency": "CAD", "services": [{"id": "svc-591", "name": "Database", "quantity": 1213, "unit": "user", "unitPrice": 164.23}, {"id": "svc-277", "name": "Implementation", "quantity": 67, "unit": "hour", "unitPrice": 338.66}]}}, {"id": "rec-00314", "createdAt": "2025-01-10T05:41:04Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96234572", "name": "Stark Industries", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Mary Martinez", "email": "susan.jackson@mock.co", "phone": "+1-826-890-2874"}, {"type": "technical", "name": "Michael Williams", "email": "john.davis@fake.tech", "phone": "+1-315-668-1869"}]}, "subscription": {"plan": "free", "startDate": "2021-05-25", "renewalDate": "2024-05-25", "amount": 27542.73, "currency": "GBP", "services": [{"id": "svc-231", "name": "Compute Instances", "quantity": 7528, "unit": "GB", "unitPrice": 136.52}, {"id": "svc-594", "name": "Implementation", "quantity": 28, "unit": "unit", "unitPrice": 443.53}]}}, {"id": "rec-00315", "createdAt": "2024-07-22T12:56:40Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-41114111", "name": "Wayne Enterprises", "segment": "startup", "industry": "finance", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Joseph Martinez", "email": "nancy.jackson@sample.io", "phone": "+1-736-654-5932"}, {"type": "technical", "name": "Susan Brown", "email": "william.thomas@fake.tech", "phone": "+1-837-954-1985"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-16", "renewalDate": "2024-09-16", "amount": 48920.79, "currency": "USD", "services": [{"id": "svc-174", "name": "Cloud Storage", "quantity": 8783, "unit": "GB", "unitPrice": 242.44}, {"id": "svc-160", "name": "Support Plan", "quantity": 16, "unit": "hour", "unitPrice": 414.93}]}}, {"id": "rec-00316", "createdAt": "2020-01-05T12:18:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-26604885", "name": "Aperture Science", "segment": "small-business", "industry": "education", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Elizabeth Robinson", "email": "david.brown@demo.net", "phone": "+1-993-147-4213"}, {"type": "technical", "name": "Robert Miller", "email": "susan.harris@test.org", "phone": "+1-418-724-3196"}]}, "subscription": {"plan": "custom", "startDate": "2023-07-27", "renewalDate": "2024-07-27", "amount": 1829.02, "currency": "EUR", "services": [{"id": "svc-359", "name": "Analytics", "quantity": 7365, "unit": "instance", "unitPrice": 454.37}, {"id": "svc-650", "name": "Training", "quantity": 49, "unit": "hour", "unitPrice": 986.07}]}}, {"id": "rec-00317", "createdAt": "2020-06-21T05:55:27Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-91434516", "name": "Globex", "segment": "mid-market", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Charles Thomas", "email": "james.jackson@demo.net", "phone": "+1-746-981-1959"}, {"type": "technical", "name": "Jessica Anderson", "email": "mary.johnson@demo.net", "phone": "+1-246-441-7964"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-10", "renewalDate": "2025-07-10", "amount": 40374.53, "currency": "CAD", "services": [{"id": "svc-379", "name": "Database", "quantity": 6363, "unit": "license", "unitPrice": 277.22}, {"id": "svc-540", "name": "Support Plan", "quantity": 79, "unit": "hour", "unitPrice": 1074.26}]}}, {"id": "rec-00318", "createdAt": "2021-02-20T01:04:00Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-16177242", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Patricia Thomas", "email": "richard.martinez@mock.co", "phone": "+1-765-858-9233"}, {"type": "technical", "name": "John Garcia", "email": "charles.brown@demo.net", "phone": "+1-505-853-8573"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-25", "renewalDate": "2026-09-25", "amount": 48518.65, "currency": "USD", "services": [{"id": "svc-725", "name": "Cloud Storage", "quantity": 7784, "unit": "TB", "unitPrice": 106.47}, {"id": "svc-346", "name": "Consulting", "quantity": 38, "unit": "subscription", "unitPrice": 204.94}]}}, {"id": "rec-00319", "createdAt": "2023-11-11T07:30:34Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-49759734", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1990, "contacts": [{"type": "primary", "name": "Linda Johnson", "email": "thomas.miller@demo.net", "phone": "+1-533-722-5700"}, {"type": "technical", "name": "Charles Anderson", "email": "david.wilson@fake.tech", "phone": "+1-392-582-6157"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-09", "renewalDate": "2024-02-09", "amount": 38667.54, "currency": "CAD", "services": [{"id": "svc-762", "name": "Compute Instances", "quantity": 597, "unit": "instance", "unitPrice": 204.08}, {"id": "svc-857", "name": "Training", "quantity": 75, "unit": "hour", "unitPrice": 587.93}]}}, {"id": "rec-00320", "createdAt": "2024-05-01T14:57:35Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-17661906", "name": "Soylent Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Sarah Martin", "email": "susan.moore@sample.io", "phone": "+1-555-265-7394"}, {"type": "technical", "name": "James Anderson", "email": "william.smith@fake.tech", "phone": "+1-662-388-8232"}]}, "subscription": {"plan": "professional", "startDate": "2024-05-17", "renewalDate": "2025-05-17", "amount": 43547.92, "currency": "CAD", "services": [{"id": "svc-817", "name": "Cloud Storage", "quantity": 9541, "unit": "instance", "unitPrice": 63.55}, {"id": "svc-733", "name": "Training", "quantity": 57, "unit": "session", "unitPrice": 590.99}]}}, {"id": "rec-00321", "createdAt": "2024-08-06T00:46:27Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-33984750", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Jessica Johnson", "email": "jessica.white@test.org", "phone": "+1-613-752-9787"}, {"type": "technical", "name": "James White", "email": "sarah.garcia@demo.net", "phone": "+1-734-695-1380"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-14", "renewalDate": "2023-07-14", "amount": 28204.87, "currency": "EUR", "services": [{"id": "svc-443", "name": "Cloud Storage", "quantity": 8057, "unit": "TB", "unitPrice": 206.84}, {"id": "svc-747", "name": "Consulting", "quantity": 53, "unit": "hour", "unitPrice": 1287.97}]}}, {"id": "rec-00322", "createdAt": "2020-04-15T16:21:44Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-92724770", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "education", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Susan Jackson", "email": "patricia.williams@demo.net", "phone": "+1-509-779-7582"}, {"type": "technical", "name": "Karen Thomas", "email": "mary.davis@sample.io", "phone": "+1-419-715-7044"}]}, "subscription": {"plan": "professional", "startDate": "2024-05-03", "renewalDate": "2025-05-03", "amount": 13369.73, "currency": "USD", "services": [{"id": "svc-841", "name": "Analytics", "quantity": 3082, "unit": "instance", "unitPrice": 424.7}, {"id": "svc-452", "name": "Implementation", "quantity": 77, "unit": "unit", "unitPrice": 1726.14}]}}, {"id": "rec-00323", "createdAt": "2023-09-15T22:06:01Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-74463180", "name": "Initech", "segment": "mid-market", "industry": "technology", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Mary Jackson", "email": "thomas.brown@demo.net", "phone": "+1-795-953-8341"}, {"type": "technical", "name": "Karen Moore", "email": "linda.thompson@fake.tech", "phone": "+1-441-646-1398"}]}, "subscription": {"plan": "professional", "startDate": "2020-03-18", "renewalDate": "2021-03-18", "amount": 35018.65, "currency": "CAD", "services": [{"id": "svc-777", "name": "Database", "quantity": 6352, "unit": "license", "unitPrice": 135.35}, {"id": "svc-192", "name": "Support Plan", "quantity": 98, "unit": "package", "unitPrice": 101.01}]}}, {"id": "rec-00324", "createdAt": "2021-05-08T23:40:56Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-16912937", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Nancy Thompson", "email": "joseph.jackson@sample.io", "phone": "+1-378-685-1121"}, {"type": "technical", "name": "John Moore", "email": "karen.white@sample.io", "phone": "+1-851-988-7478"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-07", "renewalDate": "2025-04-07", "amount": 4832.65, "currency": "EUR", "services": [{"id": "svc-492", "name": "Cloud Storage", "quantity": 4762, "unit": "user", "unitPrice": 470.88}, {"id": "svc-857", "name": "Support Plan", "quantity": 94, "unit": "session", "unitPrice": 126.28}]}}, {"id": "rec-00325", "createdAt": "2020-05-26T19:00:20Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-55772660", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Michael Martinez", "email": "jessica.thompson@demo.net", "phone": "+1-860-837-1132"}, {"type": "technical", "name": "Robert Jones", "email": "mary.johnson@example.com", "phone": "+1-412-972-3676"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-08", "renewalDate": "2025-03-08", "amount": 35251.39, "currency": "CAD", "services": [{"id": "svc-122", "name": "Database", "quantity": 2595, "unit": "GB", "unitPrice": 166.42}, {"id": "svc-707", "name": "Training", "quantity": 36, "unit": "package", "unitPrice": 1486.0}]}}, {"id": "rec-00326", "createdAt": "2024-09-01T03:47:42Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-40262510", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "James Thompson", "email": "robert.brown@demo.net", "phone": "+1-934-831-6236"}, {"type": "technical", "name": "Patricia White", "email": "william.thomas@sample.io", "phone": "+1-288-253-4134"}]}, "subscription": {"plan": "basic", "startDate": "2023-07-25", "renewalDate": "2026-07-25", "amount": 2231.13, "currency": "CAD", "services": [{"id": "svc-300", "name": "Analytics", "quantity": 5980, "unit": "user", "unitPrice": 249.05}, {"id": "svc-577", "name": "Implementation", "quantity": 1, "unit": "subscription", "unitPrice": 1286.28}]}}, {"id": "rec-00327", "createdAt": "2022-07-28T09:54:02Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-23733336", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "technology", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Charles White", "email": "sarah.wilson@mock.co", "phone": "+1-710-808-8830"}, {"type": "technical", "name": "Jennifer Wilson", "email": "karen.anderson@example.com", "phone": "+1-459-427-9407"}]}, "subscription": {"plan": "professional", "startDate": "2020-08-08", "renewalDate": "2022-08-08", "amount": 35783.38, "currency": "AUD", "services": [{"id": "svc-876", "name": "Compute Instances", "quantity": 9560, "unit": "instance", "unitPrice": 430.35}, {"id": "svc-251", "name": "Training", "quantity": 95, "unit": "package", "unitPrice": 1180.27}]}}, {"id": "rec-00328", "createdAt": "2024-06-06T18:52:46Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96417269", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Sarah Davis", "email": "james.williams@sample.io", "phone": "+1-915-749-8805"}, {"type": "technical", "name": "James Johnson", "email": "james.white@mock.co", "phone": "+1-274-547-4408"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-17", "renewalDate": "2023-07-17", "amount": 42179.2, "currency": "AUD", "services": [{"id": "svc-270", "name": "Database", "quantity": 998, "unit": "TB", "unitPrice": 312.8}, {"id": "svc-485", "name": "Maintenance", "quantity": 25, "unit": "subscription", "unitPrice": 302.66}]}}, {"id": "rec-00329", "createdAt": "2022-07-22T20:11:16Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-61601615", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Thomas Moore", "email": "charles.garcia@mock.co", "phone": "+1-298-625-6317"}, {"type": "technical", "name": "Michael Moore", "email": "james.thompson@mock.co", "phone": "+1-539-665-9558"}]}, "subscription": {"plan": "custom", "startDate": "2020-08-26", "renewalDate": "2022-08-26", "amount": 3449.09, "currency": "CAD", "services": [{"id": "svc-656", "name": "Analytics", "quantity": 3538, "unit": "license", "unitPrice": 248.37}, {"id": "svc-105", "name": "Training", "quantity": 16, "unit": "session", "unitPrice": 1812.45}]}}, {"id": "rec-00330", "createdAt": "2021-11-16T07:40:01Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28340331", "name": "Virtucon", "segment": "mid-market", "industry": "education", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Charles Jones", "email": "charles.robinson@sample.io", "phone": "+1-258-380-8425"}, {"type": "technical", "name": "Joseph Garcia", "email": "thomas.white@demo.net", "phone": "+1-822-827-9598"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-02-18", "renewalDate": "2024-02-18", "amount": 4029.64, "currency": "USD", "services": [{"id": "svc-678", "name": "Cloud Storage", "quantity": 3637, "unit": "instance", "unitPrice": 330.85}, {"id": "svc-692", "name": "Training", "quantity": 64, "unit": "hour", "unitPrice": 365.14}]}}, {"id": "rec-00331", "createdAt": "2023-08-22T12:30:43Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-95503379", "name": "Acme Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Sarah Taylor", "email": "david.harris@sample.io", "phone": "+1-692-989-9593"}, {"type": "technical", "name": "Michael Davis", "email": "mary.moore@mock.co", "phone": "+1-757-907-9395"}]}, "subscription": {"plan": "free", "startDate": "2023-01-17", "renewalDate": "2026-01-17", "amount": 25517.39, "currency": "GBP", "services": [{"id": "svc-978", "name": "Database", "quantity": 7709, "unit": "license", "unitPrice": 129.14}, {"id": "svc-690", "name": "Maintenance", "quantity": 70, "unit": "session", "unitPrice": 848.4}]}}, {"id": "rec-00332", "createdAt": "2025-04-27T00:26:38Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48685065", "name": "Initech", "segment": "enterprise", "industry": "technology", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "William Garcia", "email": "nancy.brown@sample.io", "phone": "+1-671-873-6096"}, {"type": "technical", "name": "John Davis", "email": "william.martin@test.org", "phone": "+1-538-917-1110"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-03", "renewalDate": "2024-01-03", "amount": 2553.98, "currency": "CAD", "services": [{"id": "svc-834", "name": "Security", "quantity": 3566, "unit": "license", "unitPrice": 105.95}, {"id": "svc-698", "name": "Training", "quantity": 22, "unit": "subscription", "unitPrice": 588.13}]}}, {"id": "rec-00333", "createdAt": "2020-08-10T04:29:58Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-66627764", "name": "Massive Dynamic", "segment": "enterprise", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Sarah Miller", "email": "karen.williams@demo.net", "phone": "+1-214-470-8383"}, {"type": "technical", "name": "Patricia Jackson", "email": "richard.robinson@mock.co", "phone": "+1-281-409-4452"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-09-01", "renewalDate": "2025-09-01", "amount": 10026.7, "currency": "GBP", "services": [{"id": "svc-733", "name": "Database", "quantity": 8526, "unit": "TB", "unitPrice": 366.79}, {"id": "svc-502", "name": "Maintenance", "quantity": 54, "unit": "subscription", "unitPrice": 1826.53}]}}, {"id": "rec-00334", "createdAt": "2025-09-17T13:02:59Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90785868", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "John Robinson", "email": "jessica.garcia@fake.tech", "phone": "+1-970-958-9294"}, {"type": "technical", "name": "Nancy Harris", "email": "john.martin@demo.net", "phone": "+1-457-877-6655"}]}, "subscription": {"plan": "basic", "startDate": "2024-01-20", "renewalDate": "2025-01-20", "amount": 46493.3, "currency": "AUD", "services": [{"id": "svc-512", "name": "Analytics", "quantity": 3374, "unit": "user", "unitPrice": 497.1}, {"id": "svc-631", "name": "Consulting", "quantity": 80, "unit": "unit", "unitPrice": 1299.07}]}}, {"id": "rec-00335", "createdAt": "2023-12-02T07:07:21Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-18256611", "name": "Initech", "segment": "startup", "industry": "technology", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "William Davis", "email": "joseph.jones@test.org", "phone": "+1-450-747-5216"}, {"type": "technical", "name": "David Anderson", "email": "james.jackson@example.com", "phone": "+1-558-469-3209"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-10", "renewalDate": "2021-02-10", "amount": 22244.33, "currency": "CAD", "services": [{"id": "svc-658", "name": "Compute Instances", "quantity": 7017, "unit": "GB", "unitPrice": 481.1}, {"id": "svc-491", "name": "Consulting", "quantity": 11, "unit": "unit", "unitPrice": 394.33}]}}, {"id": "rec-00336", "createdAt": "2022-10-12T13:13:43Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-70917342", "name": "Wayne Enterprises", "segment": "small-business", "industry": "retail", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Richard White", "email": "james.martinez@demo.net", "phone": "+1-965-494-1209"}, {"type": "technical", "name": "Karen White", "email": "patricia.williams@example.com", "phone": "+1-524-914-6900"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-04-19", "renewalDate": "2023-04-19", "amount": 35633.47, "currency": "CAD", "services": [{"id": "svc-295", "name": "Analytics", "quantity": 263, "unit": "instance", "unitPrice": 40.18}, {"id": "svc-368", "name": "Maintenance", "quantity": 65, "unit": "subscription", "unitPrice": 1038.19}]}}, {"id": "rec-00337", "createdAt": "2021-02-19T16:56:31Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-76331761", "name": "LexCorp", "segment": "mid-market", "industry": "education", "yearFounded": 1975, "contacts": [{"type": "primary", "name": "Charles Taylor", "email": "richard.thomas@test.org", "phone": "+1-774-547-9264"}, {"type": "technical", "name": "Karen Thompson", "email": "charles.anderson@fake.tech", "phone": "+1-871-997-7504"}]}, "subscription": {"plan": "free", "startDate": "2021-01-01", "renewalDate": "2022-01-01", "amount": 44064.48, "currency": "USD", "services": [{"id": "svc-626", "name": "Cloud Storage", "quantity": 9201, "unit": "user", "unitPrice": 358.15}, {"id": "svc-295", "name": "Implementation", "quantity": 64, "unit": "session", "unitPrice": 72.43}]}}, {"id": "rec-00338", "createdAt": "2020-05-23T22:39:06Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-21457305", "name": "Globex", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "William Williams", "email": "david.smith@test.org", "phone": "+1-311-284-4228"}, {"type": "technical", "name": "Charles Johnson", "email": "david.miller@mock.co", "phone": "+1-884-419-4819"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-26", "renewalDate": "2026-09-26", "amount": 42375.83, "currency": "AUD", "services": [{"id": "svc-383", "name": "Compute Instances", "quantity": 7529, "unit": "instance", "unitPrice": 185.58}, {"id": "svc-353", "name": "Maintenance", "quantity": 40, "unit": "hour", "unitPrice": 1442.0}]}}, {"id": "rec-00339", "createdAt": "2024-03-08T06:22:06Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-69499683", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "sarah.thomas@fake.tech", "phone": "+1-902-631-1817"}, {"type": "technical", "name": "Michael Brown", "email": "jessica.wilson@example.com", "phone": "+1-547-599-5146"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-02-27", "renewalDate": "2026-02-27", "amount": 5757.3, "currency": "USD", "services": [{"id": "svc-389", "name": "Analytics", "quantity": 379, "unit": "user", "unitPrice": 278.68}, {"id": "svc-746", "name": "Implementation", "quantity": 26, "unit": "subscription", "unitPrice": 1800.3}]}}, {"id": "rec-00340", "createdAt": "2021-10-23T11:01:11Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-44130305", "name": "Soylent Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "michael.thomas@mock.co", "phone": "+1-311-407-4927"}, {"type": "technical", "name": "James Taylor", "email": "william.johnson@mock.co", "phone": "+1-711-499-3615"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-09", "renewalDate": "2026-05-09", "amount": 38234.09, "currency": "CAD", "services": [{"id": "svc-348", "name": "Analytics", "quantity": 7679, "unit": "instance", "unitPrice": 289.18}, {"id": "svc-970", "name": "Implementation", "quantity": 2, "unit": "hour", "unitPrice": 1501.1}]}}, {"id": "rec-00341", "createdAt": "2022-09-04T05:22:32Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20672551", "name": "Aperture Science", "segment": "startup", "industry": "education", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "John Martinez", "email": "michael.johnson@sample.io", "phone": "+1-413-747-2839"}, {"type": "technical", "name": "Jennifer Martin", "email": "thomas.davis@example.com", "phone": "+1-687-132-4397"}]}, "subscription": {"plan": "free", "startDate": "2023-11-24", "renewalDate": "2025-11-24", "amount": 48618.96, "currency": "CAD", "services": [{"id": "svc-464", "name": "Analytics", "quantity": 9185, "unit": "user", "unitPrice": 260.82}, {"id": "svc-694", "name": "Support Plan", "quantity": 89, "unit": "hour", "unitPrice": 220.29}]}}, {"id": "rec-00342", "createdAt": "2022-12-20T23:29:47Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-71900079", "name": "Globex", "segment": "enterprise", "industry": "retail", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Jennifer Wilson", "email": "michael.davis@mock.co", "phone": "+1-403-835-7187"}, {"type": "technical", "name": "Nancy Smith", "email": "karen.anderson@demo.net", "phone": "+1-219-504-4670"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-10-07", "renewalDate": "2026-10-07", "amount": 37461.41, "currency": "CAD", "services": [{"id": "svc-629", "name": "Compute Instances", "quantity": 1634, "unit": "instance", "unitPrice": 280.81}, {"id": "svc-993", "name": "Implementation", "quantity": 25, "unit": "unit", "unitPrice": 862.61}]}}, {"id": "rec-00343", "createdAt": "2023-09-22T03:19:34Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-68950818", "name": "Umbrella Corp", "segment": "small-business", "industry": "finance", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "nancy.robinson@test.org", "phone": "+1-408-228-6069"}, {"type": "technical", "name": "Charles Brown", "email": "michael.garcia@example.com", "phone": "+1-795-937-4262"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-08-18", "renewalDate": "2026-08-18", "amount": 6087.42, "currency": "AUD", "services": [{"id": "svc-851", "name": "Analytics", "quantity": 1227, "unit": "GB", "unitPrice": 143.32}, {"id": "svc-894", "name": "Consulting", "quantity": 54, "unit": "unit", "unitPrice": 272.4}]}}, {"id": "rec-00344", "createdAt": "2024-12-24T00:13:46Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39133709", "name": "Globex", "segment": "enterprise", "industry": "education", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Jennifer Wilson", "email": "nancy.thomas@example.com", "phone": "+1-600-661-1529"}, {"type": "technical", "name": "Richard Anderson", "email": "nancy.white@mock.co", "phone": "+1-576-679-3126"}]}, "subscription": {"plan": "professional", "startDate": "2022-02-08", "renewalDate": "2025-02-08", "amount": 36131.16, "currency": "EUR", "services": [{"id": "svc-846", "name": "Analytics", "quantity": 3246, "unit": "TB", "unitPrice": 374.9}, {"id": "svc-101", "name": "Maintenance", "quantity": 20, "unit": "subscription", "unitPrice": 869.25}]}}, {"id": "rec-00345", "createdAt": "2021-09-15T23:46:18Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-37095540", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "finance", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "David Martinez", "email": "karen.thomas@mock.co", "phone": "+1-544-401-2438"}, {"type": "technical", "name": "Thomas Anderson", "email": "robert.smith@example.com", "phone": "+1-994-392-1394"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-07-15", "renewalDate": "2025-07-15", "amount": 8806.17, "currency": "USD", "services": [{"id": "svc-375", "name": "Analytics", "quantity": 3048, "unit": "license", "unitPrice": 369.09}, {"id": "svc-810", "name": "Training", "quantity": 88, "unit": "package", "unitPrice": 1218.45}]}}, {"id": "rec-00346", "createdAt": "2022-04-10T05:46:19Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-86670350", "name": "Initech", "segment": "startup", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "William Jackson", "email": "mary.harris@example.com", "phone": "+1-683-737-2921"}, {"type": "technical", "name": "Michael Brown", "email": "jessica.taylor@example.com", "phone": "+1-817-607-8212"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-14", "renewalDate": "2022-09-14", "amount": 2928.87, "currency": "CAD", "services": [{"id": "svc-299", "name": "Cloud Storage", "quantity": 1554, "unit": "user", "unitPrice": 420.59}, {"id": "svc-248", "name": "Consulting", "quantity": 17, "unit": "subscription", "unitPrice": 1914.23}]}}, {"id": "rec-00347", "createdAt": "2021-08-15T10:00:43Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-77368993", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "charles.garcia@mock.co", "phone": "+1-571-184-4635"}, {"type": "technical", "name": "Jessica Williams", "email": "jessica.harris@test.org", "phone": "+1-754-395-2149"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-02-11", "renewalDate": "2024-02-11", "amount": 46078.39, "currency": "USD", "services": [{"id": "svc-485", "name": "Database", "quantity": 3487, "unit": "TB", "unitPrice": 44.08}, {"id": "svc-428", "name": "Maintenance", "quantity": 4, "unit": "hour", "unitPrice": 1436.0}]}}, {"id": "rec-00348", "createdAt": "2022-09-16T08:23:14Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-54354772", "name": "Massive Dynamic", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Robert Thomas", "email": "robert.moore@fake.tech", "phone": "+1-439-393-3361"}, {"type": "technical", "name": "Sarah Martin", "email": "susan.white@demo.net", "phone": "+1-721-867-9458"}]}, "subscription": {"plan": "custom", "startDate": "2022-04-11", "renewalDate": "2024-04-11", "amount": 39188.62, "currency": "AUD", "services": [{"id": "svc-517", "name": "Analytics", "quantity": 7271, "unit": "instance", "unitPrice": 99.5}, {"id": "svc-258", "name": "Maintenance", "quantity": 79, "unit": "session", "unitPrice": 659.03}]}}, {"id": "rec-00349", "createdAt": "2021-11-26T09:16:15Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-25407094", "name": "LexCorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Susan Martin", "email": "robert.davis@example.com", "phone": "+1-250-273-5536"}, {"type": "technical", "name": "William Johnson", "email": "linda.jones@mock.co", "phone": "+1-928-914-2065"}]}, "subscription": {"plan": "free", "startDate": "2020-02-24", "renewalDate": "2021-02-24", "amount": 2333.71, "currency": "EUR", "services": [{"id": "svc-911", "name": "Analytics", "quantity": 2940, "unit": "TB", "unitPrice": 163.12}, {"id": "svc-131", "name": "Consulting", "quantity": 94, "unit": "hour", "unitPrice": 895.91}]}}, {"id": "rec-00350", "createdAt": "2022-08-24T05:42:59Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-19551813", "name": "Acme Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Karen Smith", "email": "thomas.jones@sample.io", "phone": "+1-311-394-1066"}, {"type": "technical", "name": "Michael Davis", "email": "james.garcia@example.com", "phone": "+1-631-981-1446"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-10-09", "renewalDate": "2021-10-09", "amount": 13588.3, "currency": "EUR", "services": [{"id": "svc-715", "name": "Cloud Storage", "quantity": 5481, "unit": "GB", "unitPrice": 58.94}, {"id": "svc-649", "name": "Consulting", "quantity": 23, "unit": "subscription", "unitPrice": 641.57}]}}, {"id": "rec-00351", "createdAt": "2023-01-11T18:12:43Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57564446", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "David White", "email": "joseph.thompson@demo.net", "phone": "+1-805-331-6844"}, {"type": "technical", "name": "Charles White", "email": "michael.anderson@mock.co", "phone": "+1-241-305-8154"}]}, "subscription": {"plan": "custom", "startDate": "2023-08-25", "renewalDate": "2025-08-25", "amount": 46009.38, "currency": "EUR", "services": [{"id": "svc-528", "name": "Database", "quantity": 5014, "unit": "GB", "unitPrice": 109.49}, {"id": "svc-689", "name": "Support Plan", "quantity": 96, "unit": "hour", "unitPrice": 701.46}]}}, {"id": "rec-00352", "createdAt": "2020-01-17T19:24:20Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13571137", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "David Thompson", "email": "linda.smith@test.org", "phone": "+1-845-248-2692"}, {"type": "technical", "name": "James Harris", "email": "robert.garcia@mock.co", "phone": "+1-526-603-5355"}]}, "subscription": {"plan": "custom", "startDate": "2022-01-08", "renewalDate": "2025-01-08", "amount": 6511.69, "currency": "USD", "services": [{"id": "svc-463", "name": "Compute Instances", "quantity": 9658, "unit": "license", "unitPrice": 465.01}, {"id": "svc-929", "name": "Support Plan", "quantity": 95, "unit": "unit", "unitPrice": 1907.66}]}}, {"id": "rec-00353", "createdAt": "2020-09-16T23:52:08Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-83692143", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Sarah Thomas", "email": "michael.harris@sample.io", "phone": "+1-645-704-2835"}, {"type": "technical", "name": "David Anderson", "email": "sarah.taylor@fake.tech", "phone": "+1-385-421-1555"}]}, "subscription": {"plan": "free", "startDate": "2020-06-09", "renewalDate": "2022-06-09", "amount": 27505.21, "currency": "GBP", "services": [{"id": "svc-395", "name": "Cloud Storage", "quantity": 255, "unit": "license", "unitPrice": 161.53}, {"id": "svc-487", "name": "Maintenance", "quantity": 51, "unit": "unit", "unitPrice": 1537.07}]}}, {"id": "rec-00354", "createdAt": "2020-02-07T03:25:08Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-77239746", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "James Martin", "email": "patricia.martin@mock.co", "phone": "+1-887-517-8671"}, {"type": "technical", "name": "Charles Wilson", "email": "thomas.jones@sample.io", "phone": "+1-655-531-9928"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-16", "renewalDate": "2025-01-16", "amount": 11403.63, "currency": "USD", "services": [{"id": "svc-430", "name": "Analytics", "quantity": 262, "unit": "GB", "unitPrice": 62.89}, {"id": "svc-702", "name": "Training", "quantity": 90, "unit": "subscription", "unitPrice": 1001.76}]}}, {"id": "rec-00355", "createdAt": "2020-08-07T15:53:12Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66500217", "name": "Massive Dynamic", "segment": "mid-market", "industry": "retail", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Jennifer Miller", "email": "linda.white@sample.io", "phone": "+1-583-794-6381"}, {"type": "technical", "name": "Michael Martinez", "email": "mary.thompson@demo.net", "phone": "+1-855-789-7529"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-10-18", "renewalDate": "2023-10-18", "amount": 39031.1, "currency": "CAD", "services": [{"id": "svc-774", "name": "Cloud Storage", "quantity": 591, "unit": "license", "unitPrice": 405.96}, {"id": "svc-648", "name": "Training", "quantity": 50, "unit": "package", "unitPrice": 1527.73}]}}, {"id": "rec-00356", "createdAt": "2022-01-02T14:40:32Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-25221403", "name": "Massive Dynamic", "segment": "startup", "industry": "technology", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "william.robinson@sample.io", "phone": "+1-518-917-3106"}, {"type": "technical", "name": "James Moore", "email": "patricia.garcia@fake.tech", "phone": "+1-626-276-7629"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-22", "renewalDate": "2023-01-22", "amount": 14598.45, "currency": "EUR", "services": [{"id": "svc-750", "name": "Cloud Storage", "quantity": 8559, "unit": "GB", "unitPrice": 471.0}, {"id": "svc-145", "name": "Training", "quantity": 30, "unit": "session", "unitPrice": 180.7}]}}, {"id": "rec-00357", "createdAt": "2025-07-03T22:26:53Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-17194845", "name": "Massive Dynamic", "segment": "startup", "industry": "manufacturing", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "elizabeth.robinson@mock.co", "phone": "+1-403-341-5361"}, {"type": "technical", "name": "William Jones", "email": "karen.brown@example.com", "phone": "+1-520-643-4106"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-10", "renewalDate": "2022-06-10", "amount": 38354.09, "currency": "CAD", "services": [{"id": "svc-323", "name": "Analytics", "quantity": 720, "unit": "user", "unitPrice": 385.0}, {"id": "svc-967", "name": "Training", "quantity": 43, "unit": "session", "unitPrice": 735.26}]}}, {"id": "rec-00358", "createdAt": "2025-12-18T04:43:11Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-15615213", "name": "Acme Corp", "segment": "startup", "industry": "finance", "yearFounded": 1990, "contacts": [{"type": "primary", "name": "David Robinson", "email": "charles.martin@mock.co", "phone": "+1-548-915-4394"}, {"type": "technical", "name": "Sarah Jones", "email": "david.jones@demo.net", "phone": "+1-906-406-1429"}]}, "subscription": {"plan": "professional", "startDate": "2023-08-15", "renewalDate": "2026-08-15", "amount": 43036.75, "currency": "AUD", "services": [{"id": "svc-559", "name": "Compute Instances", "quantity": 6797, "unit": "TB", "unitPrice": 326.62}, {"id": "svc-725", "name": "Support Plan", "quantity": 81, "unit": "package", "unitPrice": 1179.22}]}}, {"id": "rec-00359", "createdAt": "2024-07-11T03:27:57Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-13339276", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "thomas.white@sample.io", "phone": "+1-569-477-5936"}, {"type": "technical", "name": "Sarah Martinez", "email": "robert.moore@example.com", "phone": "+1-280-289-5929"}]}, "subscription": {"plan": "custom", "startDate": "2024-02-24", "renewalDate": "2027-02-24", "amount": 20285.56, "currency": "CAD", "services": [{"id": "svc-386", "name": "Database", "quantity": 6923, "unit": "GB", "unitPrice": 318.46}, {"id": "svc-874", "name": "Maintenance", "quantity": 98, "unit": "subscription", "unitPrice": 60.44}]}}, {"id": "rec-00360", "createdAt": "2024-09-21T03:50:36Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35841863", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Jennifer Davis", "email": "elizabeth.jackson@test.org", "phone": "+1-819-983-1350"}, {"type": "technical", "name": "Jessica Moore", "email": "jennifer.johnson@demo.net", "phone": "+1-889-195-7006"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-09", "renewalDate": "2026-11-09", "amount": 14763.9, "currency": "GBP", "services": [{"id": "svc-647", "name": "Analytics", "quantity": 9905, "unit": "instance", "unitPrice": 264.05}, {"id": "svc-810", "name": "Maintenance", "quantity": 27, "unit": "session", "unitPrice": 1339.32}]}}, {"id": "rec-00361", "createdAt": "2021-12-07T02:09:55Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-42776139", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Elizabeth Wilson", "email": "michael.white@sample.io", "phone": "+1-634-582-9610"}, {"type": "technical", "name": "David Martinez", "email": "sarah.martinez@fake.tech", "phone": "+1-803-654-8484"}]}, "subscription": {"plan": "custom", "startDate": "2020-11-07", "renewalDate": "2022-11-07", "amount": 40082.42, "currency": "GBP", "services": [{"id": "svc-553", "name": "Compute Instances", "quantity": 8036, "unit": "user", "unitPrice": 61.88}, {"id": "svc-804", "name": "Support Plan", "quantity": 98, "unit": "hour", "unitPrice": 964.69}]}}, {"id": "rec-00362", "createdAt": "2021-03-26T22:01:26Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-21745602", "name": "Soylent Corp", "segment": "small-business", "industry": "finance", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Joseph Martin", "email": "jennifer.jackson@sample.io", "phone": "+1-400-719-5282"}, {"type": "technical", "name": "Patricia Miller", "email": "mary.johnson@sample.io", "phone": "+1-490-708-8872"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-20", "renewalDate": "2021-02-20", "amount": 25038.96, "currency": "AUD", "services": [{"id": "svc-192", "name": "Security", "quantity": 8950, "unit": "TB", "unitPrice": 183.1}, {"id": "svc-188", "name": "Support Plan", "quantity": 97, "unit": "unit", "unitPrice": 1553.14}]}}, {"id": "rec-00363", "createdAt": "2020-07-01T01:32:33Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13586091", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Sarah Moore", "email": "karen.robinson@fake.tech", "phone": "+1-642-549-6728"}, {"type": "technical", "name": "Mary Moore", "email": "john.harris@mock.co", "phone": "+1-267-604-9718"}]}, "subscription": {"plan": "free", "startDate": "2020-10-22", "renewalDate": "2022-10-22", "amount": 7236.27, "currency": "AUD", "services": [{"id": "svc-801", "name": "Database", "quantity": 3989, "unit": "TB", "unitPrice": 294.33}, {"id": "svc-158", "name": "Consulting", "quantity": 32, "unit": "package", "unitPrice": 1091.79}]}}, {"id": "rec-00364", "createdAt": "2024-10-21T23:06:34Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-95199749", "name": "Acme Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "James Robinson", "email": "sarah.robinson@demo.net", "phone": "+1-244-386-9474"}, {"type": "technical", "name": "Charles Williams", "email": "mary.white@sample.io", "phone": "+1-754-741-5323"}]}, "subscription": {"plan": "basic", "startDate": "2020-02-01", "renewalDate": "2022-02-01", "amount": 38947.21, "currency": "USD", "services": [{"id": "svc-166", "name": "Cloud Storage", "quantity": 1078, "unit": "GB", "unitPrice": 49.06}, {"id": "svc-562", "name": "Implementation", "quantity": 57, "unit": "session", "unitPrice": 925.05}]}}, {"id": "rec-00365", "createdAt": "2020-09-03T21:55:13Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15855585", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "retail", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Linda White", "email": "william.thomas@sample.io", "phone": "+1-972-862-2186"}, {"type": "technical", "name": "Linda Wilson", "email": "elizabeth.white@sample.io", "phone": "+1-493-839-6544"}]}, "subscription": {"plan": "basic", "startDate": "2022-10-21", "renewalDate": "2024-10-21", "amount": 33691.85, "currency": "EUR", "services": [{"id": "svc-938", "name": "Database", "quantity": 9582, "unit": "GB", "unitPrice": 15.45}, {"id": "svc-883", "name": "Maintenance", "quantity": 49, "unit": "package", "unitPrice": 661.3}]}}, {"id": "rec-00366", "createdAt": "2021-02-14T19:26:11Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48069080", "name": "Virtucon", "segment": "small-business", "industry": "technology", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Charles Johnson", "email": "john.anderson@fake.tech", "phone": "+1-319-431-7911"}, {"type": "technical", "name": "Jennifer Martinez", "email": "william.taylor@example.com", "phone": "+1-756-644-3537"}]}, "subscription": {"plan": "basic", "startDate": "2023-06-02", "renewalDate": "2024-06-02", "amount": 796.83, "currency": "GBP", "services": [{"id": "svc-211", "name": "Compute Instances", "quantity": 7561, "unit": "TB", "unitPrice": 326.27}, {"id": "svc-884", "name": "Support Plan", "quantity": 21, "unit": "package", "unitPrice": 397.35}]}}, {"id": "rec-00367", "createdAt": "2023-07-22T03:03:04Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-95224487", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Patricia Martinez", "email": "mary.garcia@sample.io", "phone": "+1-365-263-3268"}, {"type": "technical", "name": "Charles Brown", "email": "william.moore@fake.tech", "phone": "+1-248-602-5617"}]}, "subscription": {"plan": "free", "startDate": "2022-09-28", "renewalDate": "2023-09-28", "amount": 41946.54, "currency": "EUR", "services": [{"id": "svc-850", "name": "Security", "quantity": 4086, "unit": "user", "unitPrice": 177.48}, {"id": "svc-451", "name": "Implementation", "quantity": 62, "unit": "package", "unitPrice": 24.8}]}}, {"id": "rec-00368", "createdAt": "2020-01-12T05:07:50Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29384618", "name": "Oscorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Elizabeth Jones", "email": "mary.thompson@sample.io", "phone": "+1-572-454-6732"}, {"type": "technical", "name": "Thomas White", "email": "jennifer.harris@sample.io", "phone": "+1-511-333-8819"}]}, "subscription": {"plan": "free", "startDate": "2021-06-20", "renewalDate": "2024-06-20", "amount": 19663.73, "currency": "USD", "services": [{"id": "svc-508", "name": "Analytics", "quantity": 1789, "unit": "user", "unitPrice": 34.45}, {"id": "svc-145", "name": "Maintenance", "quantity": 83, "unit": "package", "unitPrice": 1177.81}]}}, {"id": "rec-00369", "createdAt": "2022-08-27T17:09:22Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15160463", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "mary.thomas@demo.net", "phone": "+1-759-475-1728"}, {"type": "technical", "name": "Sarah Anderson", "email": "john.martin@test.org", "phone": "+1-539-883-3095"}]}, "subscription": {"plan": "custom", "startDate": "2023-02-06", "renewalDate": "2025-02-06", "amount": 26233.17, "currency": "EUR", "services": [{"id": "svc-595", "name": "Database", "quantity": 9093, "unit": "TB", "unitPrice": 478.24}, {"id": "svc-337", "name": "Consulting", "quantity": 13, "unit": "unit", "unitPrice": 1050.98}]}}, {"id": "rec-00370", "createdAt": "2023-03-21T20:51:52Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29696514", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "jennifer.thompson@fake.tech", "phone": "+1-956-594-4917"}, {"type": "technical", "name": "Susan Moore", "email": "william.thompson@test.org", "phone": "+1-918-948-9737"}]}, "subscription": {"plan": "basic", "startDate": "2020-02-24", "renewalDate": "2022-02-24", "amount": 40611.5, "currency": "AUD", "services": [{"id": "svc-355", "name": "Analytics", "quantity": 1958, "unit": "GB", "unitPrice": 42.85}, {"id": "svc-752", "name": "Support Plan", "quantity": 13, "unit": "session", "unitPrice": 1010.51}]}}, {"id": "rec-00371", "createdAt": "2024-01-13T02:18:47Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17083857", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "James Thompson", "email": "sarah.taylor@demo.net", "phone": "+1-241-589-8214"}, {"type": "technical", "name": "Charles Brown", "email": "thomas.moore@fake.tech", "phone": "+1-208-742-7020"}]}, "subscription": {"plan": "free", "startDate": "2024-09-02", "renewalDate": "2027-09-02", "amount": 27775.66, "currency": "GBP", "services": [{"id": "svc-428", "name": "Database", "quantity": 6879, "unit": "license", "unitPrice": 220.55}, {"id": "svc-989", "name": "Implementation", "quantity": 100, "unit": "package", "unitPrice": 1920.5}]}}, {"id": "rec-00372", "createdAt": "2025-12-03T05:24:46Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28140058", "name": "Aperture Science", "segment": "small-business", "industry": "technology", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Mary Johnson", "email": "elizabeth.garcia@example.com", "phone": "+1-466-599-7690"}, {"type": "technical", "name": "Elizabeth Miller", "email": "jessica.anderson@fake.tech", "phone": "+1-587-272-7728"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-07", "renewalDate": "2022-06-07", "amount": 13311.82, "currency": "EUR", "services": [{"id": "svc-965", "name": "Security", "quantity": 3643, "unit": "TB", "unitPrice": 490.22}, {"id": "svc-737", "name": "Maintenance", "quantity": 20, "unit": "unit", "unitPrice": 954.04}]}}, {"id": "rec-00373", "createdAt": "2021-12-08T04:03:52Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59959301", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Elizabeth Johnson", "email": "linda.garcia@demo.net", "phone": "+1-422-743-6620"}, {"type": "technical", "name": "Patricia Martin", "email": "thomas.harris@fake.tech", "phone": "+1-260-887-9034"}]}, "subscription": {"plan": "custom", "startDate": "2024-09-17", "renewalDate": "2026-09-17", "amount": 24720.54, "currency": "GBP", "services": [{"id": "svc-388", "name": "Compute Instances", "quantity": 6784, "unit": "instance", "unitPrice": 271.09}, {"id": "svc-335", "name": "Support Plan", "quantity": 32, "unit": "unit", "unitPrice": 1614.06}]}}, {"id": "rec-00374", "createdAt": "2022-04-13T00:02:38Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-94620955", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "William Johnson", "email": "mary.jackson@sample.io", "phone": "+1-935-322-3381"}, {"type": "technical", "name": "Robert Martin", "email": "david.thomas@example.com", "phone": "+1-520-160-3367"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-20", "renewalDate": "2023-09-20", "amount": 16290.35, "currency": "GBP", "services": [{"id": "svc-401", "name": "Analytics", "quantity": 2318, "unit": "user", "unitPrice": 423.92}, {"id": "svc-826", "name": "Implementation", "quantity": 34, "unit": "session", "unitPrice": 1063.36}]}}, {"id": "rec-00375", "createdAt": "2025-05-06T00:54:31Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-12666581", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "James Brown", "email": "john.white@mock.co", "phone": "+1-274-529-1047"}, {"type": "technical", "name": "Sarah Taylor", "email": "sarah.jones@mock.co", "phone": "+1-987-969-2186"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-07-11", "renewalDate": "2026-07-11", "amount": 37452.97, "currency": "USD", "services": [{"id": "svc-841", "name": "Analytics", "quantity": 7345, "unit": "TB", "unitPrice": 2.84}, {"id": "svc-710", "name": "Training", "quantity": 26, "unit": "package", "unitPrice": 1645.37}]}}, {"id": "rec-00376", "createdAt": "2021-07-12T23:34:44Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-32938604", "name": "Virtucon", "segment": "startup", "industry": "healthcare", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "jessica.davis@demo.net", "phone": "+1-626-538-8332"}, {"type": "technical", "name": "Linda Harris", "email": "nancy.garcia@test.org", "phone": "+1-330-243-4968"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-07", "renewalDate": "2025-03-07", "amount": 48386.19, "currency": "EUR", "services": [{"id": "svc-849", "name": "Cloud Storage", "quantity": 204, "unit": "license", "unitPrice": 33.74}, {"id": "svc-711", "name": "Maintenance", "quantity": 56, "unit": "session", "unitPrice": 1461.46}]}}, {"id": "rec-00377", "createdAt": "2024-06-19T04:26:14Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-60482799", "name": "Initech", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "richard.miller@sample.io", "phone": "+1-985-678-9631"}, {"type": "technical", "name": "Linda Thomas", "email": "elizabeth.jones@fake.tech", "phone": "+1-666-176-1269"}]}, "subscription": {"plan": "custom", "startDate": "2021-10-16", "renewalDate": "2023-10-16", "amount": 18786.41, "currency": "AUD", "services": [{"id": "svc-368", "name": "Compute Instances", "quantity": 4110, "unit": "TB", "unitPrice": 379.62}, {"id": "svc-884", "name": "Support Plan", "quantity": 55, "unit": "unit", "unitPrice": 1830.19}]}}, {"id": "rec-00378", "createdAt": "2020-11-05T07:15:16Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76364560", "name": "Umbrella Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "robert.jones@demo.net", "phone": "+1-854-532-2521"}, {"type": "technical", "name": "Mary Brown", "email": "nancy.robinson@test.org", "phone": "+1-447-529-6610"}]}, "subscription": {"plan": "professional", "startDate": "2022-12-22", "renewalDate": "2023-12-22", "amount": 2562.01, "currency": "USD", "services": [{"id": "svc-645", "name": "Database", "quantity": 8293, "unit": "TB", "unitPrice": 470.55}, {"id": "svc-215", "name": "Support Plan", "quantity": 29, "unit": "hour", "unitPrice": 1732.85}]}}]} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/JsonConversionBenchmark.java b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/JsonConversionBenchmark.java new file mode 100644 index 000000000000..4779ae1e7d3b --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/JsonConversionBenchmark.java @@ -0,0 +1,186 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.benchmark.enhanced.dynamodb; + +import org.openjdk.jmh.annotations.Benchmark; +import org.openjdk.jmh.annotations.BenchmarkMode; +import org.openjdk.jmh.annotations.Fork; +import org.openjdk.jmh.annotations.Measurement; +import org.openjdk.jmh.annotations.Mode; +import org.openjdk.jmh.annotations.OutputTimeUnit; +import org.openjdk.jmh.annotations.Scope; +import org.openjdk.jmh.annotations.Setup; +import org.openjdk.jmh.annotations.State; +import org.openjdk.jmh.annotations.Warmup; +import software.amazon.awssdk.enhanced.dynamodb.AttributeConverterProvider; +import software.amazon.awssdk.enhanced.dynamodb.document.EnhancedDocument; +import com.amazonaws.services.dynamodbv2.document.Item; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.concurrent.TimeUnit; + +@BenchmarkMode(Mode.SampleTime) +@OutputTimeUnit(TimeUnit.MICROSECONDS) +@Warmup(iterations = 3, time = 2) +@Measurement(iterations = 5, time = 2) +@Fork(2) +@State(Scope.Benchmark) +public class JsonConversionBenchmark { + + private EnhancedDocument v2Document; + private Item v1Item; + + private EnhancedDocument entireDoc; + private EnhancedDocument doc50b; + private EnhancedDocument doc100b; + private EnhancedDocument doc500b; + private EnhancedDocument doc1kb; + private Item v1Item50b; + private Item v1Item100b; + private Item v1Item500b; + private Item v1Item1kb; + + @Setup + public void setup() throws IOException { + String entireJsonString = new String(Files + .readAllBytes(Paths.get("src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/large_data.json"))); + String payload50b = new String(Files + .readAllBytes(Paths.get("src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_50b.json"))); + String payload100b = new String(Files + .readAllBytes(Paths.get("src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_100b.json"))); + String payload500b = new String(Files + .readAllBytes(Paths.get("src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_500b.json"))); + String payload1kb = new String(Files + .readAllBytes(Paths.get("src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_1kb.json"))); + + + v2Document = EnhancedDocument.fromJson(entireJsonString); + v1Item = Item.fromJSON(entireJsonString); + + v1Item.withJSON("entireDocument", entireJsonString); + + entireDoc = EnhancedDocument.builder() + .addAttributeConverterProvider(AttributeConverterProvider.defaultProvider()) + .putString("id", "entireDoc") + .putJson("entireDocument", entireJsonString) + .build(); + + doc50b = EnhancedDocument.builder() + .addAttributeConverterProvider(AttributeConverterProvider.defaultProvider()) + .putString("id", "test") + .putJson("data", payload50b) + .build(); + + doc100b = EnhancedDocument.builder() + .addAttributeConverterProvider(AttributeConverterProvider.defaultProvider()) + .putString("id", "test") + .putJson("data", payload100b) + .build(); + + doc500b = EnhancedDocument.builder() + .addAttributeConverterProvider(AttributeConverterProvider.defaultProvider()) + .putString("id", "test") + .putJson("data", payload500b) + .build(); + + doc1kb = EnhancedDocument.builder() + .addAttributeConverterProvider(AttributeConverterProvider.defaultProvider()) + .putString("id", "test") + .putJson("data", payload1kb) + .build(); + + v1Item50b = new Item() + .withString("id", "test") + .withJSON("data", payload50b); + + v1Item100b = new Item() + .withString("id", "test") + .withJSON("data", payload100b); + + v1Item500b = new Item() + .withString("id", "test") + .withJSON("data", payload500b); + + v1Item1kb = new Item() + .withString("id", "test") + .withJSON("data", payload1kb); + } + + // getJson() meant to get a sub structure of a larger json file. testing with different sizes. + @Benchmark + public String getJson50b() { + return doc50b.getJson("data"); + } + + @Benchmark + public String getJson100b() { + return doc100b.getJson("data"); + } + + @Benchmark + public String getJson500b() { + return doc500b.getJson("data"); + } + + @Benchmark + public String getJson1kb() { + return doc1kb.getJson("data"); + } + + @Benchmark + public String v1GetJson50b() { + return v1Item50b.getJSON("data"); + } + + @Benchmark + public String v1GetJson100b() { + return v1Item100b.getJSON("data"); + } + + @Benchmark + public String v1GetJson500b() { + return v1Item500b.getJSON("data"); + } + + @Benchmark + public String v1GetJson1kb() { + return v1Item1kb.getJSON("data"); + } + + @Benchmark + public String v1GetJsonEntireDoc() { + return v1Item.getJSON("entireDocument"); + } + + @Benchmark + public String v2GetJsonEntireDoc() { + return entireDoc.getJson("entireDocument"); + } + + // toJson() benchmarking (only for large data set) + @Benchmark + public String v1ToJson() { + return v1Item.toJSON(); + } + + @Benchmark + public String v2ToJson() { + return v2Document.toJson(); + } + +} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/large_data.json b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/large_data.json new file mode 100644 index 000000000000..5bc2458f3050 --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/large_data.json @@ -0,0 +1 @@ +{"hash_set": "randomUUID_234", "dataSet": "Large JSON Example", "version": "1.0", "timestamp": "2025-09-30T12:05:53.277729", "records": [{"id": "rec-00001", "createdAt": "2025-04-08T04:11:11Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-70076884", "name": "Umbrella Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Sarah Wilson", "email": "jennifer.davis@mock.co", "phone": "+1-912-209-3424"}, {"type": "technical", "name": "James Johnson", "email": "william.moore@demo.net", "phone": "+1-974-301-9214"}]}, "subscription": {"plan": "custom", "startDate": "2023-12-21", "renewalDate": "2026-12-21", "amount": 17636.69, "currency": "EUR", "services": [{"id": "svc-427", "name": "Security", "quantity": 7893, "unit": "user", "unitPrice": 428.2}, {"id": "svc-449", "name": "Support Plan", "quantity": 73, "unit": "unit", "unitPrice": 213.17}]}}, {"id": "rec-00002", "createdAt": "2022-09-11T21:11:38Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-28364622", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "karen.garcia@fake.tech", "phone": "+1-679-619-6165"}, {"type": "technical", "name": "Sarah Moore", "email": "joseph.harris@demo.net", "phone": "+1-611-631-7486"}]}, "subscription": {"plan": "free", "startDate": "2024-06-27", "renewalDate": "2026-06-27", "amount": 44828.85, "currency": "USD", "services": [{"id": "svc-322", "name": "Security", "quantity": 2950, "unit": "instance", "unitPrice": 305.83}, {"id": "svc-400", "name": "Support Plan", "quantity": 44, "unit": "package", "unitPrice": 1746.27}]}}, {"id": "rec-00003", "createdAt": "2020-03-26T13:16:42Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54191800", "name": "Soylent Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "James Wilson", "email": "patricia.robinson@mock.co", "phone": "+1-344-439-2194"}, {"type": "technical", "name": "Richard Williams", "email": "sarah.davis@test.org", "phone": "+1-455-734-9918"}]}, "subscription": {"plan": "free", "startDate": "2022-11-11", "renewalDate": "2024-11-11", "amount": 39652.42, "currency": "AUD", "services": [{"id": "svc-519", "name": "Cloud Storage", "quantity": 8699, "unit": "user", "unitPrice": 132.31}, {"id": "svc-930", "name": "Consulting", "quantity": 82, "unit": "session", "unitPrice": 1487.05}]}}, {"id": "rec-00004", "createdAt": "2024-07-09T16:41:49Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-70271868", "name": "Massive Dynamic", "segment": "startup", "industry": "healthcare", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "James Martin", "email": "jennifer.williams@example.com", "phone": "+1-335-306-3010"}, {"type": "technical", "name": "Thomas Williams", "email": "patricia.johnson@fake.tech", "phone": "+1-534-903-8193"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-11", "renewalDate": "2025-01-11", "amount": 44770.12, "currency": "GBP", "services": [{"id": "svc-706", "name": "Security", "quantity": 5842, "unit": "user", "unitPrice": 197.81}, {"id": "svc-595", "name": "Support Plan", "quantity": 64, "unit": "package", "unitPrice": 46.85}]}}, {"id": "rec-00005", "createdAt": "2023-10-22T17:38:35Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80579834", "name": "Acme Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "thomas.harris@mock.co", "phone": "+1-678-861-3936"}, {"type": "technical", "name": "Michael Brown", "email": "william.miller@example.com", "phone": "+1-322-951-1749"}]}, "subscription": {"plan": "basic", "startDate": "2021-01-20", "renewalDate": "2023-01-20", "amount": 22972.97, "currency": "GBP", "services": [{"id": "svc-405", "name": "Security", "quantity": 1330, "unit": "instance", "unitPrice": 62.91}, {"id": "svc-128", "name": "Maintenance", "quantity": 87, "unit": "subscription", "unitPrice": 923.25}]}}, {"id": "rec-00006", "createdAt": "2024-01-28T00:20:57Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-58023552", "name": "Aperture Science", "segment": "startup", "industry": "education", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "karen.white@fake.tech", "phone": "+1-486-503-2582"}, {"type": "technical", "name": "Charles Martin", "email": "susan.martin@test.org", "phone": "+1-640-619-1111"}]}, "subscription": {"plan": "free", "startDate": "2021-01-12", "renewalDate": "2023-01-12", "amount": 40285.91, "currency": "AUD", "services": [{"id": "svc-889", "name": "Analytics", "quantity": 3566, "unit": "user", "unitPrice": 178.13}, {"id": "svc-228", "name": "Implementation", "quantity": 76, "unit": "hour", "unitPrice": 1757.28}]}}, {"id": "rec-00007", "createdAt": "2022-10-11T07:29:57Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39449154", "name": "Globex", "segment": "mid-market", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Patricia Garcia", "email": "mary.anderson@example.com", "phone": "+1-758-819-6787"}, {"type": "technical", "name": "Jennifer Robinson", "email": "charles.white@fake.tech", "phone": "+1-297-383-6857"}]}, "subscription": {"plan": "custom", "startDate": "2024-06-08", "renewalDate": "2025-06-08", "amount": 39445.96, "currency": "GBP", "services": [{"id": "svc-160", "name": "Compute Instances", "quantity": 7786, "unit": "TB", "unitPrice": 125.49}, {"id": "svc-886", "name": "Maintenance", "quantity": 32, "unit": "subscription", "unitPrice": 1005.59}]}}, {"id": "rec-00008", "createdAt": "2024-02-03T13:22:12Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-32081886", "name": "Soylent Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "David Thompson", "email": "charles.smith@fake.tech", "phone": "+1-523-176-6629"}, {"type": "technical", "name": "John Miller", "email": "john.johnson@test.org", "phone": "+1-574-819-9936"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-08", "renewalDate": "2022-06-08", "amount": 13022.52, "currency": "CAD", "services": [{"id": "svc-117", "name": "Cloud Storage", "quantity": 3916, "unit": "user", "unitPrice": 258.93}, {"id": "svc-919", "name": "Support Plan", "quantity": 63, "unit": "package", "unitPrice": 1675.84}]}}, {"id": "rec-00009", "createdAt": "2022-02-05T04:17:59Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38149848", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Thomas Garcia", "email": "michael.johnson@example.com", "phone": "+1-670-314-5503"}, {"type": "technical", "name": "Joseph Brown", "email": "robert.thompson@example.com", "phone": "+1-915-974-7880"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-04", "renewalDate": "2025-12-04", "amount": 5176.52, "currency": "USD", "services": [{"id": "svc-908", "name": "Security", "quantity": 7079, "unit": "instance", "unitPrice": 276.19}, {"id": "svc-768", "name": "Implementation", "quantity": 18, "unit": "session", "unitPrice": 114.25}]}}, {"id": "rec-00010", "createdAt": "2024-11-21T21:06:41Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15016584", "name": "Acme Corp", "segment": "startup", "industry": "finance", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Karen Anderson", "email": "sarah.white@fake.tech", "phone": "+1-679-916-6553"}, {"type": "technical", "name": "James Wilson", "email": "mary.moore@mock.co", "phone": "+1-782-382-5171"}]}, "subscription": {"plan": "custom", "startDate": "2024-09-25", "renewalDate": "2026-09-25", "amount": 26746.13, "currency": "AUD", "services": [{"id": "svc-821", "name": "Database", "quantity": 2243, "unit": "user", "unitPrice": 364.03}, {"id": "svc-997", "name": "Consulting", "quantity": 59, "unit": "subscription", "unitPrice": 367.09}]}}, {"id": "rec-00011", "createdAt": "2022-04-05T09:37:13Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-81777961", "name": "Weyland-Yutani", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Jessica Martinez", "email": "robert.thompson@demo.net", "phone": "+1-633-564-8491"}, {"type": "technical", "name": "Sarah Thompson", "email": "linda.robinson@example.com", "phone": "+1-393-181-2938"}]}, "subscription": {"plan": "professional", "startDate": "2021-04-06", "renewalDate": "2024-04-06", "amount": 26411.57, "currency": "EUR", "services": [{"id": "svc-915", "name": "Security", "quantity": 5950, "unit": "instance", "unitPrice": 316.69}, {"id": "svc-638", "name": "Implementation", "quantity": 39, "unit": "session", "unitPrice": 1206.52}]}}, {"id": "rec-00012", "createdAt": "2021-11-15T15:04:07Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-36654983", "name": "LexCorp", "segment": "small-business", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Michael Moore", "email": "nancy.robinson@demo.net", "phone": "+1-408-802-2677"}, {"type": "technical", "name": "Michael Davis", "email": "sarah.martinez@sample.io", "phone": "+1-569-462-6357"}]}, "subscription": {"plan": "free", "startDate": "2021-04-16", "renewalDate": "2022-04-16", "amount": 37071.98, "currency": "EUR", "services": [{"id": "svc-788", "name": "Cloud Storage", "quantity": 5092, "unit": "user", "unitPrice": 365.43}, {"id": "svc-310", "name": "Training", "quantity": 11, "unit": "session", "unitPrice": 1323.88}]}}, {"id": "rec-00013", "createdAt": "2021-02-07T12:50:23Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76547029", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Thomas Wilson", "email": "karen.brown@test.org", "phone": "+1-366-582-8787"}, {"type": "technical", "name": "Elizabeth Martinez", "email": "charles.martinez@test.org", "phone": "+1-498-750-4342"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-04", "renewalDate": "2026-07-04", "amount": 21247.08, "currency": "EUR", "services": [{"id": "svc-553", "name": "Database", "quantity": 6057, "unit": "user", "unitPrice": 304.73}, {"id": "svc-736", "name": "Implementation", "quantity": 81, "unit": "session", "unitPrice": 1335.25}]}}, {"id": "rec-00014", "createdAt": "2023-08-25T19:23:19Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-83168502", "name": "Oscorp", "segment": "enterprise", "industry": "education", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "richard.williams@fake.tech", "phone": "+1-838-809-2641"}, {"type": "technical", "name": "Jennifer Brown", "email": "sarah.martin@example.com", "phone": "+1-440-880-7682"}]}, "subscription": {"plan": "free", "startDate": "2020-08-17", "renewalDate": "2021-08-17", "amount": 18984.2, "currency": "AUD", "services": [{"id": "svc-320", "name": "Cloud Storage", "quantity": 3411, "unit": "license", "unitPrice": 56.8}, {"id": "svc-445", "name": "Maintenance", "quantity": 77, "unit": "hour", "unitPrice": 1226.1}]}}, {"id": "rec-00015", "createdAt": "2022-05-13T08:10:39Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-88614658", "name": "Weyland-Yutani", "segment": "startup", "industry": "technology", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Linda Jones", "email": "nancy.taylor@sample.io", "phone": "+1-211-212-4484"}, {"type": "technical", "name": "Sarah Miller", "email": "jennifer.wilson@sample.io", "phone": "+1-438-943-5799"}]}, "subscription": {"plan": "free", "startDate": "2022-03-03", "renewalDate": "2024-03-03", "amount": 1999.11, "currency": "GBP", "services": [{"id": "svc-791", "name": "Database", "quantity": 4275, "unit": "license", "unitPrice": 182.01}, {"id": "svc-180", "name": "Implementation", "quantity": 59, "unit": "session", "unitPrice": 720.75}]}}, {"id": "rec-00016", "createdAt": "2020-12-04T01:34:41Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-61209491", "name": "Virtucon", "segment": "small-business", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "William Jackson", "email": "robert.moore@test.org", "phone": "+1-426-997-1567"}, {"type": "technical", "name": "Susan Thomas", "email": "mary.taylor@sample.io", "phone": "+1-589-534-7255"}]}, "subscription": {"plan": "basic", "startDate": "2022-08-09", "renewalDate": "2023-08-09", "amount": 31504.16, "currency": "GBP", "services": [{"id": "svc-838", "name": "Compute Instances", "quantity": 4493, "unit": "user", "unitPrice": 254.28}, {"id": "svc-435", "name": "Support Plan", "quantity": 11, "unit": "session", "unitPrice": 599.02}]}}, {"id": "rec-00017", "createdAt": "2021-08-06T23:00:30Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-25440159", "name": "Virtucon", "segment": "mid-market", "industry": "retail", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "susan.thomas@demo.net", "phone": "+1-281-979-2151"}, {"type": "technical", "name": "Thomas Garcia", "email": "sarah.davis@sample.io", "phone": "+1-345-883-3631"}]}, "subscription": {"plan": "basic", "startDate": "2022-11-19", "renewalDate": "2023-11-19", "amount": 40990.81, "currency": "AUD", "services": [{"id": "svc-783", "name": "Cloud Storage", "quantity": 2572, "unit": "user", "unitPrice": 283.2}, {"id": "svc-908", "name": "Consulting", "quantity": 93, "unit": "hour", "unitPrice": 1530.95}]}}, {"id": "rec-00018", "createdAt": "2022-05-13T08:46:42Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-14407421", "name": "Oscorp", "segment": "small-business", "industry": "technology", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Robert Smith", "email": "patricia.wilson@test.org", "phone": "+1-695-505-6900"}, {"type": "technical", "name": "David Williams", "email": "patricia.johnson@mock.co", "phone": "+1-698-221-5826"}]}, "subscription": {"plan": "professional", "startDate": "2020-11-21", "renewalDate": "2023-11-21", "amount": 23597.82, "currency": "USD", "services": [{"id": "svc-559", "name": "Security", "quantity": 6496, "unit": "GB", "unitPrice": 311.0}, {"id": "svc-937", "name": "Support Plan", "quantity": 82, "unit": "package", "unitPrice": 501.79}]}}, {"id": "rec-00019", "createdAt": "2024-04-18T04:55:38Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-48542985", "name": "Stark Industries", "segment": "mid-market", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "jessica.wilson@test.org", "phone": "+1-610-924-2089"}, {"type": "technical", "name": "Michael Martin", "email": "david.davis@example.com", "phone": "+1-259-574-8568"}]}, "subscription": {"plan": "free", "startDate": "2022-12-12", "renewalDate": "2023-12-12", "amount": 20338.79, "currency": "CAD", "services": [{"id": "svc-118", "name": "Analytics", "quantity": 3931, "unit": "user", "unitPrice": 485.26}, {"id": "svc-937", "name": "Maintenance", "quantity": 7, "unit": "subscription", "unitPrice": 1457.96}]}}, {"id": "rec-00020", "createdAt": "2020-11-22T03:03:15Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-93756742", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Jennifer Brown", "email": "mary.wilson@test.org", "phone": "+1-709-484-8691"}, {"type": "technical", "name": "Susan Harris", "email": "joseph.thompson@mock.co", "phone": "+1-315-802-4369"}]}, "subscription": {"plan": "free", "startDate": "2024-05-07", "renewalDate": "2025-05-07", "amount": 34001.93, "currency": "GBP", "services": [{"id": "svc-386", "name": "Database", "quantity": 2667, "unit": "TB", "unitPrice": 153.91}, {"id": "svc-767", "name": "Support Plan", "quantity": 10, "unit": "unit", "unitPrice": 1819.59}]}}, {"id": "rec-00021", "createdAt": "2021-08-05T17:57:12Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24992172", "name": "Acme Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Mary Martin", "email": "michael.white@demo.net", "phone": "+1-838-975-3962"}, {"type": "technical", "name": "Karen Anderson", "email": "jessica.moore@example.com", "phone": "+1-617-401-5707"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-24", "renewalDate": "2023-02-24", "amount": 12879.47, "currency": "AUD", "services": [{"id": "svc-897", "name": "Compute Instances", "quantity": 7612, "unit": "GB", "unitPrice": 160.88}, {"id": "svc-516", "name": "Training", "quantity": 47, "unit": "session", "unitPrice": 1883.64}]}}, {"id": "rec-00022", "createdAt": "2020-08-15T04:11:58Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-33256966", "name": "LexCorp", "segment": "startup", "industry": "education", "yearFounded": 1972, "contacts": [{"type": "primary", "name": "David Anderson", "email": "susan.jackson@fake.tech", "phone": "+1-698-954-8687"}, {"type": "technical", "name": "Patricia Williams", "email": "charles.miller@fake.tech", "phone": "+1-992-565-1368"}]}, "subscription": {"plan": "basic", "startDate": "2021-04-07", "renewalDate": "2022-04-07", "amount": 45093.74, "currency": "CAD", "services": [{"id": "svc-402", "name": "Analytics", "quantity": 6813, "unit": "TB", "unitPrice": 32.65}, {"id": "svc-539", "name": "Implementation", "quantity": 18, "unit": "subscription", "unitPrice": 356.41}]}}, {"id": "rec-00023", "createdAt": "2025-03-24T07:52:45Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-50301956", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "john.johnson@example.com", "phone": "+1-804-103-8993"}, {"type": "technical", "name": "Thomas Jackson", "email": "patricia.moore@mock.co", "phone": "+1-444-306-2481"}]}, "subscription": {"plan": "free", "startDate": "2020-02-18", "renewalDate": "2023-02-18", "amount": 36897.13, "currency": "EUR", "services": [{"id": "svc-132", "name": "Compute Instances", "quantity": 8962, "unit": "GB", "unitPrice": 21.22}, {"id": "svc-438", "name": "Implementation", "quantity": 32, "unit": "hour", "unitPrice": 34.21}]}}, {"id": "rec-00024", "createdAt": "2024-04-18T15:08:00Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-79505886", "name": "Umbrella Corp", "segment": "mid-market", "industry": "retail", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Joseph Anderson", "email": "joseph.anderson@mock.co", "phone": "+1-574-862-1592"}, {"type": "technical", "name": "David Harris", "email": "david.anderson@example.com", "phone": "+1-540-856-6930"}]}, "subscription": {"plan": "free", "startDate": "2024-12-07", "renewalDate": "2026-12-07", "amount": 11681.22, "currency": "GBP", "services": [{"id": "svc-291", "name": "Security", "quantity": 7256, "unit": "TB", "unitPrice": 178.56}, {"id": "svc-247", "name": "Training", "quantity": 91, "unit": "package", "unitPrice": 837.38}]}}, {"id": "rec-00025", "createdAt": "2024-07-01T04:15:07Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-67409474", "name": "Massive Dynamic", "segment": "small-business", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Michael Taylor", "email": "jennifer.miller@test.org", "phone": "+1-265-368-3310"}, {"type": "technical", "name": "John Jackson", "email": "linda.robinson@test.org", "phone": "+1-267-245-8659"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-02-22", "renewalDate": "2024-02-22", "amount": 6940.9, "currency": "CAD", "services": [{"id": "svc-901", "name": "Compute Instances", "quantity": 6909, "unit": "license", "unitPrice": 227.51}, {"id": "svc-862", "name": "Training", "quantity": 89, "unit": "session", "unitPrice": 1055.5}]}}, {"id": "rec-00026", "createdAt": "2023-03-15T06:02:53Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-49134371", "name": "Aperture Science", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "William Harris", "email": "john.davis@example.com", "phone": "+1-418-356-7639"}, {"type": "technical", "name": "Mary Jones", "email": "david.thomas@example.com", "phone": "+1-825-560-8093"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-25", "renewalDate": "2026-06-25", "amount": 20731.41, "currency": "AUD", "services": [{"id": "svc-845", "name": "Database", "quantity": 1221, "unit": "TB", "unitPrice": 330.5}, {"id": "svc-855", "name": "Consulting", "quantity": 81, "unit": "unit", "unitPrice": 878.09}]}}, {"id": "rec-00027", "createdAt": "2024-07-15T17:59:26Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-85120899", "name": "Initech", "segment": "startup", "industry": "technology", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "michael.martinez@demo.net", "phone": "+1-480-339-3538"}, {"type": "technical", "name": "Elizabeth Martinez", "email": "jennifer.martinez@sample.io", "phone": "+1-893-774-1670"}]}, "subscription": {"plan": "professional", "startDate": "2024-02-24", "renewalDate": "2027-02-24", "amount": 35934.32, "currency": "AUD", "services": [{"id": "svc-701", "name": "Security", "quantity": 8255, "unit": "user", "unitPrice": 263.27}, {"id": "svc-431", "name": "Consulting", "quantity": 4, "unit": "subscription", "unitPrice": 1017.4}]}}, {"id": "rec-00028", "createdAt": "2025-08-02T22:23:53Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-71519544", "name": "Umbrella Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "nancy.thomas@mock.co", "phone": "+1-366-171-5838"}, {"type": "technical", "name": "Patricia Moore", "email": "mary.williams@mock.co", "phone": "+1-599-903-8527"}]}, "subscription": {"plan": "professional", "startDate": "2021-05-28", "renewalDate": "2022-05-28", "amount": 48776.2, "currency": "AUD", "services": [{"id": "svc-751", "name": "Analytics", "quantity": 9646, "unit": "TB", "unitPrice": 47.77}, {"id": "svc-681", "name": "Training", "quantity": 69, "unit": "session", "unitPrice": 1642.49}]}}, {"id": "rec-00029", "createdAt": "2025-07-28T21:19:01Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-25650992", "name": "Wayne Enterprises", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "Michael Smith", "email": "richard.thomas@sample.io", "phone": "+1-304-848-6999"}, {"type": "technical", "name": "Joseph Williams", "email": "jennifer.johnson@sample.io", "phone": "+1-647-138-9790"}]}, "subscription": {"plan": "free", "startDate": "2022-12-16", "renewalDate": "2025-12-16", "amount": 39856.5, "currency": "CAD", "services": [{"id": "svc-352", "name": "Analytics", "quantity": 3769, "unit": "GB", "unitPrice": 267.73}, {"id": "svc-216", "name": "Support Plan", "quantity": 6, "unit": "unit", "unitPrice": 1790.84}]}}, {"id": "rec-00030", "createdAt": "2022-04-02T03:43:22Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76867830", "name": "LexCorp", "segment": "small-business", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "linda.thomas@demo.net", "phone": "+1-431-348-9282"}, {"type": "technical", "name": "Thomas Thompson", "email": "james.thomas@test.org", "phone": "+1-298-905-8120"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-01", "renewalDate": "2023-02-01", "amount": 34471.27, "currency": "GBP", "services": [{"id": "svc-633", "name": "Analytics", "quantity": 5718, "unit": "user", "unitPrice": 350.94}, {"id": "svc-774", "name": "Implementation", "quantity": 28, "unit": "hour", "unitPrice": 845.63}]}}, {"id": "rec-00031", "createdAt": "2020-02-09T19:33:24Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-13706198", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Robert Taylor", "email": "michael.johnson@fake.tech", "phone": "+1-200-352-1195"}, {"type": "technical", "name": "Thomas White", "email": "joseph.miller@demo.net", "phone": "+1-606-211-4371"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-28", "renewalDate": "2025-01-28", "amount": 19260.16, "currency": "USD", "services": [{"id": "svc-430", "name": "Analytics", "quantity": 6155, "unit": "instance", "unitPrice": 277.14}, {"id": "svc-440", "name": "Support Plan", "quantity": 92, "unit": "session", "unitPrice": 966.84}]}}, {"id": "rec-00032", "createdAt": "2025-02-12T06:53:12Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-28389993", "name": "Virtucon", "segment": "enterprise", "industry": "education", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Sarah Garcia", "email": "michael.thomas@test.org", "phone": "+1-430-168-6663"}, {"type": "technical", "name": "Michael Harris", "email": "sarah.anderson@example.com", "phone": "+1-737-608-9786"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-07-17", "renewalDate": "2023-07-17", "amount": 35764.98, "currency": "USD", "services": [{"id": "svc-823", "name": "Cloud Storage", "quantity": 752, "unit": "user", "unitPrice": 328.82}, {"id": "svc-953", "name": "Support Plan", "quantity": 65, "unit": "hour", "unitPrice": 127.49}]}}, {"id": "rec-00033", "createdAt": "2025-04-12T05:37:10Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14053749", "name": "Aperture Science", "segment": "startup", "industry": "manufacturing", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Jennifer Martin", "email": "james.anderson@mock.co", "phone": "+1-348-958-1736"}, {"type": "technical", "name": "Joseph Martin", "email": "william.anderson@demo.net", "phone": "+1-945-880-1324"}]}, "subscription": {"plan": "free", "startDate": "2022-12-12", "renewalDate": "2023-12-12", "amount": 29898.13, "currency": "USD", "services": [{"id": "svc-632", "name": "Analytics", "quantity": 8266, "unit": "instance", "unitPrice": 188.81}, {"id": "svc-155", "name": "Implementation", "quantity": 50, "unit": "subscription", "unitPrice": 77.69}]}}, {"id": "rec-00034", "createdAt": "2024-02-17T22:02:15Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35198933", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "Nancy Smith", "email": "robert.anderson@example.com", "phone": "+1-292-861-1308"}, {"type": "technical", "name": "Nancy Smith", "email": "patricia.garcia@fake.tech", "phone": "+1-435-934-1413"}]}, "subscription": {"plan": "free", "startDate": "2023-04-13", "renewalDate": "2026-04-13", "amount": 38687.44, "currency": "GBP", "services": [{"id": "svc-784", "name": "Security", "quantity": 8449, "unit": "user", "unitPrice": 276.44}, {"id": "svc-641", "name": "Implementation", "quantity": 56, "unit": "session", "unitPrice": 1157.26}]}}, {"id": "rec-00035", "createdAt": "2023-01-09T19:35:54Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-62939492", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Charles Jackson", "email": "nancy.anderson@sample.io", "phone": "+1-621-556-6659"}, {"type": "technical", "name": "William Jones", "email": "jennifer.williams@mock.co", "phone": "+1-616-399-7450"}]}, "subscription": {"plan": "basic", "startDate": "2023-05-18", "renewalDate": "2024-05-18", "amount": 1323.37, "currency": "EUR", "services": [{"id": "svc-331", "name": "Analytics", "quantity": 3079, "unit": "instance", "unitPrice": 133.52}, {"id": "svc-281", "name": "Consulting", "quantity": 47, "unit": "package", "unitPrice": 1354.49}]}}, {"id": "rec-00036", "createdAt": "2020-09-10T05:58:28Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55882893", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "sarah.jackson@fake.tech", "phone": "+1-923-749-8195"}, {"type": "technical", "name": "Elizabeth Thomas", "email": "karen.miller@fake.tech", "phone": "+1-985-819-2967"}]}, "subscription": {"plan": "free", "startDate": "2022-02-26", "renewalDate": "2025-02-26", "amount": 4809.55, "currency": "GBP", "services": [{"id": "svc-737", "name": "Database", "quantity": 1913, "unit": "instance", "unitPrice": 11.9}, {"id": "svc-928", "name": "Support Plan", "quantity": 19, "unit": "package", "unitPrice": 1433.26}]}}, {"id": "rec-00037", "createdAt": "2023-01-13T03:37:38Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-34386314", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "technology", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Nancy Thomas", "email": "thomas.williams@mock.co", "phone": "+1-588-743-1252"}, {"type": "technical", "name": "Karen Garcia", "email": "susan.thomas@mock.co", "phone": "+1-602-994-1669"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-02-16", "renewalDate": "2023-02-16", "amount": 33488.0, "currency": "AUD", "services": [{"id": "svc-233", "name": "Analytics", "quantity": 5044, "unit": "instance", "unitPrice": 176.15}, {"id": "svc-544", "name": "Training", "quantity": 51, "unit": "package", "unitPrice": 1970.0}]}}, {"id": "rec-00038", "createdAt": "2025-07-19T18:23:27Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-68804565", "name": "Acme Corp", "segment": "startup", "industry": "education", "yearFounded": 1975, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "sarah.garcia@example.com", "phone": "+1-430-379-7711"}, {"type": "technical", "name": "Elizabeth White", "email": "patricia.martinez@sample.io", "phone": "+1-986-796-3228"}]}, "subscription": {"plan": "basic", "startDate": "2024-10-21", "renewalDate": "2027-10-21", "amount": 32821.12, "currency": "EUR", "services": [{"id": "svc-341", "name": "Security", "quantity": 102, "unit": "instance", "unitPrice": 468.12}, {"id": "svc-813", "name": "Implementation", "quantity": 28, "unit": "package", "unitPrice": 331.85}]}}, {"id": "rec-00039", "createdAt": "2022-03-04T21:55:03Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-57103067", "name": "Globex", "segment": "small-business", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "William Robinson", "email": "sarah.miller@sample.io", "phone": "+1-734-314-9328"}, {"type": "technical", "name": "Joseph Jackson", "email": "david.davis@fake.tech", "phone": "+1-720-337-7122"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-21", "renewalDate": "2025-03-21", "amount": 30910.02, "currency": "AUD", "services": [{"id": "svc-105", "name": "Cloud Storage", "quantity": 8041, "unit": "license", "unitPrice": 445.63}, {"id": "svc-402", "name": "Implementation", "quantity": 100, "unit": "session", "unitPrice": 803.4}]}}, {"id": "rec-00040", "createdAt": "2024-04-15T23:57:32Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48301178", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "Richard Robinson", "email": "robert.martinez@mock.co", "phone": "+1-731-740-5622"}, {"type": "technical", "name": "John Johnson", "email": "robert.miller@mock.co", "phone": "+1-230-543-1510"}]}, "subscription": {"plan": "professional", "startDate": "2024-12-03", "renewalDate": "2025-12-03", "amount": 14640.95, "currency": "GBP", "services": [{"id": "svc-161", "name": "Compute Instances", "quantity": 6179, "unit": "user", "unitPrice": 361.89}, {"id": "svc-292", "name": "Training", "quantity": 92, "unit": "package", "unitPrice": 1687.8}]}}, {"id": "rec-00041", "createdAt": "2023-05-10T03:17:25Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-10177514", "name": "Stark Industries", "segment": "startup", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "james.williams@test.org", "phone": "+1-860-385-7637"}, {"type": "technical", "name": "Charles Anderson", "email": "nancy.anderson@demo.net", "phone": "+1-292-215-7585"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-06-18", "renewalDate": "2022-06-18", "amount": 23263.0, "currency": "GBP", "services": [{"id": "svc-978", "name": "Analytics", "quantity": 2774, "unit": "user", "unitPrice": 330.95}, {"id": "svc-834", "name": "Maintenance", "quantity": 90, "unit": "package", "unitPrice": 1567.97}]}}, {"id": "rec-00042", "createdAt": "2021-01-09T12:52:03Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-90686181", "name": "Cyberdyne Systems", "segment": "startup", "industry": "manufacturing", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Thomas Williams", "email": "patricia.williams@mock.co", "phone": "+1-777-544-8143"}, {"type": "technical", "name": "Nancy Martin", "email": "james.jones@sample.io", "phone": "+1-590-814-7003"}]}, "subscription": {"plan": "custom", "startDate": "2024-04-04", "renewalDate": "2026-04-04", "amount": 3615.35, "currency": "USD", "services": [{"id": "svc-398", "name": "Analytics", "quantity": 3218, "unit": "instance", "unitPrice": 97.46}, {"id": "svc-900", "name": "Training", "quantity": 16, "unit": "hour", "unitPrice": 912.73}]}}, {"id": "rec-00043", "createdAt": "2025-03-22T01:11:31Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-53738002", "name": "Initech", "segment": "enterprise", "industry": "finance", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "William Moore", "email": "elizabeth.garcia@demo.net", "phone": "+1-715-775-8757"}, {"type": "technical", "name": "William Williams", "email": "john.smith@fake.tech", "phone": "+1-239-405-2198"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-04", "renewalDate": "2026-04-04", "amount": 14907.82, "currency": "GBP", "services": [{"id": "svc-681", "name": "Compute Instances", "quantity": 4579, "unit": "license", "unitPrice": 194.49}, {"id": "svc-409", "name": "Training", "quantity": 99, "unit": "hour", "unitPrice": 1096.28}]}}, {"id": "rec-00044", "createdAt": "2025-12-12T16:15:23Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-39410024", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "retail", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "David Brown", "email": "elizabeth.wilson@fake.tech", "phone": "+1-923-559-2375"}, {"type": "technical", "name": "John Thomas", "email": "mary.moore@fake.tech", "phone": "+1-888-161-2680"}]}, "subscription": {"plan": "free", "startDate": "2021-05-06", "renewalDate": "2022-05-06", "amount": 38131.9, "currency": "USD", "services": [{"id": "svc-365", "name": "Analytics", "quantity": 2856, "unit": "user", "unitPrice": 174.04}, {"id": "svc-868", "name": "Implementation", "quantity": 92, "unit": "session", "unitPrice": 1752.46}]}}, {"id": "rec-00045", "createdAt": "2021-06-04T06:11:25Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-68824251", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "technology", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "David Williams", "email": "robert.taylor@sample.io", "phone": "+1-768-399-4964"}, {"type": "technical", "name": "Elizabeth Harris", "email": "william.jackson@test.org", "phone": "+1-743-402-2402"}]}, "subscription": {"plan": "custom", "startDate": "2021-01-04", "renewalDate": "2024-01-04", "amount": 30450.81, "currency": "AUD", "services": [{"id": "svc-431", "name": "Analytics", "quantity": 6523, "unit": "TB", "unitPrice": 24.57}, {"id": "svc-709", "name": "Support Plan", "quantity": 2, "unit": "session", "unitPrice": 801.13}]}}, {"id": "rec-00046", "createdAt": "2022-11-25T00:32:34Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-26142993", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "James Miller", "email": "nancy.thompson@sample.io", "phone": "+1-492-339-6612"}, {"type": "technical", "name": "Joseph Miller", "email": "linda.white@test.org", "phone": "+1-263-775-3594"}]}, "subscription": {"plan": "professional", "startDate": "2021-06-08", "renewalDate": "2023-06-08", "amount": 9189.67, "currency": "GBP", "services": [{"id": "svc-277", "name": "Security", "quantity": 4352, "unit": "user", "unitPrice": 137.67}, {"id": "svc-377", "name": "Training", "quantity": 22, "unit": "subscription", "unitPrice": 58.03}]}}, {"id": "rec-00047", "createdAt": "2025-04-22T04:21:59Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-42850140", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "finance", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "James Garcia", "email": "joseph.brown@mock.co", "phone": "+1-977-229-6403"}, {"type": "technical", "name": "Linda Williams", "email": "thomas.anderson@example.com", "phone": "+1-918-778-5957"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-11", "renewalDate": "2026-07-11", "amount": 6815.16, "currency": "GBP", "services": [{"id": "svc-377", "name": "Security", "quantity": 2456, "unit": "GB", "unitPrice": 139.64}, {"id": "svc-166", "name": "Consulting", "quantity": 89, "unit": "package", "unitPrice": 1852.73}]}}, {"id": "rec-00048", "createdAt": "2022-05-10T20:46:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65955720", "name": "Massive Dynamic", "segment": "startup", "industry": "education", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "patricia.white@demo.net", "phone": "+1-383-930-4589"}, {"type": "technical", "name": "Susan Wilson", "email": "charles.jones@example.com", "phone": "+1-752-822-5590"}]}, "subscription": {"plan": "basic", "startDate": "2023-06-02", "renewalDate": "2026-06-02", "amount": 29757.31, "currency": "GBP", "services": [{"id": "svc-826", "name": "Compute Instances", "quantity": 2807, "unit": "user", "unitPrice": 186.61}, {"id": "svc-991", "name": "Training", "quantity": 59, "unit": "unit", "unitPrice": 686.45}]}}, {"id": "rec-00049", "createdAt": "2022-01-25T02:08:23Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-96519192", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "William Robinson", "email": "mary.white@test.org", "phone": "+1-975-726-3811"}, {"type": "technical", "name": "Robert Williams", "email": "sarah.moore@example.com", "phone": "+1-665-728-4665"}]}, "subscription": {"plan": "free", "startDate": "2022-04-03", "renewalDate": "2025-04-03", "amount": 20932.02, "currency": "CAD", "services": [{"id": "svc-201", "name": "Analytics", "quantity": 613, "unit": "GB", "unitPrice": 354.53}, {"id": "svc-455", "name": "Implementation", "quantity": 100, "unit": "subscription", "unitPrice": 472.27}]}}, {"id": "rec-00050", "createdAt": "2025-04-02T00:46:38Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-37512572", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Jennifer White", "email": "john.robinson@test.org", "phone": "+1-354-412-3267"}, {"type": "technical", "name": "Thomas Wilson", "email": "michael.miller@test.org", "phone": "+1-619-415-2929"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-06", "renewalDate": "2023-09-06", "amount": 5333.07, "currency": "AUD", "services": [{"id": "svc-610", "name": "Cloud Storage", "quantity": 9142, "unit": "instance", "unitPrice": 26.18}, {"id": "svc-309", "name": "Maintenance", "quantity": 94, "unit": "subscription", "unitPrice": 1073.22}]}}, {"id": "rec-00051", "createdAt": "2022-06-16T19:33:53Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-11328097", "name": "Stark Industries", "segment": "enterprise", "industry": "education", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Karen Thomas", "email": "linda.miller@fake.tech", "phone": "+1-785-734-1065"}, {"type": "technical", "name": "Joseph Miller", "email": "michael.davis@fake.tech", "phone": "+1-748-971-5612"}]}, "subscription": {"plan": "basic", "startDate": "2020-10-08", "renewalDate": "2022-10-08", "amount": 32587.92, "currency": "USD", "services": [{"id": "svc-725", "name": "Compute Instances", "quantity": 7693, "unit": "TB", "unitPrice": 138.49}, {"id": "svc-187", "name": "Implementation", "quantity": 72, "unit": "hour", "unitPrice": 109.55}]}}, {"id": "rec-00052", "createdAt": "2022-04-18T12:56:38Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-94959579", "name": "Initech", "segment": "startup", "industry": "manufacturing", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "David White", "email": "mary.thomas@sample.io", "phone": "+1-868-825-8490"}, {"type": "technical", "name": "Jennifer Moore", "email": "robert.wilson@example.com", "phone": "+1-477-103-3756"}]}, "subscription": {"plan": "custom", "startDate": "2020-09-03", "renewalDate": "2021-09-03", "amount": 330.9, "currency": "GBP", "services": [{"id": "svc-854", "name": "Security", "quantity": 7225, "unit": "GB", "unitPrice": 442.31}, {"id": "svc-593", "name": "Maintenance", "quantity": 75, "unit": "session", "unitPrice": 1961.69}]}}, {"id": "rec-00053", "createdAt": "2021-12-10T17:12:43Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-49473846", "name": "LexCorp", "segment": "enterprise", "industry": "technology", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "David Jones", "email": "thomas.williams@demo.net", "phone": "+1-392-515-9326"}, {"type": "technical", "name": "James White", "email": "sarah.white@example.com", "phone": "+1-340-805-1914"}]}, "subscription": {"plan": "free", "startDate": "2023-03-08", "renewalDate": "2024-03-08", "amount": 33763.99, "currency": "USD", "services": [{"id": "svc-232", "name": "Security", "quantity": 758, "unit": "GB", "unitPrice": 466.47}, {"id": "svc-801", "name": "Consulting", "quantity": 69, "unit": "package", "unitPrice": 1639.73}]}}, {"id": "rec-00054", "createdAt": "2021-10-07T04:55:54Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-17125401", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Mary Johnson", "email": "jennifer.anderson@test.org", "phone": "+1-332-785-5936"}, {"type": "technical", "name": "Joseph Jackson", "email": "karen.martin@example.com", "phone": "+1-620-305-5171"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-13", "renewalDate": "2023-03-13", "amount": 21434.47, "currency": "AUD", "services": [{"id": "svc-173", "name": "Compute Instances", "quantity": 1966, "unit": "GB", "unitPrice": 429.72}, {"id": "svc-327", "name": "Implementation", "quantity": 33, "unit": "session", "unitPrice": 204.75}]}}, {"id": "rec-00055", "createdAt": "2021-05-16T11:04:19Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-51477241", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Joseph Wilson", "email": "thomas.miller@test.org", "phone": "+1-970-817-7280"}, {"type": "technical", "name": "Thomas Harris", "email": "michael.wilson@test.org", "phone": "+1-719-610-6903"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-26", "renewalDate": "2022-12-26", "amount": 42924.11, "currency": "GBP", "services": [{"id": "svc-641", "name": "Cloud Storage", "quantity": 5799, "unit": "TB", "unitPrice": 378.03}, {"id": "svc-161", "name": "Support Plan", "quantity": 34, "unit": "session", "unitPrice": 1504.87}]}}, {"id": "rec-00056", "createdAt": "2023-08-27T08:47:21Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-41803607", "name": "Acme Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Michael Robinson", "email": "mary.brown@demo.net", "phone": "+1-396-610-8143"}, {"type": "technical", "name": "Linda Jackson", "email": "sarah.wilson@sample.io", "phone": "+1-957-214-5939"}]}, "subscription": {"plan": "basic", "startDate": "2021-06-05", "renewalDate": "2022-06-05", "amount": 18195.64, "currency": "EUR", "services": [{"id": "svc-104", "name": "Database", "quantity": 2862, "unit": "license", "unitPrice": 145.94}, {"id": "svc-845", "name": "Training", "quantity": 6, "unit": "package", "unitPrice": 1188.72}]}}, {"id": "rec-00057", "createdAt": "2025-05-15T00:44:00Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-44331048", "name": "Aperture Science", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "Susan Anderson", "email": "john.thomas@sample.io", "phone": "+1-485-737-2395"}, {"type": "technical", "name": "Jennifer Williams", "email": "elizabeth.garcia@sample.io", "phone": "+1-686-612-8939"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-03-09", "renewalDate": "2027-03-09", "amount": 35849.93, "currency": "GBP", "services": [{"id": "svc-975", "name": "Database", "quantity": 2688, "unit": "license", "unitPrice": 168.35}, {"id": "svc-743", "name": "Consulting", "quantity": 70, "unit": "session", "unitPrice": 1640.39}]}}, {"id": "rec-00058", "createdAt": "2024-08-10T04:48:50Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-86157252", "name": "Initech", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2014, "contacts": [{"type": "primary", "name": "Nancy Taylor", "email": "william.smith@demo.net", "phone": "+1-553-495-2249"}, {"type": "technical", "name": "John Thompson", "email": "jessica.martin@sample.io", "phone": "+1-341-252-3034"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-25", "renewalDate": "2024-01-25", "amount": 38150.73, "currency": "USD", "services": [{"id": "svc-150", "name": "Database", "quantity": 5427, "unit": "TB", "unitPrice": 444.97}, {"id": "svc-450", "name": "Support Plan", "quantity": 20, "unit": "session", "unitPrice": 1041.36}]}}, {"id": "rec-00059", "createdAt": "2020-04-24T21:40:12Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-85440772", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Thomas Moore", "email": "robert.moore@mock.co", "phone": "+1-437-123-5499"}, {"type": "technical", "name": "Karen Thomas", "email": "david.miller@test.org", "phone": "+1-766-439-2046"}]}, "subscription": {"plan": "professional", "startDate": "2022-04-13", "renewalDate": "2024-04-13", "amount": 43074.06, "currency": "GBP", "services": [{"id": "svc-384", "name": "Security", "quantity": 2319, "unit": "GB", "unitPrice": 18.96}, {"id": "svc-542", "name": "Implementation", "quantity": 24, "unit": "session", "unitPrice": 1439.6}]}}, {"id": "rec-00060", "createdAt": "2025-01-27T01:53:50Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-36171168", "name": "Initech", "segment": "mid-market", "industry": "education", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "william.moore@mock.co", "phone": "+1-783-979-9168"}, {"type": "technical", "name": "Karen Smith", "email": "robert.miller@demo.net", "phone": "+1-523-812-2883"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-10", "renewalDate": "2025-06-10", "amount": 38633.17, "currency": "AUD", "services": [{"id": "svc-879", "name": "Database", "quantity": 6974, "unit": "license", "unitPrice": 405.15}, {"id": "svc-600", "name": "Maintenance", "quantity": 6, "unit": "session", "unitPrice": 1776.01}]}}, {"id": "rec-00061", "createdAt": "2023-06-05T19:27:25Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-76157537", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "retail", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "jessica.white@fake.tech", "phone": "+1-691-849-4432"}, {"type": "technical", "name": "Sarah Miller", "email": "jennifer.wilson@sample.io", "phone": "+1-776-394-7370"}]}, "subscription": {"plan": "basic", "startDate": "2021-09-05", "renewalDate": "2024-09-05", "amount": 18416.23, "currency": "AUD", "services": [{"id": "svc-577", "name": "Security", "quantity": 3647, "unit": "instance", "unitPrice": 121.01}, {"id": "svc-183", "name": "Support Plan", "quantity": 24, "unit": "package", "unitPrice": 1856.85}]}}, {"id": "rec-00062", "createdAt": "2024-08-06T18:38:31Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-75857128", "name": "Globex", "segment": "startup", "industry": "finance", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Jennifer Jackson", "email": "jessica.white@mock.co", "phone": "+1-810-993-3636"}, {"type": "technical", "name": "Jessica Robinson", "email": "james.thompson@sample.io", "phone": "+1-682-494-2135"}]}, "subscription": {"plan": "free", "startDate": "2024-08-19", "renewalDate": "2025-08-19", "amount": 30413.78, "currency": "AUD", "services": [{"id": "svc-731", "name": "Cloud Storage", "quantity": 2284, "unit": "instance", "unitPrice": 118.17}, {"id": "svc-176", "name": "Implementation", "quantity": 6, "unit": "package", "unitPrice": 267.19}]}}, {"id": "rec-00063", "createdAt": "2021-02-12T03:58:05Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-42156235", "name": "Stark Industries", "segment": "small-business", "industry": "technology", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Linda White", "email": "john.jackson@demo.net", "phone": "+1-520-631-9453"}, {"type": "technical", "name": "Elizabeth Davis", "email": "william.johnson@mock.co", "phone": "+1-386-593-2785"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-08-27", "renewalDate": "2023-08-27", "amount": 16646.91, "currency": "CAD", "services": [{"id": "svc-276", "name": "Security", "quantity": 4618, "unit": "instance", "unitPrice": 375.31}, {"id": "svc-502", "name": "Support Plan", "quantity": 77, "unit": "session", "unitPrice": 1442.82}]}}, {"id": "rec-00064", "createdAt": "2022-05-12T17:21:04Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-74856989", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Jessica White", "email": "richard.martin@demo.net", "phone": "+1-671-876-9306"}, {"type": "technical", "name": "John Thompson", "email": "thomas.thompson@test.org", "phone": "+1-454-375-2331"}]}, "subscription": {"plan": "basic", "startDate": "2023-01-12", "renewalDate": "2026-01-12", "amount": 41710.57, "currency": "USD", "services": [{"id": "svc-611", "name": "Compute Instances", "quantity": 3549, "unit": "user", "unitPrice": 274.48}, {"id": "svc-264", "name": "Implementation", "quantity": 47, "unit": "session", "unitPrice": 1912.29}]}}, {"id": "rec-00065", "createdAt": "2023-11-09T16:04:33Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-40380607", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "john.davis@test.org", "phone": "+1-569-164-9435"}, {"type": "technical", "name": "Karen White", "email": "patricia.anderson@mock.co", "phone": "+1-220-694-9134"}]}, "subscription": {"plan": "custom", "startDate": "2020-03-20", "renewalDate": "2022-03-20", "amount": 20780.63, "currency": "GBP", "services": [{"id": "svc-505", "name": "Database", "quantity": 3938, "unit": "instance", "unitPrice": 167.11}, {"id": "svc-633", "name": "Implementation", "quantity": 77, "unit": "session", "unitPrice": 790.23}]}}, {"id": "rec-00066", "createdAt": "2022-10-18T12:26:22Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-48819566", "name": "Globex", "segment": "small-business", "industry": "education", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Elizabeth White", "email": "nancy.jones@demo.net", "phone": "+1-439-135-1987"}, {"type": "technical", "name": "Mary Harris", "email": "nancy.garcia@sample.io", "phone": "+1-735-714-3194"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-09", "renewalDate": "2025-06-09", "amount": 49135.24, "currency": "USD", "services": [{"id": "svc-541", "name": "Analytics", "quantity": 3890, "unit": "TB", "unitPrice": 227.08}, {"id": "svc-152", "name": "Implementation", "quantity": 70, "unit": "hour", "unitPrice": 1333.82}]}}, {"id": "rec-00067", "createdAt": "2021-11-25T20:39:21Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-80507989", "name": "Soylent Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "charles.williams@sample.io", "phone": "+1-597-846-1305"}, {"type": "technical", "name": "Richard Garcia", "email": "jessica.taylor@example.com", "phone": "+1-427-794-1636"}]}, "subscription": {"plan": "custom", "startDate": "2020-07-05", "renewalDate": "2022-07-05", "amount": 19315.82, "currency": "CAD", "services": [{"id": "svc-311", "name": "Analytics", "quantity": 1915, "unit": "TB", "unitPrice": 395.81}, {"id": "svc-853", "name": "Maintenance", "quantity": 99, "unit": "session", "unitPrice": 1178.26}]}}, {"id": "rec-00068", "createdAt": "2022-11-14T05:20:58Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-36551999", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "john.brown@fake.tech", "phone": "+1-629-431-6715"}, {"type": "technical", "name": "Patricia Smith", "email": "charles.moore@demo.net", "phone": "+1-222-281-3002"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-11", "renewalDate": "2022-06-11", "amount": 41855.49, "currency": "USD", "services": [{"id": "svc-797", "name": "Database", "quantity": 6009, "unit": "user", "unitPrice": 203.94}, {"id": "svc-979", "name": "Maintenance", "quantity": 11, "unit": "session", "unitPrice": 1552.82}]}}, {"id": "rec-00069", "createdAt": "2024-01-26T01:19:29Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-41661537", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "James Taylor", "email": "patricia.brown@demo.net", "phone": "+1-756-247-2336"}, {"type": "technical", "name": "Robert Jackson", "email": "susan.harris@sample.io", "phone": "+1-408-525-6340"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-02", "renewalDate": "2024-03-02", "amount": 8526.83, "currency": "CAD", "services": [{"id": "svc-667", "name": "Analytics", "quantity": 7167, "unit": "GB", "unitPrice": 161.4}, {"id": "svc-462", "name": "Training", "quantity": 4, "unit": "subscription", "unitPrice": 1667.4}]}}, {"id": "rec-00070", "createdAt": "2024-08-15T07:46:37Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96111441", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "susan.wilson@demo.net", "phone": "+1-905-956-7413"}, {"type": "technical", "name": "James Thompson", "email": "patricia.smith@example.com", "phone": "+1-274-556-7198"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-25", "renewalDate": "2023-12-25", "amount": 39558.38, "currency": "AUD", "services": [{"id": "svc-747", "name": "Compute Instances", "quantity": 5315, "unit": "TB", "unitPrice": 220.36}, {"id": "svc-444", "name": "Implementation", "quantity": 68, "unit": "session", "unitPrice": 1538.1}]}}, {"id": "rec-00071", "createdAt": "2020-10-11T04:30:49Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-81567721", "name": "Soylent Corp", "segment": "mid-market", "industry": "education", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Joseph Johnson", "email": "jessica.williams@sample.io", "phone": "+1-543-821-2026"}, {"type": "technical", "name": "James Jackson", "email": "robert.smith@fake.tech", "phone": "+1-517-941-2608"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-11", "renewalDate": "2025-09-11", "amount": 28489.09, "currency": "USD", "services": [{"id": "svc-432", "name": "Database", "quantity": 8861, "unit": "user", "unitPrice": 217.05}, {"id": "svc-418", "name": "Support Plan", "quantity": 62, "unit": "session", "unitPrice": 1938.73}]}}, {"id": "rec-00072", "createdAt": "2024-12-03T12:46:07Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-70310190", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "John Martin", "email": "karen.wilson@fake.tech", "phone": "+1-334-398-2394"}, {"type": "technical", "name": "William Anderson", "email": "richard.williams@sample.io", "phone": "+1-887-409-4550"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-09", "renewalDate": "2026-01-09", "amount": 205.25, "currency": "GBP", "services": [{"id": "svc-139", "name": "Analytics", "quantity": 5282, "unit": "TB", "unitPrice": 234.49}, {"id": "svc-576", "name": "Training", "quantity": 81, "unit": "session", "unitPrice": 1696.41}]}}, {"id": "rec-00073", "createdAt": "2025-09-01T20:37:24Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29009073", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Michael Moore", "email": "john.jones@test.org", "phone": "+1-222-818-9249"}, {"type": "technical", "name": "Joseph Wilson", "email": "john.davis@fake.tech", "phone": "+1-769-629-6601"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-26", "renewalDate": "2024-01-26", "amount": 6288.1, "currency": "GBP", "services": [{"id": "svc-691", "name": "Cloud Storage", "quantity": 6315, "unit": "GB", "unitPrice": 493.2}, {"id": "svc-466", "name": "Implementation", "quantity": 57, "unit": "unit", "unitPrice": 303.41}]}}, {"id": "rec-00074", "createdAt": "2023-05-15T15:23:35Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99297191", "name": "Acme Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Richard Wilson", "email": "michael.williams@test.org", "phone": "+1-945-903-4364"}, {"type": "technical", "name": "Mary Moore", "email": "jennifer.robinson@sample.io", "phone": "+1-248-925-1412"}]}, "subscription": {"plan": "basic", "startDate": "2023-02-16", "renewalDate": "2025-02-16", "amount": 47681.91, "currency": "AUD", "services": [{"id": "svc-200", "name": "Database", "quantity": 1201, "unit": "license", "unitPrice": 203.96}, {"id": "svc-272", "name": "Implementation", "quantity": 52, "unit": "hour", "unitPrice": 1710.02}]}}, {"id": "rec-00075", "createdAt": "2022-02-21T12:40:20Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95321140", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Sarah Thompson", "email": "michael.jackson@example.com", "phone": "+1-864-250-8690"}, {"type": "technical", "name": "Richard Robinson", "email": "michael.brown@demo.net", "phone": "+1-894-930-3184"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-28", "renewalDate": "2025-12-28", "amount": 3932.41, "currency": "GBP", "services": [{"id": "svc-814", "name": "Analytics", "quantity": 678, "unit": "GB", "unitPrice": 189.74}, {"id": "svc-878", "name": "Implementation", "quantity": 32, "unit": "session", "unitPrice": 1426.5}]}}, {"id": "rec-00076", "createdAt": "2021-02-23T10:59:47Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38245529", "name": "Oscorp", "segment": "mid-market", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Karen Jackson", "email": "james.davis@sample.io", "phone": "+1-328-465-7505"}, {"type": "technical", "name": "Thomas Smith", "email": "william.white@example.com", "phone": "+1-485-973-5903"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-09", "renewalDate": "2025-03-09", "amount": 35353.9, "currency": "AUD", "services": [{"id": "svc-352", "name": "Analytics", "quantity": 1343, "unit": "GB", "unitPrice": 366.95}, {"id": "svc-445", "name": "Consulting", "quantity": 11, "unit": "unit", "unitPrice": 486.39}]}}, {"id": "rec-00077", "createdAt": "2024-11-05T02:56:22Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-73950537", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Karen Jones", "email": "thomas.anderson@mock.co", "phone": "+1-282-525-2723"}, {"type": "technical", "name": "Michael Johnson", "email": "mary.robinson@sample.io", "phone": "+1-275-153-2269"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-28", "renewalDate": "2027-05-28", "amount": 49516.48, "currency": "GBP", "services": [{"id": "svc-605", "name": "Compute Instances", "quantity": 8121, "unit": "license", "unitPrice": 72.38}, {"id": "svc-556", "name": "Consulting", "quantity": 24, "unit": "subscription", "unitPrice": 1749.84}]}}, {"id": "rec-00078", "createdAt": "2025-12-17T03:49:58Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52490010", "name": "Oscorp", "segment": "startup", "industry": "retail", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Mary Miller", "email": "nancy.brown@fake.tech", "phone": "+1-557-999-3005"}, {"type": "technical", "name": "Mary Anderson", "email": "james.thomas@fake.tech", "phone": "+1-232-454-7797"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-28", "renewalDate": "2025-03-28", "amount": 45493.48, "currency": "AUD", "services": [{"id": "svc-673", "name": "Security", "quantity": 23, "unit": "instance", "unitPrice": 285.79}, {"id": "svc-902", "name": "Consulting", "quantity": 80, "unit": "hour", "unitPrice": 385.53}]}}, {"id": "rec-00079", "createdAt": "2021-05-26T01:37:11Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59619366", "name": "Aperture Science", "segment": "enterprise", "industry": "technology", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "linda.thomas@demo.net", "phone": "+1-920-857-8777"}, {"type": "technical", "name": "William Williams", "email": "john.garcia@fake.tech", "phone": "+1-682-138-1471"}]}, "subscription": {"plan": "custom", "startDate": "2020-06-08", "renewalDate": "2022-06-08", "amount": 6149.92, "currency": "GBP", "services": [{"id": "svc-226", "name": "Cloud Storage", "quantity": 5949, "unit": "license", "unitPrice": 392.87}, {"id": "svc-203", "name": "Implementation", "quantity": 85, "unit": "subscription", "unitPrice": 689.44}]}}, {"id": "rec-00080", "createdAt": "2020-06-20T22:14:28Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96243345", "name": "Aperture Science", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Michael Miller", "email": "linda.thompson@test.org", "phone": "+1-303-952-6395"}, {"type": "technical", "name": "Thomas Smith", "email": "susan.moore@demo.net", "phone": "+1-703-418-4615"}]}, "subscription": {"plan": "professional", "startDate": "2023-10-01", "renewalDate": "2025-10-01", "amount": 12466.69, "currency": "USD", "services": [{"id": "svc-292", "name": "Compute Instances", "quantity": 6172, "unit": "TB", "unitPrice": 7.79}, {"id": "svc-754", "name": "Training", "quantity": 48, "unit": "hour", "unitPrice": 955.68}]}}, {"id": "rec-00081", "createdAt": "2024-09-26T05:51:48Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-44492255", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "James Thompson", "email": "nancy.johnson@test.org", "phone": "+1-218-941-4409"}, {"type": "technical", "name": "Nancy Martinez", "email": "joseph.garcia@example.com", "phone": "+1-350-846-6205"}]}, "subscription": {"plan": "basic", "startDate": "2023-04-17", "renewalDate": "2025-04-17", "amount": 4738.64, "currency": "USD", "services": [{"id": "svc-284", "name": "Analytics", "quantity": 3864, "unit": "instance", "unitPrice": 121.95}, {"id": "svc-989", "name": "Support Plan", "quantity": 83, "unit": "hour", "unitPrice": 621.3}]}}, {"id": "rec-00082", "createdAt": "2025-05-17T04:31:56Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-61230385", "name": "Stark Industries", "segment": "startup", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Sarah Garcia", "email": "patricia.thomas@demo.net", "phone": "+1-672-313-8161"}, {"type": "technical", "name": "Patricia Brown", "email": "james.robinson@sample.io", "phone": "+1-548-709-2938"}]}, "subscription": {"plan": "basic", "startDate": "2024-08-18", "renewalDate": "2026-08-18", "amount": 312.68, "currency": "AUD", "services": [{"id": "svc-118", "name": "Compute Instances", "quantity": 785, "unit": "instance", "unitPrice": 313.36}, {"id": "svc-636", "name": "Implementation", "quantity": 29, "unit": "subscription", "unitPrice": 1848.52}]}}, {"id": "rec-00083", "createdAt": "2023-05-01T00:48:53Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-31109855", "name": "Soylent Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "John Anderson", "email": "sarah.wilson@sample.io", "phone": "+1-436-898-5343"}, {"type": "technical", "name": "Mary Anderson", "email": "richard.davis@test.org", "phone": "+1-653-303-1661"}]}, "subscription": {"plan": "custom", "startDate": "2021-07-16", "renewalDate": "2023-07-16", "amount": 36815.25, "currency": "CAD", "services": [{"id": "svc-380", "name": "Database", "quantity": 381, "unit": "license", "unitPrice": 140.6}, {"id": "svc-668", "name": "Support Plan", "quantity": 17, "unit": "subscription", "unitPrice": 572.76}]}}, {"id": "rec-00084", "createdAt": "2023-03-11T20:03:07Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13013065", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Jones", "email": "john.harris@fake.tech", "phone": "+1-579-168-4228"}, {"type": "technical", "name": "Susan Taylor", "email": "michael.moore@mock.co", "phone": "+1-694-835-5421"}]}, "subscription": {"plan": "professional", "startDate": "2022-06-06", "renewalDate": "2023-06-06", "amount": 47112.43, "currency": "USD", "services": [{"id": "svc-877", "name": "Database", "quantity": 6035, "unit": "user", "unitPrice": 462.89}, {"id": "svc-318", "name": "Implementation", "quantity": 19, "unit": "unit", "unitPrice": 822.33}]}}, {"id": "rec-00085", "createdAt": "2025-03-07T17:15:26Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27940502", "name": "Virtucon", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "john.johnson@example.com", "phone": "+1-363-344-6984"}, {"type": "technical", "name": "Sarah Smith", "email": "john.harris@test.org", "phone": "+1-441-756-3110"}]}, "subscription": {"plan": "basic", "startDate": "2023-12-03", "renewalDate": "2024-12-03", "amount": 2192.44, "currency": "EUR", "services": [{"id": "svc-478", "name": "Analytics", "quantity": 8986, "unit": "user", "unitPrice": 213.37}, {"id": "svc-953", "name": "Consulting", "quantity": 37, "unit": "unit", "unitPrice": 89.8}]}}, {"id": "rec-00086", "createdAt": "2024-11-25T05:51:51Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-21960480", "name": "Acme Corp", "segment": "small-business", "industry": "education", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Susan Taylor", "email": "linda.martinez@test.org", "phone": "+1-483-515-3114"}, {"type": "technical", "name": "Nancy Martin", "email": "michael.smith@fake.tech", "phone": "+1-888-849-6877"}]}, "subscription": {"plan": "custom", "startDate": "2021-10-19", "renewalDate": "2024-10-19", "amount": 8096.62, "currency": "CAD", "services": [{"id": "svc-224", "name": "Cloud Storage", "quantity": 626, "unit": "instance", "unitPrice": 299.99}, {"id": "svc-510", "name": "Implementation", "quantity": 24, "unit": "package", "unitPrice": 1688.23}]}}, {"id": "rec-00087", "createdAt": "2022-02-09T21:56:54Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-43926931", "name": "Soylent Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Karen Williams", "email": "michael.davis@example.com", "phone": "+1-740-158-4463"}, {"type": "technical", "name": "Joseph Johnson", "email": "robert.thompson@demo.net", "phone": "+1-906-861-6653"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-23", "renewalDate": "2024-03-23", "amount": 1776.59, "currency": "AUD", "services": [{"id": "svc-718", "name": "Compute Instances", "quantity": 2234, "unit": "TB", "unitPrice": 399.28}, {"id": "svc-339", "name": "Consulting", "quantity": 2, "unit": "package", "unitPrice": 205.99}]}}, {"id": "rec-00088", "createdAt": "2020-07-05T12:18:52Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59049785", "name": "Initech", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "William Jones", "email": "thomas.smith@test.org", "phone": "+1-768-420-2814"}, {"type": "technical", "name": "Nancy Anderson", "email": "jessica.anderson@example.com", "phone": "+1-869-125-3955"}]}, "subscription": {"plan": "professional", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 23984.17, "currency": "GBP", "services": [{"id": "svc-192", "name": "Compute Instances", "quantity": 5413, "unit": "user", "unitPrice": 201.46}, {"id": "svc-678", "name": "Maintenance", "quantity": 25, "unit": "package", "unitPrice": 903.6}]}}, {"id": "rec-00089", "createdAt": "2025-09-06T10:34:19Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-97596784", "name": "Virtucon", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "mary.garcia@example.com", "phone": "+1-654-363-5818"}, {"type": "technical", "name": "Charles Jackson", "email": "thomas.martinez@test.org", "phone": "+1-268-455-8859"}]}, "subscription": {"plan": "free", "startDate": "2021-09-26", "renewalDate": "2023-09-26", "amount": 17110.43, "currency": "EUR", "services": [{"id": "svc-504", "name": "Analytics", "quantity": 9922, "unit": "GB", "unitPrice": 459.64}, {"id": "svc-968", "name": "Consulting", "quantity": 18, "unit": "session", "unitPrice": 525.85}]}}, {"id": "rec-00090", "createdAt": "2023-09-28T05:50:41Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-11498917", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "David Harris", "email": "john.white@test.org", "phone": "+1-502-932-4199"}, {"type": "technical", "name": "Elizabeth Miller", "email": "michael.davis@demo.net", "phone": "+1-849-565-1394"}]}, "subscription": {"plan": "professional", "startDate": "2021-01-23", "renewalDate": "2023-01-23", "amount": 36566.22, "currency": "EUR", "services": [{"id": "svc-866", "name": "Security", "quantity": 6884, "unit": "instance", "unitPrice": 291.8}, {"id": "svc-260", "name": "Training", "quantity": 24, "unit": "subscription", "unitPrice": 1300.52}]}}, {"id": "rec-00091", "createdAt": "2024-01-05T07:38:58Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-73362464", "name": "Massive Dynamic", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "William Martin", "email": "elizabeth.thomas@test.org", "phone": "+1-242-277-7827"}, {"type": "technical", "name": "Patricia Johnson", "email": "sarah.harris@demo.net", "phone": "+1-793-474-8119"}]}, "subscription": {"plan": "free", "startDate": "2020-11-20", "renewalDate": "2023-11-20", "amount": 5023.14, "currency": "CAD", "services": [{"id": "svc-121", "name": "Compute Instances", "quantity": 6797, "unit": "TB", "unitPrice": 401.01}, {"id": "svc-244", "name": "Support Plan", "quantity": 53, "unit": "package", "unitPrice": 1866.05}]}}, {"id": "rec-00092", "createdAt": "2025-05-24T05:57:51Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-21096051", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Joseph Jackson", "email": "mary.smith@sample.io", "phone": "+1-963-284-1812"}, {"type": "technical", "name": "Karen Johnson", "email": "jennifer.garcia@mock.co", "phone": "+1-660-864-2699"}]}, "subscription": {"plan": "professional", "startDate": "2023-12-26", "renewalDate": "2026-12-26", "amount": 29263.25, "currency": "EUR", "services": [{"id": "svc-856", "name": "Database", "quantity": 8265, "unit": "instance", "unitPrice": 2.46}, {"id": "svc-154", "name": "Consulting", "quantity": 84, "unit": "hour", "unitPrice": 1551.15}]}}, {"id": "rec-00093", "createdAt": "2020-01-01T23:35:18Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45348091", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Linda Smith", "email": "william.davis@sample.io", "phone": "+1-320-617-4464"}, {"type": "technical", "name": "Michael Brown", "email": "patricia.davis@test.org", "phone": "+1-884-874-1813"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-19", "renewalDate": "2024-03-19", "amount": 33253.53, "currency": "GBP", "services": [{"id": "svc-381", "name": "Cloud Storage", "quantity": 6462, "unit": "user", "unitPrice": 322.41}, {"id": "svc-989", "name": "Implementation", "quantity": 73, "unit": "unit", "unitPrice": 1423.73}]}}, {"id": "rec-00094", "createdAt": "2025-11-23T01:37:27Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66893113", "name": "Globex", "segment": "enterprise", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Charles Brown", "email": "patricia.white@sample.io", "phone": "+1-847-544-6353"}, {"type": "technical", "name": "Mary Robinson", "email": "thomas.davis@example.com", "phone": "+1-624-231-2688"}]}, "subscription": {"plan": "free", "startDate": "2023-05-24", "renewalDate": "2024-05-24", "amount": 39071.26, "currency": "GBP", "services": [{"id": "svc-951", "name": "Compute Instances", "quantity": 3605, "unit": "GB", "unitPrice": 104.95}, {"id": "svc-609", "name": "Implementation", "quantity": 30, "unit": "unit", "unitPrice": 570.29}]}}, {"id": "rec-00095", "createdAt": "2024-11-15T13:06:00Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-62947040", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "healthcare", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Thomas Williams", "email": "michael.williams@test.org", "phone": "+1-934-131-1817"}, {"type": "technical", "name": "William Martin", "email": "nancy.thomas@fake.tech", "phone": "+1-976-801-4848"}]}, "subscription": {"plan": "basic", "startDate": "2024-07-01", "renewalDate": "2026-07-01", "amount": 32259.33, "currency": "USD", "services": [{"id": "svc-134", "name": "Compute Instances", "quantity": 5259, "unit": "instance", "unitPrice": 298.79}, {"id": "svc-437", "name": "Training", "quantity": 81, "unit": "package", "unitPrice": 1837.65}]}}, {"id": "rec-00096", "createdAt": "2020-11-18T09:18:42Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-46868022", "name": "Soylent Corp", "segment": "startup", "industry": "finance", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "charles.jackson@test.org", "phone": "+1-848-482-6552"}, {"type": "technical", "name": "Jennifer Thomas", "email": "linda.martin@sample.io", "phone": "+1-524-816-5807"}]}, "subscription": {"plan": "basic", "startDate": "2024-11-07", "renewalDate": "2026-11-07", "amount": 36122.66, "currency": "GBP", "services": [{"id": "svc-280", "name": "Compute Instances", "quantity": 4971, "unit": "instance", "unitPrice": 192.83}, {"id": "svc-505", "name": "Maintenance", "quantity": 6, "unit": "unit", "unitPrice": 1010.84}]}}, {"id": "rec-00097", "createdAt": "2024-01-04T03:28:31Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-56565323", "name": "Massive Dynamic", "segment": "startup", "industry": "retail", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Nancy Jackson", "email": "robert.miller@sample.io", "phone": "+1-766-185-2365"}, {"type": "technical", "name": "Robert Martin", "email": "william.taylor@example.com", "phone": "+1-785-525-9562"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-10-03", "renewalDate": "2023-10-03", "amount": 36405.77, "currency": "EUR", "services": [{"id": "svc-827", "name": "Cloud Storage", "quantity": 1534, "unit": "license", "unitPrice": 41.48}, {"id": "svc-454", "name": "Support Plan", "quantity": 49, "unit": "hour", "unitPrice": 954.48}]}}, {"id": "rec-00098", "createdAt": "2022-02-28T04:58:01Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82889714", "name": "Stark Industries", "segment": "mid-market", "industry": "retail", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "michael.white@fake.tech", "phone": "+1-825-790-6638"}, {"type": "technical", "name": "Robert Martin", "email": "richard.miller@demo.net", "phone": "+1-318-716-3190"}]}, "subscription": {"plan": "professional", "startDate": "2022-06-08", "renewalDate": "2025-06-08", "amount": 9024.5, "currency": "CAD", "services": [{"id": "svc-289", "name": "Database", "quantity": 767, "unit": "instance", "unitPrice": 217.31}, {"id": "svc-923", "name": "Maintenance", "quantity": 31, "unit": "session", "unitPrice": 816.03}]}}, {"id": "rec-00099", "createdAt": "2022-01-02T22:24:51Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-32450068", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "david.wilson@demo.net", "phone": "+1-519-603-8386"}, {"type": "technical", "name": "Sarah Martinez", "email": "jennifer.davis@example.com", "phone": "+1-637-800-8416"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-24", "renewalDate": "2023-03-24", "amount": 19747.68, "currency": "GBP", "services": [{"id": "svc-765", "name": "Analytics", "quantity": 5774, "unit": "instance", "unitPrice": 264.83}, {"id": "svc-439", "name": "Maintenance", "quantity": 3, "unit": "subscription", "unitPrice": 62.02}]}}, {"id": "rec-00100", "createdAt": "2023-04-10T21:15:34Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-21335075", "name": "Wayne Enterprises", "segment": "startup", "industry": "finance", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "joseph.garcia@fake.tech", "phone": "+1-439-225-6556"}, {"type": "technical", "name": "David Johnson", "email": "linda.harris@demo.net", "phone": "+1-347-971-6133"}]}, "subscription": {"plan": "basic", "startDate": "2022-07-11", "renewalDate": "2025-07-11", "amount": 2815.42, "currency": "AUD", "services": [{"id": "svc-399", "name": "Cloud Storage", "quantity": 9439, "unit": "TB", "unitPrice": 233.82}, {"id": "svc-849", "name": "Maintenance", "quantity": 72, "unit": "hour", "unitPrice": 199.55}]}}, {"id": "rec-00101", "createdAt": "2022-09-20T17:53:46Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17679378", "name": "Soylent Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Michael Wilson", "email": "jennifer.garcia@fake.tech", "phone": "+1-529-868-3473"}, {"type": "technical", "name": "Richard Robinson", "email": "jennifer.brown@test.org", "phone": "+1-956-431-3302"}]}, "subscription": {"plan": "custom", "startDate": "2020-04-18", "renewalDate": "2022-04-18", "amount": 2261.59, "currency": "AUD", "services": [{"id": "svc-899", "name": "Database", "quantity": 2624, "unit": "user", "unitPrice": 231.48}, {"id": "svc-878", "name": "Consulting", "quantity": 75, "unit": "session", "unitPrice": 1455.63}]}}, {"id": "rec-00102", "createdAt": "2023-09-11T01:06:32Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45615295", "name": "Umbrella Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Karen Taylor", "email": "robert.garcia@demo.net", "phone": "+1-486-718-3861"}, {"type": "technical", "name": "Richard Davis", "email": "david.martinez@mock.co", "phone": "+1-531-344-2737"}]}, "subscription": {"plan": "custom", "startDate": "2020-09-04", "renewalDate": "2023-09-04", "amount": 38410.93, "currency": "USD", "services": [{"id": "svc-978", "name": "Database", "quantity": 4455, "unit": "instance", "unitPrice": 70.05}, {"id": "svc-189", "name": "Training", "quantity": 51, "unit": "unit", "unitPrice": 1140.41}]}}, {"id": "rec-00103", "createdAt": "2020-03-14T01:33:16Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29230777", "name": "Initech", "segment": "small-business", "industry": "finance", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "John Moore", "email": "susan.smith@demo.net", "phone": "+1-565-305-7274"}, {"type": "technical", "name": "Nancy Brown", "email": "elizabeth.williams@mock.co", "phone": "+1-483-536-9781"}]}, "subscription": {"plan": "professional", "startDate": "2022-08-08", "renewalDate": "2025-08-08", "amount": 12155.85, "currency": "GBP", "services": [{"id": "svc-272", "name": "Compute Instances", "quantity": 9399, "unit": "user", "unitPrice": 468.97}, {"id": "svc-848", "name": "Consulting", "quantity": 9, "unit": "package", "unitPrice": 1701.45}]}}, {"id": "rec-00104", "createdAt": "2021-03-20T18:47:54Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-63829055", "name": "Umbrella Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Linda Thompson", "email": "william.smith@mock.co", "phone": "+1-933-793-4494"}, {"type": "technical", "name": "Robert Moore", "email": "richard.johnson@mock.co", "phone": "+1-837-551-6261"}]}, "subscription": {"plan": "basic", "startDate": "2021-07-24", "renewalDate": "2022-07-24", "amount": 10304.53, "currency": "GBP", "services": [{"id": "svc-298", "name": "Cloud Storage", "quantity": 6207, "unit": "GB", "unitPrice": 454.83}, {"id": "svc-590", "name": "Maintenance", "quantity": 19, "unit": "subscription", "unitPrice": 719.5}]}}, {"id": "rec-00105", "createdAt": "2025-09-08T23:23:06Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-16528524", "name": "Soylent Corp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "John Martinez", "email": "nancy.thomas@fake.tech", "phone": "+1-988-329-7215"}, {"type": "technical", "name": "Patricia Jones", "email": "jennifer.taylor@sample.io", "phone": "+1-450-391-3012"}]}, "subscription": {"plan": "basic", "startDate": "2020-11-12", "renewalDate": "2022-11-12", "amount": 8655.45, "currency": "USD", "services": [{"id": "svc-808", "name": "Cloud Storage", "quantity": 9, "unit": "TB", "unitPrice": 236.17}, {"id": "svc-843", "name": "Implementation", "quantity": 64, "unit": "package", "unitPrice": 1649.69}]}}, {"id": "rec-00106", "createdAt": "2024-12-11T23:28:11Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-92068622", "name": "Stark Industries", "segment": "startup", "industry": "manufacturing", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Robert Johnson", "email": "james.smith@demo.net", "phone": "+1-345-501-5518"}, {"type": "technical", "name": "James Martinez", "email": "nancy.moore@test.org", "phone": "+1-441-630-9590"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-14", "renewalDate": "2022-12-14", "amount": 8590.32, "currency": "USD", "services": [{"id": "svc-404", "name": "Security", "quantity": 4831, "unit": "license", "unitPrice": 345.14}, {"id": "svc-767", "name": "Support Plan", "quantity": 59, "unit": "hour", "unitPrice": 1595.47}]}}, {"id": "rec-00107", "createdAt": "2024-04-22T18:17:21Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-40855505", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Joseph Moore", "email": "robert.jones@sample.io", "phone": "+1-599-760-7342"}, {"type": "technical", "name": "Robert Miller", "email": "sarah.thompson@mock.co", "phone": "+1-280-768-8190"}]}, "subscription": {"plan": "custom", "startDate": "2022-01-21", "renewalDate": "2024-01-21", "amount": 7857.2, "currency": "USD", "services": [{"id": "svc-975", "name": "Compute Instances", "quantity": 7885, "unit": "license", "unitPrice": 143.51}, {"id": "svc-473", "name": "Maintenance", "quantity": 38, "unit": "session", "unitPrice": 783.92}]}}, {"id": "rec-00108", "createdAt": "2022-01-23T12:58:34Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-38107078", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 2006, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "nancy.white@fake.tech", "phone": "+1-639-729-2566"}, {"type": "technical", "name": "Susan Smith", "email": "jessica.wilson@fake.tech", "phone": "+1-881-842-5035"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-03", "renewalDate": "2024-06-03", "amount": 11570.74, "currency": "GBP", "services": [{"id": "svc-947", "name": "Analytics", "quantity": 2740, "unit": "TB", "unitPrice": 459.71}, {"id": "svc-290", "name": "Training", "quantity": 66, "unit": "session", "unitPrice": 1327.63}]}}, {"id": "rec-00109", "createdAt": "2020-10-05T18:58:54Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-15343208", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Thomas Wilson", "email": "thomas.smith@test.org", "phone": "+1-897-990-6261"}, {"type": "technical", "name": "Mary Thompson", "email": "thomas.smith@demo.net", "phone": "+1-247-610-4331"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-06-24", "renewalDate": "2022-06-24", "amount": 48174.17, "currency": "USD", "services": [{"id": "svc-586", "name": "Cloud Storage", "quantity": 1812, "unit": "TB", "unitPrice": 172.91}, {"id": "svc-264", "name": "Maintenance", "quantity": 57, "unit": "session", "unitPrice": 1611.83}]}}, {"id": "rec-00110", "createdAt": "2025-04-08T22:49:29Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90202539", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "karen.jones@test.org", "phone": "+1-831-620-8953"}, {"type": "technical", "name": "Mary Anderson", "email": "susan.wilson@fake.tech", "phone": "+1-717-210-6655"}]}, "subscription": {"plan": "basic", "startDate": "2023-08-11", "renewalDate": "2025-08-11", "amount": 32971.1, "currency": "USD", "services": [{"id": "svc-150", "name": "Cloud Storage", "quantity": 4814, "unit": "license", "unitPrice": 387.15}, {"id": "svc-889", "name": "Support Plan", "quantity": 45, "unit": "package", "unitPrice": 1840.0}]}}, {"id": "rec-00111", "createdAt": "2023-12-25T14:14:46Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-51048128", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "Mary Harris", "email": "richard.miller@sample.io", "phone": "+1-309-418-5013"}, {"type": "technical", "name": "Linda Smith", "email": "jessica.anderson@mock.co", "phone": "+1-444-195-8903"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-03-23", "renewalDate": "2026-03-23", "amount": 5740.7, "currency": "AUD", "services": [{"id": "svc-724", "name": "Cloud Storage", "quantity": 7201, "unit": "license", "unitPrice": 34.1}, {"id": "svc-303", "name": "Support Plan", "quantity": 5, "unit": "hour", "unitPrice": 1783.34}]}}, {"id": "rec-00112", "createdAt": "2021-12-16T16:51:10Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-55299262", "name": "Soylent Corp", "segment": "small-business", "industry": "education", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "James Miller", "email": "john.garcia@mock.co", "phone": "+1-913-330-2869"}, {"type": "technical", "name": "Thomas White", "email": "jennifer.martinez@test.org", "phone": "+1-361-845-9744"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-20", "renewalDate": "2024-01-20", "amount": 15567.11, "currency": "CAD", "services": [{"id": "svc-602", "name": "Analytics", "quantity": 2168, "unit": "TB", "unitPrice": 218.75}, {"id": "svc-659", "name": "Implementation", "quantity": 54, "unit": "subscription", "unitPrice": 1896.21}]}}, {"id": "rec-00113", "createdAt": "2025-08-05T12:07:05Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-67050018", "name": "LexCorp", "segment": "startup", "industry": "retail", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Susan Martinez", "email": "charles.thompson@demo.net", "phone": "+1-297-304-4307"}, {"type": "technical", "name": "Patricia White", "email": "james.johnson@demo.net", "phone": "+1-681-883-9063"}]}, "subscription": {"plan": "professional", "startDate": "2024-08-25", "renewalDate": "2027-08-25", "amount": 43280.8, "currency": "CAD", "services": [{"id": "svc-516", "name": "Compute Instances", "quantity": 6880, "unit": "license", "unitPrice": 23.54}, {"id": "svc-365", "name": "Maintenance", "quantity": 99, "unit": "subscription", "unitPrice": 788.31}]}}, {"id": "rec-00114", "createdAt": "2025-10-06T03:28:31Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-50379890", "name": "Stark Industries", "segment": "startup", "industry": "retail", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Patricia Anderson", "email": "richard.taylor@example.com", "phone": "+1-742-372-5989"}, {"type": "technical", "name": "Mary Anderson", "email": "james.miller@mock.co", "phone": "+1-760-784-2647"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-05", "renewalDate": "2027-11-05", "amount": 35479.27, "currency": "CAD", "services": [{"id": "svc-576", "name": "Security", "quantity": 1076, "unit": "user", "unitPrice": 314.18}, {"id": "svc-783", "name": "Maintenance", "quantity": 41, "unit": "package", "unitPrice": 1782.63}]}}, {"id": "rec-00115", "createdAt": "2021-11-10T07:48:08Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-58030592", "name": "Stark Industries", "segment": "small-business", "industry": "finance", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Jennifer Moore", "email": "robert.martinez@sample.io", "phone": "+1-210-199-8551"}, {"type": "technical", "name": "Charles Miller", "email": "elizabeth.anderson@sample.io", "phone": "+1-333-223-4945"}]}, "subscription": {"plan": "free", "startDate": "2022-09-08", "renewalDate": "2023-09-08", "amount": 11610.62, "currency": "CAD", "services": [{"id": "svc-931", "name": "Database", "quantity": 7052, "unit": "user", "unitPrice": 465.02}, {"id": "svc-357", "name": "Implementation", "quantity": 68, "unit": "unit", "unitPrice": 906.78}]}}, {"id": "rec-00116", "createdAt": "2024-03-13T20:43:05Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20531742", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "david.williams@demo.net", "phone": "+1-675-273-2013"}, {"type": "technical", "name": "John Martinez", "email": "jessica.garcia@sample.io", "phone": "+1-633-660-7310"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-01-01", "renewalDate": "2025-01-01", "amount": 24886.55, "currency": "GBP", "services": [{"id": "svc-213", "name": "Database", "quantity": 3167, "unit": "instance", "unitPrice": 76.79}, {"id": "svc-314", "name": "Support Plan", "quantity": 78, "unit": "package", "unitPrice": 371.91}]}}, {"id": "rec-00117", "createdAt": "2024-07-26T02:40:16Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-33158353", "name": "Globex", "segment": "startup", "industry": "healthcare", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Jennifer Johnson", "email": "sarah.williams@demo.net", "phone": "+1-747-972-4961"}, {"type": "technical", "name": "John Martinez", "email": "jessica.robinson@mock.co", "phone": "+1-481-388-7783"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-12-14", "renewalDate": "2023-12-14", "amount": 43541.25, "currency": "CAD", "services": [{"id": "svc-573", "name": "Compute Instances", "quantity": 7707, "unit": "TB", "unitPrice": 77.22}, {"id": "svc-803", "name": "Implementation", "quantity": 48, "unit": "session", "unitPrice": 1656.65}]}}, {"id": "rec-00118", "createdAt": "2021-08-05T11:46:42Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-86373581", "name": "Globex", "segment": "startup", "industry": "education", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "William Martin", "email": "thomas.jones@mock.co", "phone": "+1-299-478-9000"}, {"type": "technical", "name": "David Jackson", "email": "joseph.garcia@sample.io", "phone": "+1-737-126-5881"}]}, "subscription": {"plan": "free", "startDate": "2022-05-13", "renewalDate": "2024-05-13", "amount": 36622.14, "currency": "USD", "services": [{"id": "svc-990", "name": "Cloud Storage", "quantity": 7997, "unit": "TB", "unitPrice": 494.62}, {"id": "svc-558", "name": "Maintenance", "quantity": 90, "unit": "session", "unitPrice": 1930.08}]}}, {"id": "rec-00119", "createdAt": "2023-06-27T02:11:37Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-15361895", "name": "Oscorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Mary Garcia", "email": "richard.harris@sample.io", "phone": "+1-843-636-7295"}, {"type": "technical", "name": "Charles Martinez", "email": "linda.johnson@mock.co", "phone": "+1-665-520-7216"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-05", "renewalDate": "2024-07-05", "amount": 27719.15, "currency": "EUR", "services": [{"id": "svc-576", "name": "Database", "quantity": 6608, "unit": "user", "unitPrice": 446.33}, {"id": "svc-582", "name": "Support Plan", "quantity": 55, "unit": "session", "unitPrice": 972.47}]}}, {"id": "rec-00120", "createdAt": "2021-07-16T19:51:22Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-92552104", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Charles Martinez", "email": "susan.miller@demo.net", "phone": "+1-958-724-3788"}, {"type": "technical", "name": "Jennifer Smith", "email": "michael.davis@test.org", "phone": "+1-321-427-6292"}]}, "subscription": {"plan": "basic", "startDate": "2024-09-18", "renewalDate": "2027-09-18", "amount": 28818.84, "currency": "CAD", "services": [{"id": "svc-495", "name": "Cloud Storage", "quantity": 7348, "unit": "TB", "unitPrice": 210.56}, {"id": "svc-562", "name": "Maintenance", "quantity": 67, "unit": "unit", "unitPrice": 1184.09}]}}, {"id": "rec-00121", "createdAt": "2024-12-20T13:41:15Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-90630211", "name": "Massive Dynamic", "segment": "small-business", "industry": "retail", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "David Smith", "email": "jennifer.moore@test.org", "phone": "+1-437-563-2460"}, {"type": "technical", "name": "Charles Thompson", "email": "david.jones@test.org", "phone": "+1-695-569-1303"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-16", "renewalDate": "2024-12-16", "amount": 10566.28, "currency": "EUR", "services": [{"id": "svc-182", "name": "Compute Instances", "quantity": 5541, "unit": "instance", "unitPrice": 63.5}, {"id": "svc-977", "name": "Consulting", "quantity": 13, "unit": "hour", "unitPrice": 735.69}]}}, {"id": "rec-00122", "createdAt": "2024-05-22T20:40:46Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-76455711", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Elizabeth Harris", "email": "james.martin@example.com", "phone": "+1-832-178-1442"}, {"type": "technical", "name": "Nancy Thompson", "email": "sarah.brown@example.com", "phone": "+1-274-145-4901"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-02", "renewalDate": "2027-11-02", "amount": 18192.34, "currency": "GBP", "services": [{"id": "svc-833", "name": "Cloud Storage", "quantity": 817, "unit": "instance", "unitPrice": 292.9}, {"id": "svc-365", "name": "Maintenance", "quantity": 12, "unit": "subscription", "unitPrice": 1371.8}]}}, {"id": "rec-00123", "createdAt": "2023-07-19T18:12:05Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90160164", "name": "Oscorp", "segment": "enterprise", "industry": "technology", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Patricia Moore", "email": "john.harris@demo.net", "phone": "+1-592-206-8940"}, {"type": "technical", "name": "Karen Thomas", "email": "jessica.johnson@fake.tech", "phone": "+1-516-507-1935"}]}, "subscription": {"plan": "basic", "startDate": "2022-01-26", "renewalDate": "2025-01-26", "amount": 8261.72, "currency": "GBP", "services": [{"id": "svc-859", "name": "Database", "quantity": 6713, "unit": "instance", "unitPrice": 334.73}, {"id": "svc-234", "name": "Maintenance", "quantity": 85, "unit": "unit", "unitPrice": 998.28}]}}, {"id": "rec-00124", "createdAt": "2023-02-02T05:22:32Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80939258", "name": "Umbrella Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Thomas Brown", "email": "jessica.williams@fake.tech", "phone": "+1-872-732-1421"}, {"type": "technical", "name": "Sarah Robinson", "email": "michael.johnson@mock.co", "phone": "+1-731-111-4360"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-10-02", "renewalDate": "2025-10-02", "amount": 42605.46, "currency": "USD", "services": [{"id": "svc-542", "name": "Compute Instances", "quantity": 8654, "unit": "license", "unitPrice": 140.4}, {"id": "svc-487", "name": "Implementation", "quantity": 15, "unit": "session", "unitPrice": 1270.2}]}}, {"id": "rec-00125", "createdAt": "2023-03-06T19:54:32Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-18687597", "name": "Wayne Enterprises", "segment": "small-business", "industry": "finance", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "James Jones", "email": "linda.davis@test.org", "phone": "+1-367-952-4106"}, {"type": "technical", "name": "Susan White", "email": "susan.smith@demo.net", "phone": "+1-952-304-7242"}]}, "subscription": {"plan": "free", "startDate": "2023-10-18", "renewalDate": "2026-10-18", "amount": 19572.1, "currency": "AUD", "services": [{"id": "svc-525", "name": "Database", "quantity": 9844, "unit": "user", "unitPrice": 313.44}, {"id": "svc-200", "name": "Support Plan", "quantity": 45, "unit": "unit", "unitPrice": 1339.5}]}}, {"id": "rec-00126", "createdAt": "2020-05-11T12:52:59Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14903291", "name": "Stark Industries", "segment": "mid-market", "industry": "finance", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Harris", "email": "elizabeth.brown@sample.io", "phone": "+1-863-310-6443"}, {"type": "technical", "name": "Jennifer Martinez", "email": "joseph.harris@example.com", "phone": "+1-993-854-6143"}]}, "subscription": {"plan": "free", "startDate": "2021-06-13", "renewalDate": "2024-06-13", "amount": 46419.62, "currency": "EUR", "services": [{"id": "svc-144", "name": "Database", "quantity": 4287, "unit": "GB", "unitPrice": 467.32}, {"id": "svc-599", "name": "Implementation", "quantity": 99, "unit": "subscription", "unitPrice": 528.8}]}}, {"id": "rec-00127", "createdAt": "2020-01-06T00:56:47Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-35356753", "name": "Aperture Science", "segment": "small-business", "industry": "finance", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Karen Garcia", "email": "mary.thompson@example.com", "phone": "+1-707-621-8124"}, {"type": "technical", "name": "Karen Davis", "email": "karen.martin@sample.io", "phone": "+1-437-545-6326"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-23", "renewalDate": "2022-02-23", "amount": 42418.17, "currency": "AUD", "services": [{"id": "svc-710", "name": "Compute Instances", "quantity": 7543, "unit": "GB", "unitPrice": 137.9}, {"id": "svc-695", "name": "Implementation", "quantity": 34, "unit": "unit", "unitPrice": 1707.32}]}}, {"id": "rec-00128", "createdAt": "2020-12-07T00:01:19Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57253248", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Jessica Wilson", "email": "linda.martinez@example.com", "phone": "+1-577-100-9700"}, {"type": "technical", "name": "Susan Wilson", "email": "thomas.garcia@sample.io", "phone": "+1-227-133-8220"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-12", "renewalDate": "2023-02-12", "amount": 16311.61, "currency": "EUR", "services": [{"id": "svc-121", "name": "Database", "quantity": 1958, "unit": "instance", "unitPrice": 145.28}, {"id": "svc-409", "name": "Implementation", "quantity": 49, "unit": "subscription", "unitPrice": 1875.86}]}}, {"id": "rec-00129", "createdAt": "2022-10-14T20:51:32Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66205556", "name": "Umbrella Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "robert.johnson@mock.co", "phone": "+1-875-419-5239"}, {"type": "technical", "name": "Elizabeth Williams", "email": "john.thomas@fake.tech", "phone": "+1-295-307-2250"}]}, "subscription": {"plan": "free", "startDate": "2024-05-26", "renewalDate": "2026-05-26", "amount": 12129.27, "currency": "CAD", "services": [{"id": "svc-567", "name": "Security", "quantity": 5512, "unit": "user", "unitPrice": 183.39}, {"id": "svc-705", "name": "Implementation", "quantity": 28, "unit": "session", "unitPrice": 1467.32}]}}, {"id": "rec-00130", "createdAt": "2023-08-11T02:04:19Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-12931719", "name": "Stark Industries", "segment": "small-business", "industry": "healthcare", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "William Moore", "email": "charles.smith@fake.tech", "phone": "+1-321-123-4869"}, {"type": "technical", "name": "William Taylor", "email": "william.taylor@sample.io", "phone": "+1-515-904-8975"}]}, "subscription": {"plan": "custom", "startDate": "2021-12-28", "renewalDate": "2024-12-28", "amount": 10686.71, "currency": "GBP", "services": [{"id": "svc-235", "name": "Cloud Storage", "quantity": 7604, "unit": "user", "unitPrice": 223.38}, {"id": "svc-598", "name": "Training", "quantity": 57, "unit": "session", "unitPrice": 1007.82}]}}, {"id": "rec-00131", "createdAt": "2025-07-24T11:18:00Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15476228", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "finance", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Jones", "email": "richard.thomas@test.org", "phone": "+1-274-566-9524"}, {"type": "technical", "name": "Jennifer Williams", "email": "nancy.williams@fake.tech", "phone": "+1-355-627-7050"}]}, "subscription": {"plan": "custom", "startDate": "2024-06-05", "renewalDate": "2025-06-05", "amount": 14940.56, "currency": "EUR", "services": [{"id": "svc-133", "name": "Security", "quantity": 7682, "unit": "TB", "unitPrice": 330.34}, {"id": "svc-631", "name": "Implementation", "quantity": 72, "unit": "subscription", "unitPrice": 1115.64}]}}, {"id": "rec-00132", "createdAt": "2020-08-28T01:04:09Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-23919744", "name": "Massive Dynamic", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "Mary Anderson", "email": "karen.taylor@example.com", "phone": "+1-848-314-2375"}, {"type": "technical", "name": "William Taylor", "email": "james.thomas@sample.io", "phone": "+1-203-878-3259"}]}, "subscription": {"plan": "custom", "startDate": "2024-12-16", "renewalDate": "2027-12-16", "amount": 23619.0, "currency": "EUR", "services": [{"id": "svc-827", "name": "Analytics", "quantity": 2903, "unit": "user", "unitPrice": 25.35}, {"id": "svc-460", "name": "Maintenance", "quantity": 32, "unit": "unit", "unitPrice": 1194.37}]}}, {"id": "rec-00133", "createdAt": "2024-11-06T15:06:55Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-12902890", "name": "Oscorp", "segment": "startup", "industry": "technology", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "James White", "email": "charles.williams@mock.co", "phone": "+1-625-862-1761"}, {"type": "technical", "name": "Elizabeth Johnson", "email": "charles.wilson@test.org", "phone": "+1-356-701-3806"}]}, "subscription": {"plan": "free", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 23155.32, "currency": "USD", "services": [{"id": "svc-804", "name": "Security", "quantity": 3618, "unit": "GB", "unitPrice": 291.3}, {"id": "svc-889", "name": "Support Plan", "quantity": 15, "unit": "subscription", "unitPrice": 1668.94}]}}, {"id": "rec-00134", "createdAt": "2023-03-16T07:54:26Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-38833985", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "technology", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Richard Johnson", "email": "james.white@test.org", "phone": "+1-592-101-9387"}, {"type": "technical", "name": "Mary Davis", "email": "charles.harris@mock.co", "phone": "+1-437-511-6478"}]}, "subscription": {"plan": "professional", "startDate": "2024-08-19", "renewalDate": "2026-08-19", "amount": 45470.73, "currency": "EUR", "services": [{"id": "svc-589", "name": "Cloud Storage", "quantity": 4726, "unit": "TB", "unitPrice": 457.73}, {"id": "svc-874", "name": "Training", "quantity": 31, "unit": "session", "unitPrice": 1982.91}]}}, {"id": "rec-00135", "createdAt": "2022-12-03T21:26:50Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82977255", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "technology", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Mary Harris", "email": "james.thomas@demo.net", "phone": "+1-884-729-5484"}, {"type": "technical", "name": "Susan Miller", "email": "elizabeth.thomas@test.org", "phone": "+1-447-859-6665"}]}, "subscription": {"plan": "free", "startDate": "2023-01-11", "renewalDate": "2026-01-11", "amount": 37291.67, "currency": "AUD", "services": [{"id": "svc-707", "name": "Cloud Storage", "quantity": 963, "unit": "instance", "unitPrice": 257.53}, {"id": "svc-351", "name": "Maintenance", "quantity": 22, "unit": "session", "unitPrice": 1121.95}]}}, {"id": "rec-00136", "createdAt": "2024-12-19T12:11:05Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-72184551", "name": "Aperture Science", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Richard Jackson", "email": "jennifer.jackson@demo.net", "phone": "+1-896-152-5858"}, {"type": "technical", "name": "Mary Davis", "email": "karen.jones@fake.tech", "phone": "+1-778-614-4586"}]}, "subscription": {"plan": "professional", "startDate": "2022-12-03", "renewalDate": "2025-12-03", "amount": 33393.55, "currency": "GBP", "services": [{"id": "svc-304", "name": "Analytics", "quantity": 3528, "unit": "user", "unitPrice": 11.88}, {"id": "svc-372", "name": "Consulting", "quantity": 45, "unit": "session", "unitPrice": 403.68}]}}, {"id": "rec-00137", "createdAt": "2022-12-09T03:06:07Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-37283714", "name": "Globex", "segment": "mid-market", "industry": "technology", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Elizabeth White", "email": "linda.anderson@fake.tech", "phone": "+1-816-344-6799"}, {"type": "technical", "name": "Mary Miller", "email": "david.brown@example.com", "phone": "+1-516-288-1602"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-16", "renewalDate": "2023-01-16", "amount": 40279.42, "currency": "EUR", "services": [{"id": "svc-146", "name": "Analytics", "quantity": 3332, "unit": "instance", "unitPrice": 487.9}, {"id": "svc-844", "name": "Implementation", "quantity": 17, "unit": "subscription", "unitPrice": 850.44}]}}, {"id": "rec-00138", "createdAt": "2023-04-19T19:00:54Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-70128826", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "Patricia Taylor", "email": "charles.williams@fake.tech", "phone": "+1-659-607-2596"}, {"type": "technical", "name": "Michael Martinez", "email": "david.robinson@mock.co", "phone": "+1-501-674-8452"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-12-18", "renewalDate": "2021-12-18", "amount": 37540.88, "currency": "EUR", "services": [{"id": "svc-738", "name": "Security", "quantity": 4282, "unit": "instance", "unitPrice": 218.48}, {"id": "svc-862", "name": "Implementation", "quantity": 39, "unit": "session", "unitPrice": 964.79}]}}, {"id": "rec-00139", "createdAt": "2022-11-24T09:12:39Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-43381294", "name": "Aperture Science", "segment": "enterprise", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Linda Jackson", "email": "michael.williams@demo.net", "phone": "+1-602-277-1921"}, {"type": "technical", "name": "Jessica Martin", "email": "linda.robinson@sample.io", "phone": "+1-956-124-3829"}]}, "subscription": {"plan": "free", "startDate": "2021-06-26", "renewalDate": "2024-06-26", "amount": 19447.36, "currency": "CAD", "services": [{"id": "svc-731", "name": "Cloud Storage", "quantity": 5145, "unit": "instance", "unitPrice": 122.86}, {"id": "svc-471", "name": "Consulting", "quantity": 58, "unit": "subscription", "unitPrice": 223.7}]}}, {"id": "rec-00140", "createdAt": "2024-02-20T22:11:53Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-10917099", "name": "Aperture Science", "segment": "enterprise", "industry": "finance", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "jennifer.miller@sample.io", "phone": "+1-991-383-7620"}, {"type": "technical", "name": "Elizabeth Brown", "email": "thomas.jones@example.com", "phone": "+1-588-187-6345"}]}, "subscription": {"plan": "basic", "startDate": "2022-04-07", "renewalDate": "2024-04-07", "amount": 22078.9, "currency": "USD", "services": [{"id": "svc-353", "name": "Compute Instances", "quantity": 9056, "unit": "TB", "unitPrice": 456.85}, {"id": "svc-697", "name": "Consulting", "quantity": 3, "unit": "hour", "unitPrice": 1504.88}]}}, {"id": "rec-00141", "createdAt": "2021-08-21T12:26:05Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15858315", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "patricia.martinez@sample.io", "phone": "+1-981-613-2666"}, {"type": "technical", "name": "Nancy Anderson", "email": "nancy.anderson@fake.tech", "phone": "+1-848-972-7982"}]}, "subscription": {"plan": "professional", "startDate": "2023-05-22", "renewalDate": "2026-05-22", "amount": 46948.76, "currency": "CAD", "services": [{"id": "svc-848", "name": "Database", "quantity": 1462, "unit": "instance", "unitPrice": 103.84}, {"id": "svc-895", "name": "Implementation", "quantity": 11, "unit": "session", "unitPrice": 1126.32}]}}, {"id": "rec-00142", "createdAt": "2020-06-03T08:40:21Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-55299092", "name": "Soylent Corp", "segment": "small-business", "industry": "education", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "jennifer.anderson@example.com", "phone": "+1-982-711-7590"}, {"type": "technical", "name": "David Moore", "email": "karen.wilson@fake.tech", "phone": "+1-876-891-3604"}]}, "subscription": {"plan": "free", "startDate": "2022-02-06", "renewalDate": "2023-02-06", "amount": 9290.14, "currency": "AUD", "services": [{"id": "svc-809", "name": "Cloud Storage", "quantity": 9928, "unit": "TB", "unitPrice": 241.53}, {"id": "svc-780", "name": "Implementation", "quantity": 43, "unit": "hour", "unitPrice": 1104.21}]}}, {"id": "rec-00143", "createdAt": "2023-04-08T21:45:13Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-25100801", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Robinson", "email": "mary.martinez@mock.co", "phone": "+1-344-230-2302"}, {"type": "technical", "name": "James Thomas", "email": "david.williams@example.com", "phone": "+1-356-780-5055"}]}, "subscription": {"plan": "custom", "startDate": "2020-10-20", "renewalDate": "2021-10-20", "amount": 4888.72, "currency": "EUR", "services": [{"id": "svc-262", "name": "Cloud Storage", "quantity": 9613, "unit": "user", "unitPrice": 204.39}, {"id": "svc-745", "name": "Training", "quantity": 69, "unit": "hour", "unitPrice": 435.33}]}}, {"id": "rec-00144", "createdAt": "2020-12-04T15:35:32Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-88898073", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "joseph.davis@demo.net", "phone": "+1-567-503-7328"}, {"type": "technical", "name": "Linda Johnson", "email": "richard.robinson@sample.io", "phone": "+1-451-209-6226"}]}, "subscription": {"plan": "free", "startDate": "2023-05-08", "renewalDate": "2025-05-08", "amount": 10271.32, "currency": "GBP", "services": [{"id": "svc-485", "name": "Security", "quantity": 5505, "unit": "license", "unitPrice": 87.36}, {"id": "svc-458", "name": "Implementation", "quantity": 29, "unit": "package", "unitPrice": 456.73}]}}, {"id": "rec-00145", "createdAt": "2023-04-27T18:48:31Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-98413512", "name": "Stark Industries", "segment": "small-business", "industry": "retail", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Joseph Martinez", "email": "james.martin@example.com", "phone": "+1-948-142-8177"}, {"type": "technical", "name": "James Williams", "email": "elizabeth.martinez@fake.tech", "phone": "+1-585-403-1131"}]}, "subscription": {"plan": "custom", "startDate": "2023-12-25", "renewalDate": "2025-12-25", "amount": 49041.83, "currency": "USD", "services": [{"id": "svc-526", "name": "Analytics", "quantity": 5006, "unit": "GB", "unitPrice": 128.23}, {"id": "svc-279", "name": "Implementation", "quantity": 50, "unit": "package", "unitPrice": 1275.83}]}}, {"id": "rec-00146", "createdAt": "2021-08-16T19:48:56Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27019655", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "finance", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "John Taylor", "email": "william.robinson@fake.tech", "phone": "+1-390-657-4963"}, {"type": "technical", "name": "William Taylor", "email": "thomas.johnson@example.com", "phone": "+1-765-263-9393"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-28", "renewalDate": "2022-10-28", "amount": 36990.24, "currency": "AUD", "services": [{"id": "svc-863", "name": "Database", "quantity": 1977, "unit": "TB", "unitPrice": 338.79}, {"id": "svc-137", "name": "Maintenance", "quantity": 69, "unit": "package", "unitPrice": 77.67}]}}, {"id": "rec-00147", "createdAt": "2024-02-27T20:20:03Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96651407", "name": "Acme Corp", "segment": "startup", "industry": "education", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Mary White", "email": "james.brown@sample.io", "phone": "+1-716-222-9465"}, {"type": "technical", "name": "Mary Miller", "email": "richard.harris@sample.io", "phone": "+1-900-826-8960"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-12-23", "renewalDate": "2024-12-23", "amount": 31836.63, "currency": "USD", "services": [{"id": "svc-523", "name": "Compute Instances", "quantity": 3330, "unit": "GB", "unitPrice": 438.18}, {"id": "svc-197", "name": "Consulting", "quantity": 59, "unit": "package", "unitPrice": 1499.47}]}}, {"id": "rec-00148", "createdAt": "2020-02-02T19:13:08Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-56009702", "name": "Globex", "segment": "startup", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Karen White", "email": "karen.martin@mock.co", "phone": "+1-312-377-7522"}, {"type": "technical", "name": "David Garcia", "email": "susan.garcia@mock.co", "phone": "+1-686-987-4828"}]}, "subscription": {"plan": "professional", "startDate": "2021-08-04", "renewalDate": "2024-08-04", "amount": 14341.24, "currency": "AUD", "services": [{"id": "svc-430", "name": "Compute Instances", "quantity": 4444, "unit": "license", "unitPrice": 345.71}, {"id": "svc-322", "name": "Training", "quantity": 66, "unit": "package", "unitPrice": 650.8}]}}, {"id": "rec-00149", "createdAt": "2024-10-06T18:54:59Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13483158", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "Patricia Anderson", "email": "jessica.moore@sample.io", "phone": "+1-205-730-7978"}, {"type": "technical", "name": "Sarah Wilson", "email": "joseph.anderson@sample.io", "phone": "+1-918-107-4823"}]}, "subscription": {"plan": "professional", "startDate": "2021-03-05", "renewalDate": "2023-03-05", "amount": 17107.14, "currency": "EUR", "services": [{"id": "svc-162", "name": "Compute Instances", "quantity": 8663, "unit": "TB", "unitPrice": 17.21}, {"id": "svc-530", "name": "Support Plan", "quantity": 84, "unit": "session", "unitPrice": 68.6}]}}, {"id": "rec-00150", "createdAt": "2025-04-09T13:57:28Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-81498774", "name": "Acme Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jessica Thompson", "email": "patricia.taylor@test.org", "phone": "+1-703-887-8313"}, {"type": "technical", "name": "David Harris", "email": "joseph.thompson@test.org", "phone": "+1-385-569-7686"}]}, "subscription": {"plan": "professional", "startDate": "2020-04-16", "renewalDate": "2022-04-16", "amount": 10046.24, "currency": "EUR", "services": [{"id": "svc-625", "name": "Analytics", "quantity": 2775, "unit": "instance", "unitPrice": 292.86}, {"id": "svc-521", "name": "Implementation", "quantity": 6, "unit": "session", "unitPrice": 242.65}]}}, {"id": "rec-00151", "createdAt": "2022-06-12T18:33:33Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-24366631", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Patricia Martinez", "email": "william.davis@demo.net", "phone": "+1-913-898-2532"}, {"type": "technical", "name": "Karen Moore", "email": "sarah.williams@example.com", "phone": "+1-586-624-3019"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-09", "renewalDate": "2026-11-09", "amount": 49015.99, "currency": "USD", "services": [{"id": "svc-363", "name": "Analytics", "quantity": 6190, "unit": "instance", "unitPrice": 368.77}, {"id": "svc-226", "name": "Consulting", "quantity": 10, "unit": "subscription", "unitPrice": 1221.36}]}}, {"id": "rec-00152", "createdAt": "2020-10-28T17:12:42Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-22957568", "name": "Soylent Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "William Martinez", "email": "michael.williams@demo.net", "phone": "+1-311-408-4091"}, {"type": "technical", "name": "David Martinez", "email": "elizabeth.martinez@fake.tech", "phone": "+1-489-795-9220"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-17", "renewalDate": "2025-03-17", "amount": 7484.43, "currency": "GBP", "services": [{"id": "svc-986", "name": "Database", "quantity": 2174, "unit": "user", "unitPrice": 333.92}, {"id": "svc-373", "name": "Implementation", "quantity": 46, "unit": "unit", "unitPrice": 1805.03}]}}, {"id": "rec-00153", "createdAt": "2022-05-19T02:46:38Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-26246084", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "education", "yearFounded": 1950, "contacts": [{"type": "primary", "name": "James Garcia", "email": "robert.williams@fake.tech", "phone": "+1-426-207-8872"}, {"type": "technical", "name": "Richard Jackson", "email": "david.brown@test.org", "phone": "+1-426-361-9771"}]}, "subscription": {"plan": "professional", "startDate": "2023-04-16", "renewalDate": "2026-04-16", "amount": 10462.22, "currency": "USD", "services": [{"id": "svc-149", "name": "Cloud Storage", "quantity": 7043, "unit": "TB", "unitPrice": 43.57}, {"id": "svc-901", "name": "Maintenance", "quantity": 93, "unit": "session", "unitPrice": 1547.68}]}}, {"id": "rec-00154", "createdAt": "2024-12-05T13:08:36Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-91019029", "name": "Umbrella Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Nancy Robinson", "email": "richard.martin@mock.co", "phone": "+1-658-651-2497"}, {"type": "technical", "name": "Michael Garcia", "email": "joseph.martin@demo.net", "phone": "+1-436-536-8725"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-25", "renewalDate": "2023-06-25", "amount": 34399.34, "currency": "CAD", "services": [{"id": "svc-440", "name": "Security", "quantity": 5399, "unit": "GB", "unitPrice": 112.61}, {"id": "svc-110", "name": "Maintenance", "quantity": 96, "unit": "package", "unitPrice": 1306.65}]}}, {"id": "rec-00155", "createdAt": "2025-03-02T14:29:36Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-13574815", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Sarah Moore", "email": "karen.jackson@sample.io", "phone": "+1-576-566-9746"}, {"type": "technical", "name": "Elizabeth Miller", "email": "richard.garcia@sample.io", "phone": "+1-212-469-2103"}]}, "subscription": {"plan": "basic", "startDate": "2020-06-18", "renewalDate": "2021-06-18", "amount": 34109.42, "currency": "AUD", "services": [{"id": "svc-753", "name": "Security", "quantity": 5164, "unit": "license", "unitPrice": 223.32}, {"id": "svc-206", "name": "Consulting", "quantity": 97, "unit": "hour", "unitPrice": 1672.31}]}}, {"id": "rec-00156", "createdAt": "2025-11-18T04:14:03Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-45112748", "name": "Weyland-Yutani", "segment": "small-business", "industry": "retail", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Karen Williams", "email": "elizabeth.martinez@demo.net", "phone": "+1-926-591-6881"}, {"type": "technical", "name": "Thomas Thomas", "email": "robert.robinson@test.org", "phone": "+1-249-736-9012"}]}, "subscription": {"plan": "custom", "startDate": "2024-01-05", "renewalDate": "2027-01-05", "amount": 9276.83, "currency": "AUD", "services": [{"id": "svc-713", "name": "Security", "quantity": 7740, "unit": "TB", "unitPrice": 59.41}, {"id": "svc-218", "name": "Maintenance", "quantity": 97, "unit": "hour", "unitPrice": 1806.55}]}}, {"id": "rec-00157", "createdAt": "2025-07-22T22:28:03Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-55328919", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "education", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "robert.garcia@fake.tech", "phone": "+1-202-633-3705"}, {"type": "technical", "name": "Patricia Thomas", "email": "susan.robinson@fake.tech", "phone": "+1-751-826-3888"}]}, "subscription": {"plan": "custom", "startDate": "2020-08-10", "renewalDate": "2021-08-10", "amount": 48350.88, "currency": "USD", "services": [{"id": "svc-598", "name": "Security", "quantity": 4457, "unit": "user", "unitPrice": 494.09}, {"id": "svc-110", "name": "Support Plan", "quantity": 33, "unit": "subscription", "unitPrice": 782.01}]}}, {"id": "rec-00158", "createdAt": "2025-04-09T06:57:51Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-75802257", "name": "Soylent Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1953, "contacts": [{"type": "primary", "name": "Michael Jackson", "email": "patricia.davis@test.org", "phone": "+1-688-626-6926"}, {"type": "technical", "name": "David Moore", "email": "patricia.wilson@test.org", "phone": "+1-622-713-6885"}]}, "subscription": {"plan": "free", "startDate": "2024-07-03", "renewalDate": "2027-07-03", "amount": 3365.47, "currency": "AUD", "services": [{"id": "svc-713", "name": "Analytics", "quantity": 9252, "unit": "instance", "unitPrice": 350.74}, {"id": "svc-300", "name": "Training", "quantity": 43, "unit": "hour", "unitPrice": 156.8}]}}, {"id": "rec-00159", "createdAt": "2025-06-04T17:18:50Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-23493198", "name": "Aperture Science", "segment": "mid-market", "industry": "finance", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "John Smith", "email": "elizabeth.anderson@sample.io", "phone": "+1-492-888-1614"}, {"type": "technical", "name": "Robert Martin", "email": "john.taylor@fake.tech", "phone": "+1-596-522-7409"}]}, "subscription": {"plan": "custom", "startDate": "2022-04-09", "renewalDate": "2024-04-09", "amount": 11927.23, "currency": "GBP", "services": [{"id": "svc-729", "name": "Security", "quantity": 6578, "unit": "license", "unitPrice": 198.56}, {"id": "svc-241", "name": "Maintenance", "quantity": 73, "unit": "subscription", "unitPrice": 1788.76}]}}, {"id": "rec-00160", "createdAt": "2020-02-04T21:14:42Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-72622088", "name": "Massive Dynamic", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Nancy Williams", "email": "robert.miller@fake.tech", "phone": "+1-242-447-9713"}, {"type": "technical", "name": "David Miller", "email": "elizabeth.smith@mock.co", "phone": "+1-419-230-7052"}]}, "subscription": {"plan": "professional", "startDate": "2024-07-15", "renewalDate": "2025-07-15", "amount": 35118.12, "currency": "AUD", "services": [{"id": "svc-110", "name": "Analytics", "quantity": 9056, "unit": "TB", "unitPrice": 19.43}, {"id": "svc-608", "name": "Maintenance", "quantity": 72, "unit": "session", "unitPrice": 994.86}]}}, {"id": "rec-00161", "createdAt": "2021-10-24T17:53:30Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97440395", "name": "Weyland-Yutani", "segment": "small-business", "industry": "education", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Karen Johnson", "email": "james.martin@test.org", "phone": "+1-242-394-4063"}, {"type": "technical", "name": "Joseph Wilson", "email": "charles.johnson@mock.co", "phone": "+1-435-538-2912"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-01", "renewalDate": "2021-02-01", "amount": 10798.82, "currency": "CAD", "services": [{"id": "svc-263", "name": "Security", "quantity": 5195, "unit": "GB", "unitPrice": 70.82}, {"id": "svc-735", "name": "Maintenance", "quantity": 52, "unit": "session", "unitPrice": 41.38}]}}, {"id": "rec-00162", "createdAt": "2023-05-02T10:21:42Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-54031326", "name": "Stark Industries", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "william.thomas@mock.co", "phone": "+1-480-310-9452"}, {"type": "technical", "name": "Robert Anderson", "email": "karen.anderson@test.org", "phone": "+1-460-440-1798"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-13", "renewalDate": "2023-04-13", "amount": 15471.31, "currency": "GBP", "services": [{"id": "svc-602", "name": "Database", "quantity": 5510, "unit": "TB", "unitPrice": 287.01}, {"id": "svc-614", "name": "Maintenance", "quantity": 26, "unit": "subscription", "unitPrice": 1444.19}]}}, {"id": "rec-00163", "createdAt": "2021-01-21T04:32:38Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-61241286", "name": "Globex", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "sarah.robinson@test.org", "phone": "+1-200-913-2357"}, {"type": "technical", "name": "John Anderson", "email": "jennifer.taylor@sample.io", "phone": "+1-977-823-5291"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-21", "renewalDate": "2021-02-21", "amount": 34860.89, "currency": "GBP", "services": [{"id": "svc-856", "name": "Compute Instances", "quantity": 7076, "unit": "license", "unitPrice": 151.33}, {"id": "svc-919", "name": "Implementation", "quantity": 7, "unit": "hour", "unitPrice": 1510.15}]}}, {"id": "rec-00164", "createdAt": "2021-02-01T11:52:21Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-14629806", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Linda White", "email": "james.thomas@example.com", "phone": "+1-210-561-8372"}, {"type": "technical", "name": "Susan Anderson", "email": "joseph.miller@mock.co", "phone": "+1-924-202-8028"}]}, "subscription": {"plan": "free", "startDate": "2020-04-22", "renewalDate": "2021-04-22", "amount": 16021.33, "currency": "AUD", "services": [{"id": "svc-206", "name": "Compute Instances", "quantity": 4342, "unit": "TB", "unitPrice": 22.67}, {"id": "svc-831", "name": "Implementation", "quantity": 18, "unit": "unit", "unitPrice": 1135.46}]}}, {"id": "rec-00165", "createdAt": "2022-11-04T02:10:05Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-13308463", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "James Moore", "email": "james.williams@fake.tech", "phone": "+1-220-222-7952"}, {"type": "technical", "name": "John Brown", "email": "mary.martinez@mock.co", "phone": "+1-484-824-3919"}]}, "subscription": {"plan": "basic", "startDate": "2023-02-20", "renewalDate": "2026-02-20", "amount": 17299.65, "currency": "CAD", "services": [{"id": "svc-633", "name": "Cloud Storage", "quantity": 175, "unit": "TB", "unitPrice": 91.54}, {"id": "svc-767", "name": "Training", "quantity": 98, "unit": "session", "unitPrice": 1134.51}]}}, {"id": "rec-00166", "createdAt": "2020-10-13T20:23:41Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-32848728", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Linda Martinez", "email": "richard.thompson@fake.tech", "phone": "+1-829-358-3172"}, {"type": "technical", "name": "David Jones", "email": "james.brown@mock.co", "phone": "+1-869-499-5171"}]}, "subscription": {"plan": "free", "startDate": "2022-03-08", "renewalDate": "2023-03-08", "amount": 1486.25, "currency": "CAD", "services": [{"id": "svc-890", "name": "Analytics", "quantity": 9838, "unit": "GB", "unitPrice": 465.71}, {"id": "svc-341", "name": "Support Plan", "quantity": 33, "unit": "hour", "unitPrice": 1677.78}]}}, {"id": "rec-00167", "createdAt": "2020-03-04T22:53:23Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-27213713", "name": "Weyland-Yutani", "segment": "startup", "industry": "manufacturing", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Jessica Martin", "email": "elizabeth.thompson@example.com", "phone": "+1-314-953-6480"}, {"type": "technical", "name": "Sarah Wilson", "email": "thomas.taylor@sample.io", "phone": "+1-485-506-6520"}]}, "subscription": {"plan": "professional", "startDate": "2023-10-26", "renewalDate": "2026-10-26", "amount": 34394.53, "currency": "AUD", "services": [{"id": "svc-879", "name": "Cloud Storage", "quantity": 7573, "unit": "license", "unitPrice": 254.45}, {"id": "svc-884", "name": "Support Plan", "quantity": 91, "unit": "hour", "unitPrice": 1550.73}]}}, {"id": "rec-00168", "createdAt": "2024-06-16T01:15:50Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97836551", "name": "Virtucon", "segment": "startup", "industry": "finance", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Susan Wilson", "email": "jessica.miller@fake.tech", "phone": "+1-564-313-8900"}, {"type": "technical", "name": "Mary Williams", "email": "michael.harris@mock.co", "phone": "+1-730-550-1509"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-12", "renewalDate": "2023-12-12", "amount": 5284.51, "currency": "CAD", "services": [{"id": "svc-636", "name": "Database", "quantity": 5406, "unit": "user", "unitPrice": 423.02}, {"id": "svc-625", "name": "Support Plan", "quantity": 63, "unit": "subscription", "unitPrice": 1479.47}]}}, {"id": "rec-00169", "createdAt": "2021-08-24T18:44:13Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-79685586", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "charles.robinson@demo.net", "phone": "+1-782-698-3254"}, {"type": "technical", "name": "Karen Jones", "email": "john.jackson@example.com", "phone": "+1-658-336-3714"}]}, "subscription": {"plan": "basic", "startDate": "2024-03-11", "renewalDate": "2026-03-11", "amount": 17957.97, "currency": "EUR", "services": [{"id": "svc-777", "name": "Cloud Storage", "quantity": 9023, "unit": "user", "unitPrice": 33.32}, {"id": "svc-826", "name": "Maintenance", "quantity": 70, "unit": "subscription", "unitPrice": 1407.64}]}}, {"id": "rec-00170", "createdAt": "2022-07-05T21:55:21Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-79061853", "name": "Stark Industries", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Patricia Johnson", "email": "william.jackson@test.org", "phone": "+1-538-940-9356"}, {"type": "technical", "name": "Robert Robinson", "email": "jessica.brown@fake.tech", "phone": "+1-858-380-6340"}]}, "subscription": {"plan": "basic", "startDate": "2024-04-28", "renewalDate": "2027-04-28", "amount": 19790.0, "currency": "USD", "services": [{"id": "svc-634", "name": "Database", "quantity": 4921, "unit": "user", "unitPrice": 215.08}, {"id": "svc-999", "name": "Training", "quantity": 13, "unit": "unit", "unitPrice": 951.16}]}}, {"id": "rec-00171", "createdAt": "2025-11-23T22:34:27Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-91213360", "name": "Virtucon", "segment": "startup", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "sarah.moore@demo.net", "phone": "+1-834-605-7504"}, {"type": "technical", "name": "Jessica Thomas", "email": "richard.garcia@mock.co", "phone": "+1-703-220-2939"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-22", "renewalDate": "2025-01-22", "amount": 16856.49, "currency": "USD", "services": [{"id": "svc-538", "name": "Database", "quantity": 6172, "unit": "license", "unitPrice": 189.73}, {"id": "svc-757", "name": "Maintenance", "quantity": 42, "unit": "subscription", "unitPrice": 1410.96}]}}, {"id": "rec-00172", "createdAt": "2023-03-09T06:06:09Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-97161134", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Thomas Harris", "email": "jennifer.johnson@example.com", "phone": "+1-523-137-3903"}, {"type": "technical", "name": "Patricia Harris", "email": "jessica.garcia@sample.io", "phone": "+1-393-931-1808"}]}, "subscription": {"plan": "free", "startDate": "2022-12-10", "renewalDate": "2023-12-10", "amount": 42058.23, "currency": "AUD", "services": [{"id": "svc-230", "name": "Compute Instances", "quantity": 3908, "unit": "instance", "unitPrice": 406.95}, {"id": "svc-217", "name": "Support Plan", "quantity": 77, "unit": "package", "unitPrice": 68.99}]}}, {"id": "rec-00173", "createdAt": "2021-02-05T07:07:28Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-31436289", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Richard Miller", "email": "elizabeth.jackson@mock.co", "phone": "+1-420-413-9595"}, {"type": "technical", "name": "Robert Davis", "email": "linda.thomas@mock.co", "phone": "+1-551-316-6337"}]}, "subscription": {"plan": "free", "startDate": "2022-02-15", "renewalDate": "2024-02-15", "amount": 29538.58, "currency": "EUR", "services": [{"id": "svc-862", "name": "Compute Instances", "quantity": 9531, "unit": "GB", "unitPrice": 361.39}, {"id": "svc-814", "name": "Implementation", "quantity": 39, "unit": "hour", "unitPrice": 1197.25}]}}, {"id": "rec-00174", "createdAt": "2024-03-06T17:14:56Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-75011023", "name": "Oscorp", "segment": "small-business", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Mary Wilson", "email": "john.jones@fake.tech", "phone": "+1-937-352-8092"}, {"type": "technical", "name": "David Garcia", "email": "elizabeth.brown@mock.co", "phone": "+1-345-755-9807"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-03", "renewalDate": "2025-06-03", "amount": 49507.0, "currency": "EUR", "services": [{"id": "svc-485", "name": "Cloud Storage", "quantity": 4745, "unit": "GB", "unitPrice": 456.47}, {"id": "svc-468", "name": "Training", "quantity": 70, "unit": "hour", "unitPrice": 1906.64}]}}, {"id": "rec-00175", "createdAt": "2022-08-06T11:56:10Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-46091947", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "technology", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "nancy.white@mock.co", "phone": "+1-308-994-9556"}, {"type": "technical", "name": "John Jones", "email": "mary.martinez@sample.io", "phone": "+1-474-858-7336"}]}, "subscription": {"plan": "free", "startDate": "2020-02-26", "renewalDate": "2022-02-26", "amount": 46479.44, "currency": "AUD", "services": [{"id": "svc-918", "name": "Database", "quantity": 3216, "unit": "GB", "unitPrice": 369.92}, {"id": "svc-721", "name": "Implementation", "quantity": 11, "unit": "package", "unitPrice": 414.09}]}}, {"id": "rec-00176", "createdAt": "2024-01-13T23:54:48Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-69083530", "name": "Umbrella Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "John Miller", "email": "susan.harris@example.com", "phone": "+1-461-811-8780"}, {"type": "technical", "name": "Susan Taylor", "email": "patricia.anderson@example.com", "phone": "+1-389-654-1083"}]}, "subscription": {"plan": "custom", "startDate": "2021-06-28", "renewalDate": "2023-06-28", "amount": 17633.03, "currency": "CAD", "services": [{"id": "svc-990", "name": "Database", "quantity": 7848, "unit": "GB", "unitPrice": 330.47}, {"id": "svc-366", "name": "Maintenance", "quantity": 84, "unit": "unit", "unitPrice": 210.03}]}}, {"id": "rec-00177", "createdAt": "2025-08-25T08:24:53Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-27250306", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Jessica Jackson", "email": "michael.jackson@test.org", "phone": "+1-898-431-9359"}, {"type": "technical", "name": "Charles Williams", "email": "mary.miller@fake.tech", "phone": "+1-659-857-8054"}]}, "subscription": {"plan": "custom", "startDate": "2024-07-22", "renewalDate": "2026-07-22", "amount": 12707.16, "currency": "GBP", "services": [{"id": "svc-424", "name": "Database", "quantity": 5288, "unit": "GB", "unitPrice": 283.01}, {"id": "svc-999", "name": "Maintenance", "quantity": 22, "unit": "package", "unitPrice": 1359.68}]}}, {"id": "rec-00178", "createdAt": "2024-06-24T17:10:10Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95590826", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "susan.garcia@fake.tech", "phone": "+1-313-739-2942"}, {"type": "technical", "name": "Patricia Johnson", "email": "jessica.smith@sample.io", "phone": "+1-340-318-2893"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-06-12", "renewalDate": "2023-06-12", "amount": 21770.87, "currency": "CAD", "services": [{"id": "svc-220", "name": "Security", "quantity": 5093, "unit": "user", "unitPrice": 234.1}, {"id": "svc-525", "name": "Consulting", "quantity": 68, "unit": "session", "unitPrice": 1361.08}]}}, {"id": "rec-00179", "createdAt": "2022-11-04T15:41:36Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-31742725", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Jessica Smith", "email": "joseph.wilson@test.org", "phone": "+1-617-824-2709"}, {"type": "technical", "name": "Nancy Moore", "email": "james.wilson@test.org", "phone": "+1-818-940-5075"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-19", "renewalDate": "2024-01-19", "amount": 448.69, "currency": "CAD", "services": [{"id": "svc-254", "name": "Compute Instances", "quantity": 680, "unit": "instance", "unitPrice": 490.39}, {"id": "svc-862", "name": "Maintenance", "quantity": 52, "unit": "session", "unitPrice": 321.28}]}}, {"id": "rec-00180", "createdAt": "2021-04-05T10:17:38Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-63017073", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "sarah.anderson@test.org", "phone": "+1-882-268-9404"}, {"type": "technical", "name": "Sarah Jones", "email": "elizabeth.garcia@demo.net", "phone": "+1-446-997-5569"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-24", "renewalDate": "2026-01-24", "amount": 41507.56, "currency": "CAD", "services": [{"id": "svc-991", "name": "Cloud Storage", "quantity": 4795, "unit": "instance", "unitPrice": 379.62}, {"id": "svc-620", "name": "Support Plan", "quantity": 31, "unit": "hour", "unitPrice": 356.32}]}}, {"id": "rec-00181", "createdAt": "2022-06-16T13:05:20Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-85750094", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "William Williams", "email": "charles.thomas@fake.tech", "phone": "+1-672-232-6362"}, {"type": "technical", "name": "Jessica Jones", "email": "thomas.jackson@mock.co", "phone": "+1-587-534-7427"}]}, "subscription": {"plan": "free", "startDate": "2020-06-20", "renewalDate": "2021-06-20", "amount": 17032.64, "currency": "GBP", "services": [{"id": "svc-665", "name": "Database", "quantity": 9598, "unit": "instance", "unitPrice": 418.37}, {"id": "svc-658", "name": "Maintenance", "quantity": 37, "unit": "unit", "unitPrice": 1808.89}]}}, {"id": "rec-00182", "createdAt": "2024-08-06T19:55:04Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99298628", "name": "Acme Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "William Thompson", "email": "james.garcia@mock.co", "phone": "+1-685-856-3741"}, {"type": "technical", "name": "Mary Jackson", "email": "jennifer.wilson@fake.tech", "phone": "+1-507-852-8181"}]}, "subscription": {"plan": "custom", "startDate": "2020-05-22", "renewalDate": "2022-05-22", "amount": 34541.11, "currency": "CAD", "services": [{"id": "svc-848", "name": "Database", "quantity": 6686, "unit": "license", "unitPrice": 77.08}, {"id": "svc-284", "name": "Training", "quantity": 30, "unit": "subscription", "unitPrice": 87.58}]}}, {"id": "rec-00183", "createdAt": "2023-11-08T16:02:56Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-98568086", "name": "Globex", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Susan Harris", "email": "sarah.taylor@mock.co", "phone": "+1-493-736-6081"}, {"type": "technical", "name": "Michael Jones", "email": "william.moore@sample.io", "phone": "+1-976-370-2763"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-12-11", "renewalDate": "2023-12-11", "amount": 19934.36, "currency": "AUD", "services": [{"id": "svc-581", "name": "Database", "quantity": 1944, "unit": "license", "unitPrice": 2.44}, {"id": "svc-396", "name": "Maintenance", "quantity": 18, "unit": "subscription", "unitPrice": 1106.93}]}}, {"id": "rec-00184", "createdAt": "2020-08-22T07:22:01Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-27296755", "name": "Oscorp", "segment": "small-business", "industry": "retail", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Charles Davis", "email": "patricia.jones@demo.net", "phone": "+1-686-983-5708"}, {"type": "technical", "name": "John Anderson", "email": "linda.anderson@demo.net", "phone": "+1-733-190-4535"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-03-18", "renewalDate": "2024-03-18", "amount": 45310.03, "currency": "AUD", "services": [{"id": "svc-946", "name": "Compute Instances", "quantity": 8720, "unit": "instance", "unitPrice": 150.36}, {"id": "svc-548", "name": "Maintenance", "quantity": 39, "unit": "session", "unitPrice": 322.08}]}}, {"id": "rec-00185", "createdAt": "2020-01-04T02:04:21Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "us-west-2", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17402977", "name": "Massive Dynamic", "segment": "enterprise", "industry": "education", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Nancy Brown", "email": "robert.white@fake.tech", "phone": "+1-269-642-3521"}, {"type": "technical", "name": "Nancy Martin", "email": "nancy.thomas@example.com", "phone": "+1-890-358-2599"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-12-01", "renewalDate": "2023-12-01", "amount": 30267.58, "currency": "AUD", "services": [{"id": "svc-693", "name": "Database", "quantity": 5234, "unit": "TB", "unitPrice": 408.23}, {"id": "svc-836", "name": "Training", "quantity": 67, "unit": "package", "unitPrice": 1889.07}]}}, {"id": "rec-00186", "createdAt": "2020-03-27T22:44:44Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-94929131", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "robert.davis@sample.io", "phone": "+1-849-593-5292"}, {"type": "technical", "name": "Joseph Wilson", "email": "james.miller@test.org", "phone": "+1-842-550-4693"}]}, "subscription": {"plan": "custom", "startDate": "2024-02-05", "renewalDate": "2026-02-05", "amount": 36385.23, "currency": "USD", "services": [{"id": "svc-195", "name": "Analytics", "quantity": 358, "unit": "license", "unitPrice": 210.94}, {"id": "svc-557", "name": "Training", "quantity": 46, "unit": "subscription", "unitPrice": 1173.43}]}}, {"id": "rec-00187", "createdAt": "2020-05-13T01:05:46Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-70679895", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "William Brown", "email": "william.robinson@test.org", "phone": "+1-369-388-3277"}, {"type": "technical", "name": "Karen Harris", "email": "david.davis@example.com", "phone": "+1-420-719-9037"}]}, "subscription": {"plan": "basic", "startDate": "2020-05-06", "renewalDate": "2021-05-06", "amount": 3326.87, "currency": "USD", "services": [{"id": "svc-663", "name": "Compute Instances", "quantity": 6948, "unit": "user", "unitPrice": 469.19}, {"id": "svc-625", "name": "Training", "quantity": 51, "unit": "subscription", "unitPrice": 1632.48}]}}, {"id": "rec-00188", "createdAt": "2025-09-18T14:01:29Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-89103602", "name": "Umbrella Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Joseph Thomas", "email": "david.anderson@demo.net", "phone": "+1-864-810-5500"}, {"type": "technical", "name": "Patricia Thompson", "email": "linda.jackson@fake.tech", "phone": "+1-510-974-4727"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-22", "renewalDate": "2023-12-22", "amount": 18771.96, "currency": "USD", "services": [{"id": "svc-178", "name": "Cloud Storage", "quantity": 4633, "unit": "TB", "unitPrice": 66.05}, {"id": "svc-140", "name": "Training", "quantity": 76, "unit": "package", "unitPrice": 62.47}]}}, {"id": "rec-00189", "createdAt": "2025-06-15T08:11:12Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-87642089", "name": "Globex", "segment": "small-business", "industry": "healthcare", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "Nancy Taylor", "email": "elizabeth.brown@demo.net", "phone": "+1-936-543-8854"}, {"type": "technical", "name": "Jennifer Williams", "email": "william.johnson@sample.io", "phone": "+1-202-438-5110"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-10", "renewalDate": "2027-04-10", "amount": 4399.47, "currency": "CAD", "services": [{"id": "svc-287", "name": "Database", "quantity": 5979, "unit": "TB", "unitPrice": 56.48}, {"id": "svc-365", "name": "Support Plan", "quantity": 35, "unit": "hour", "unitPrice": 1602.12}]}}, {"id": "rec-00190", "createdAt": "2025-03-10T13:22:58Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-57990368", "name": "Initech", "segment": "mid-market", "industry": "retail", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Mary Thomas", "email": "richard.taylor@test.org", "phone": "+1-291-812-1207"}, {"type": "technical", "name": "Elizabeth Smith", "email": "karen.white@demo.net", "phone": "+1-475-814-3207"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-26", "renewalDate": "2021-12-26", "amount": 15113.84, "currency": "GBP", "services": [{"id": "svc-154", "name": "Security", "quantity": 7207, "unit": "TB", "unitPrice": 206.12}, {"id": "svc-535", "name": "Training", "quantity": 4, "unit": "subscription", "unitPrice": 1409.63}]}}, {"id": "rec-00191", "createdAt": "2021-01-22T01:28:03Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66717265", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "retail", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "nancy.jones@example.com", "phone": "+1-433-322-6286"}, {"type": "technical", "name": "William Thomas", "email": "david.miller@sample.io", "phone": "+1-982-921-4218"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-05-22", "renewalDate": "2024-05-22", "amount": 41866.96, "currency": "USD", "services": [{"id": "svc-131", "name": "Database", "quantity": 7150, "unit": "GB", "unitPrice": 165.35}, {"id": "svc-506", "name": "Consulting", "quantity": 27, "unit": "package", "unitPrice": 291.01}]}}, {"id": "rec-00192", "createdAt": "2023-08-25T21:45:18Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-43067057", "name": "LexCorp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Sarah Martinez", "email": "john.jackson@test.org", "phone": "+1-865-398-1413"}, {"type": "technical", "name": "Susan Garcia", "email": "susan.johnson@mock.co", "phone": "+1-979-479-5922"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-01-06", "renewalDate": "2022-01-06", "amount": 42883.63, "currency": "GBP", "services": [{"id": "svc-270", "name": "Database", "quantity": 8991, "unit": "GB", "unitPrice": 293.99}, {"id": "svc-662", "name": "Consulting", "quantity": 30, "unit": "package", "unitPrice": 1358.03}]}}, {"id": "rec-00193", "createdAt": "2022-02-14T20:55:56Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-45559921", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Patricia Robinson", "email": "karen.anderson@mock.co", "phone": "+1-806-235-3792"}, {"type": "technical", "name": "Sarah Williams", "email": "elizabeth.moore@fake.tech", "phone": "+1-641-758-7514"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-26", "renewalDate": "2023-10-26", "amount": 33101.51, "currency": "USD", "services": [{"id": "svc-237", "name": "Database", "quantity": 2712, "unit": "GB", "unitPrice": 492.85}, {"id": "svc-132", "name": "Consulting", "quantity": 32, "unit": "session", "unitPrice": 149.5}]}}, {"id": "rec-00194", "createdAt": "2024-11-17T20:48:27Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-62655536", "name": "Globex", "segment": "small-business", "industry": "technology", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Michael White", "email": "jennifer.moore@test.org", "phone": "+1-955-823-2285"}, {"type": "technical", "name": "Elizabeth Davis", "email": "joseph.harris@test.org", "phone": "+1-725-505-7780"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-01", "renewalDate": "2024-09-01", "amount": 7447.22, "currency": "AUD", "services": [{"id": "svc-857", "name": "Database", "quantity": 3909, "unit": "instance", "unitPrice": 149.54}, {"id": "svc-153", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 59.59}]}}, {"id": "rec-00195", "createdAt": "2023-05-21T19:23:50Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55900034", "name": "Initech", "segment": "small-business", "industry": "technology", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Nancy White", "email": "susan.davis@example.com", "phone": "+1-521-285-5450"}, {"type": "technical", "name": "Charles Johnson", "email": "patricia.garcia@test.org", "phone": "+1-588-806-2044"}]}, "subscription": {"plan": "professional", "startDate": "2023-07-03", "renewalDate": "2025-07-03", "amount": 307.35, "currency": "EUR", "services": [{"id": "svc-875", "name": "Compute Instances", "quantity": 2586, "unit": "TB", "unitPrice": 327.63}, {"id": "svc-534", "name": "Training", "quantity": 39, "unit": "hour", "unitPrice": 1446.54}]}}, {"id": "rec-00196", "createdAt": "2020-01-21T14:06:19Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-62819270", "name": "Acme Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Mary Jackson", "email": "joseph.thompson@test.org", "phone": "+1-568-440-6448"}, {"type": "technical", "name": "Mary Moore", "email": "karen.brown@test.org", "phone": "+1-673-740-7099"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-10", "renewalDate": "2021-04-10", "amount": 47088.62, "currency": "USD", "services": [{"id": "svc-911", "name": "Compute Instances", "quantity": 9383, "unit": "GB", "unitPrice": 403.9}, {"id": "svc-759", "name": "Maintenance", "quantity": 94, "unit": "subscription", "unitPrice": 1727.34}]}}, {"id": "rec-00197", "createdAt": "2022-12-11T18:05:36Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-82501363", "name": "Acme Corp", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Patricia Davis", "email": "susan.johnson@demo.net", "phone": "+1-728-287-3769"}, {"type": "technical", "name": "Patricia Wilson", "email": "elizabeth.anderson@fake.tech", "phone": "+1-617-741-6709"}]}, "subscription": {"plan": "free", "startDate": "2022-07-06", "renewalDate": "2023-07-06", "amount": 36143.62, "currency": "EUR", "services": [{"id": "svc-992", "name": "Compute Instances", "quantity": 6651, "unit": "TB", "unitPrice": 194.19}, {"id": "svc-565", "name": "Training", "quantity": 87, "unit": "hour", "unitPrice": 707.61}]}}, {"id": "rec-00198", "createdAt": "2022-03-03T21:40:13Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24218997", "name": "Oscorp", "segment": "mid-market", "industry": "education", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Susan Martinez", "email": "robert.williams@test.org", "phone": "+1-368-453-8261"}, {"type": "technical", "name": "Linda Jackson", "email": "richard.davis@demo.net", "phone": "+1-717-545-5831"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-04-13", "renewalDate": "2025-04-13", "amount": 45620.29, "currency": "GBP", "services": [{"id": "svc-796", "name": "Database", "quantity": 2994, "unit": "instance", "unitPrice": 163.95}, {"id": "svc-952", "name": "Maintenance", "quantity": 11, "unit": "hour", "unitPrice": 295.08}]}}, {"id": "rec-00199", "createdAt": "2025-02-14T06:39:45Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-87717389", "name": "Soylent Corp", "segment": "small-business", "industry": "retail", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "William Williams", "email": "john.johnson@example.com", "phone": "+1-859-108-4774"}, {"type": "technical", "name": "James Miller", "email": "michael.white@test.org", "phone": "+1-312-760-8553"}]}, "subscription": {"plan": "custom", "startDate": "2024-12-21", "renewalDate": "2026-12-21", "amount": 30546.08, "currency": "AUD", "services": [{"id": "svc-766", "name": "Compute Instances", "quantity": 8268, "unit": "license", "unitPrice": 264.31}, {"id": "svc-133", "name": "Implementation", "quantity": 43, "unit": "package", "unitPrice": 59.42}]}}, {"id": "rec-00200", "createdAt": "2025-07-03T00:13:55Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-22553946", "name": "Oscorp", "segment": "mid-market", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Charles Smith", "email": "patricia.white@mock.co", "phone": "+1-945-267-3732"}, {"type": "technical", "name": "Nancy Wilson", "email": "charles.garcia@sample.io", "phone": "+1-286-667-5345"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-26", "renewalDate": "2025-03-26", "amount": 28633.01, "currency": "USD", "services": [{"id": "svc-370", "name": "Database", "quantity": 3202, "unit": "GB", "unitPrice": 320.79}, {"id": "svc-387", "name": "Support Plan", "quantity": 14, "unit": "subscription", "unitPrice": 1837.82}]}}, {"id": "rec-00201", "createdAt": "2023-08-21T22:22:30Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-40823615", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "John Jones", "email": "karen.thompson@demo.net", "phone": "+1-719-926-8344"}, {"type": "technical", "name": "David Harris", "email": "robert.johnson@mock.co", "phone": "+1-319-973-3911"}]}, "subscription": {"plan": "basic", "startDate": "2022-10-18", "renewalDate": "2024-10-18", "amount": 1545.85, "currency": "AUD", "services": [{"id": "svc-100", "name": "Compute Instances", "quantity": 131, "unit": "GB", "unitPrice": 241.28}, {"id": "svc-313", "name": "Training", "quantity": 74, "unit": "session", "unitPrice": 1135.34}]}}, {"id": "rec-00202", "createdAt": "2024-05-05T01:21:21Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57755845", "name": "Stark Industries", "segment": "startup", "industry": "manufacturing", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Charles White", "email": "joseph.davis@sample.io", "phone": "+1-820-472-1919"}, {"type": "technical", "name": "Elizabeth Jones", "email": "linda.anderson@demo.net", "phone": "+1-898-967-8632"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-03", "renewalDate": "2025-09-03", "amount": 44016.76, "currency": "USD", "services": [{"id": "svc-251", "name": "Cloud Storage", "quantity": 6610, "unit": "GB", "unitPrice": 238.23}, {"id": "svc-562", "name": "Support Plan", "quantity": 65, "unit": "hour", "unitPrice": 957.79}]}}, {"id": "rec-00203", "createdAt": "2024-01-26T17:24:23Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-76638720", "name": "Umbrella Corp", "segment": "small-business", "industry": "education", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Charles Martin", "email": "jessica.brown@sample.io", "phone": "+1-313-598-3669"}, {"type": "technical", "name": "Richard Wilson", "email": "joseph.martin@test.org", "phone": "+1-721-146-2954"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-18", "renewalDate": "2024-09-18", "amount": 49404.43, "currency": "EUR", "services": [{"id": "svc-724", "name": "Analytics", "quantity": 9381, "unit": "instance", "unitPrice": 340.31}, {"id": "svc-317", "name": "Implementation", "quantity": 25, "unit": "session", "unitPrice": 1221.88}]}}, {"id": "rec-00204", "createdAt": "2025-03-23T21:17:18Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96663942", "name": "Oscorp", "segment": "startup", "industry": "education", "yearFounded": 1963, "contacts": [{"type": "primary", "name": "Patricia Thompson", "email": "james.martin@sample.io", "phone": "+1-787-361-6270"}, {"type": "technical", "name": "William Thomas", "email": "david.miller@demo.net", "phone": "+1-433-433-4665"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-06-10", "renewalDate": "2022-06-10", "amount": 2463.65, "currency": "AUD", "services": [{"id": "svc-645", "name": "Cloud Storage", "quantity": 5938, "unit": "GB", "unitPrice": 466.06}, {"id": "svc-798", "name": "Implementation", "quantity": 59, "unit": "unit", "unitPrice": 360.01}]}}, {"id": "rec-00205", "createdAt": "2021-07-25T18:06:21Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-14451083", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Susan White", "email": "nancy.johnson@demo.net", "phone": "+1-602-544-6506"}, {"type": "technical", "name": "Patricia Jones", "email": "susan.johnson@fake.tech", "phone": "+1-301-534-9293"}]}, "subscription": {"plan": "free", "startDate": "2021-08-02", "renewalDate": "2024-08-02", "amount": 10903.96, "currency": "AUD", "services": [{"id": "svc-764", "name": "Cloud Storage", "quantity": 9440, "unit": "user", "unitPrice": 492.65}, {"id": "svc-741", "name": "Training", "quantity": 2, "unit": "hour", "unitPrice": 1838.44}]}}, {"id": "rec-00206", "createdAt": "2025-08-11T23:06:29Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-99434327", "name": "Wayne Enterprises", "segment": "startup", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Joseph Miller", "email": "linda.smith@example.com", "phone": "+1-703-568-7507"}, {"type": "technical", "name": "Jennifer Jackson", "email": "richard.jackson@fake.tech", "phone": "+1-296-539-1648"}]}, "subscription": {"plan": "custom", "startDate": "2023-01-05", "renewalDate": "2025-01-05", "amount": 27768.0, "currency": "EUR", "services": [{"id": "svc-949", "name": "Compute Instances", "quantity": 2393, "unit": "instance", "unitPrice": 222.72}, {"id": "svc-104", "name": "Implementation", "quantity": 62, "unit": "hour", "unitPrice": 454.08}]}}, {"id": "rec-00207", "createdAt": "2024-04-18T15:21:09Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39575232", "name": "Wayne Enterprises", "segment": "small-business", "industry": "finance", "yearFounded": 1950, "contacts": [{"type": "primary", "name": "Susan Smith", "email": "david.johnson@fake.tech", "phone": "+1-786-152-4537"}, {"type": "technical", "name": "Jessica Jackson", "email": "patricia.jones@test.org", "phone": "+1-224-268-2975"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-04-02", "renewalDate": "2025-04-02", "amount": 10155.78, "currency": "GBP", "services": [{"id": "svc-136", "name": "Database", "quantity": 9315, "unit": "TB", "unitPrice": 235.51}, {"id": "svc-311", "name": "Implementation", "quantity": 25, "unit": "session", "unitPrice": 819.54}]}}, {"id": "rec-00208", "createdAt": "2023-09-12T10:23:48Z", "type": "customer", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-45680081", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "sarah.jackson@sample.io", "phone": "+1-764-362-9154"}, {"type": "technical", "name": "William Brown", "email": "james.johnson@sample.io", "phone": "+1-739-752-8433"}]}, "subscription": {"plan": "free", "startDate": "2022-12-26", "renewalDate": "2023-12-26", "amount": 22857.36, "currency": "USD", "services": [{"id": "svc-984", "name": "Cloud Storage", "quantity": 9470, "unit": "TB", "unitPrice": 193.48}, {"id": "svc-600", "name": "Consulting", "quantity": 14, "unit": "session", "unitPrice": 889.61}]}}, {"id": "rec-00209", "createdAt": "2021-11-26T13:06:23Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-94739634", "name": "Umbrella Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 2002, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "linda.harris@example.com", "phone": "+1-495-804-3125"}, {"type": "technical", "name": "James Williams", "email": "richard.moore@test.org", "phone": "+1-672-505-9283"}]}, "subscription": {"plan": "free", "startDate": "2021-08-27", "renewalDate": "2022-08-27", "amount": 47215.63, "currency": "AUD", "services": [{"id": "svc-900", "name": "Analytics", "quantity": 4189, "unit": "user", "unitPrice": 30.76}, {"id": "svc-856", "name": "Support Plan", "quantity": 49, "unit": "session", "unitPrice": 1568.77}]}}, {"id": "rec-00210", "createdAt": "2024-11-10T18:18:45Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20168024", "name": "Wayne Enterprises", "segment": "startup", "industry": "retail", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "Jennifer Smith", "email": "karen.robinson@sample.io", "phone": "+1-894-875-2820"}, {"type": "technical", "name": "Karen Johnson", "email": "jennifer.moore@mock.co", "phone": "+1-295-299-8782"}]}, "subscription": {"plan": "free", "startDate": "2022-03-22", "renewalDate": "2025-03-22", "amount": 1995.71, "currency": "GBP", "services": [{"id": "svc-193", "name": "Compute Instances", "quantity": 2977, "unit": "TB", "unitPrice": 39.23}, {"id": "svc-972", "name": "Support Plan", "quantity": 39, "unit": "unit", "unitPrice": 683.27}]}}, {"id": "rec-00211", "createdAt": "2022-07-25T15:31:45Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-78422596", "name": "Umbrella Corp", "segment": "startup", "industry": "technology", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "David Taylor", "email": "mary.taylor@demo.net", "phone": "+1-568-262-9536"}, {"type": "technical", "name": "James Jackson", "email": "sarah.jones@mock.co", "phone": "+1-960-840-2291"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-01", "renewalDate": "2026-01-01", "amount": 39114.86, "currency": "AUD", "services": [{"id": "svc-327", "name": "Database", "quantity": 3705, "unit": "GB", "unitPrice": 453.53}, {"id": "svc-670", "name": "Support Plan", "quantity": 92, "unit": "package", "unitPrice": 1416.04}]}}, {"id": "rec-00212", "createdAt": "2021-12-17T09:55:36Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-24032856", "name": "Acme Corp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Jessica Moore", "email": "joseph.johnson@example.com", "phone": "+1-305-199-8853"}, {"type": "technical", "name": "David Taylor", "email": "david.martin@demo.net", "phone": "+1-526-289-1009"}]}, "subscription": {"plan": "free", "startDate": "2021-02-10", "renewalDate": "2023-02-10", "amount": 29822.16, "currency": "USD", "services": [{"id": "svc-870", "name": "Database", "quantity": 233, "unit": "user", "unitPrice": 23.82}, {"id": "svc-486", "name": "Support Plan", "quantity": 3, "unit": "package", "unitPrice": 1745.07}]}}, {"id": "rec-00213", "createdAt": "2020-05-23T14:11:43Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-91957325", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Jennifer Thompson", "email": "patricia.anderson@mock.co", "phone": "+1-332-523-3434"}, {"type": "technical", "name": "Richard White", "email": "jennifer.jackson@fake.tech", "phone": "+1-226-883-5812"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-10-09", "renewalDate": "2025-10-09", "amount": 49593.68, "currency": "USD", "services": [{"id": "svc-574", "name": "Analytics", "quantity": 8516, "unit": "TB", "unitPrice": 304.68}, {"id": "svc-222", "name": "Maintenance", "quantity": 89, "unit": "session", "unitPrice": 512.5}]}}, {"id": "rec-00214", "createdAt": "2024-03-10T15:33:44Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-20529637", "name": "Massive Dynamic", "segment": "mid-market", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "William Martin", "email": "john.martin@demo.net", "phone": "+1-842-597-1315"}, {"type": "technical", "name": "Mary Robinson", "email": "joseph.wilson@demo.net", "phone": "+1-260-171-2598"}]}, "subscription": {"plan": "professional", "startDate": "2024-09-24", "renewalDate": "2026-09-24", "amount": 9395.57, "currency": "GBP", "services": [{"id": "svc-801", "name": "Compute Instances", "quantity": 8264, "unit": "instance", "unitPrice": 402.91}, {"id": "svc-469", "name": "Consulting", "quantity": 45, "unit": "subscription", "unitPrice": 647.88}]}}, {"id": "rec-00215", "createdAt": "2022-07-20T10:12:44Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-93036616", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 2004, "contacts": [{"type": "primary", "name": "Robert Williams", "email": "jennifer.wilson@demo.net", "phone": "+1-337-232-7831"}, {"type": "technical", "name": "Jennifer Harris", "email": "david.smith@mock.co", "phone": "+1-658-417-7558"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-25", "renewalDate": "2025-01-25", "amount": 41646.8, "currency": "USD", "services": [{"id": "svc-502", "name": "Cloud Storage", "quantity": 6483, "unit": "GB", "unitPrice": 330.62}, {"id": "svc-572", "name": "Consulting", "quantity": 4, "unit": "unit", "unitPrice": 768.41}]}}, {"id": "rec-00216", "createdAt": "2020-10-02T19:40:06Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-72139653", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Susan Brown", "email": "susan.thompson@mock.co", "phone": "+1-797-751-3800"}, {"type": "technical", "name": "Richard Davis", "email": "linda.miller@fake.tech", "phone": "+1-622-963-5476"}]}, "subscription": {"plan": "free", "startDate": "2024-03-14", "renewalDate": "2026-03-14", "amount": 6249.01, "currency": "USD", "services": [{"id": "svc-394", "name": "Security", "quantity": 7870, "unit": "user", "unitPrice": 275.4}, {"id": "svc-561", "name": "Consulting", "quantity": 73, "unit": "subscription", "unitPrice": 1471.2}]}}, {"id": "rec-00217", "createdAt": "2025-02-10T02:52:58Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-56611950", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "retail", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Linda Wilson", "email": "john.thomas@mock.co", "phone": "+1-332-813-1461"}, {"type": "technical", "name": "Robert Smith", "email": "joseph.thomas@demo.net", "phone": "+1-471-306-6503"}]}, "subscription": {"plan": "basic", "startDate": "2023-05-13", "renewalDate": "2024-05-13", "amount": 30783.68, "currency": "CAD", "services": [{"id": "svc-137", "name": "Security", "quantity": 9466, "unit": "instance", "unitPrice": 303.23}, {"id": "svc-398", "name": "Maintenance", "quantity": 2, "unit": "unit", "unitPrice": 1376.93}]}}, {"id": "rec-00218", "createdAt": "2020-10-14T16:08:32Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-64230073", "name": "Aperture Science", "segment": "enterprise", "industry": "retail", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "linda.martin@example.com", "phone": "+1-296-266-5035"}, {"type": "technical", "name": "James Thompson", "email": "william.white@mock.co", "phone": "+1-756-768-3303"}]}, "subscription": {"plan": "free", "startDate": "2023-11-15", "renewalDate": "2026-11-15", "amount": 25043.71, "currency": "USD", "services": [{"id": "svc-654", "name": "Analytics", "quantity": 9736, "unit": "user", "unitPrice": 49.77}, {"id": "svc-255", "name": "Consulting", "quantity": 92, "unit": "session", "unitPrice": 1475.48}]}}, {"id": "rec-00219", "createdAt": "2021-10-07T21:25:12Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-84102481", "name": "Aperture Science", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Karen Garcia", "email": "susan.taylor@demo.net", "phone": "+1-400-576-8279"}, {"type": "technical", "name": "Jennifer Smith", "email": "jessica.miller@fake.tech", "phone": "+1-601-649-9068"}]}, "subscription": {"plan": "custom", "startDate": "2023-09-04", "renewalDate": "2024-09-04", "amount": 8947.08, "currency": "CAD", "services": [{"id": "svc-164", "name": "Cloud Storage", "quantity": 1693, "unit": "license", "unitPrice": 58.87}, {"id": "svc-619", "name": "Implementation", "quantity": 73, "unit": "hour", "unitPrice": 528.35}]}}, {"id": "rec-00220", "createdAt": "2021-12-25T09:25:41Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-45882304", "name": "Nakatomi Trading Corp", "segment": "startup", "industry": "education", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "John Jones", "email": "james.taylor@example.com", "phone": "+1-920-169-9881"}, {"type": "technical", "name": "James Johnson", "email": "michael.garcia@mock.co", "phone": "+1-232-894-2794"}]}, "subscription": {"plan": "custom", "startDate": "2022-08-05", "renewalDate": "2023-08-05", "amount": 44743.01, "currency": "AUD", "services": [{"id": "svc-938", "name": "Analytics", "quantity": 5276, "unit": "user", "unitPrice": 39.08}, {"id": "svc-315", "name": "Implementation", "quantity": 2, "unit": "subscription", "unitPrice": 656.83}]}}, {"id": "rec-00221", "createdAt": "2022-05-25T19:37:20Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-95580242", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Jennifer Taylor", "email": "patricia.johnson@example.com", "phone": "+1-619-130-2294"}, {"type": "technical", "name": "Charles Smith", "email": "david.white@mock.co", "phone": "+1-937-917-2628"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-09-22", "renewalDate": "2021-09-22", "amount": 7970.73, "currency": "AUD", "services": [{"id": "svc-920", "name": "Cloud Storage", "quantity": 5793, "unit": "TB", "unitPrice": 481.72}, {"id": "svc-769", "name": "Support Plan", "quantity": 79, "unit": "unit", "unitPrice": 209.64}]}}, {"id": "rec-00222", "createdAt": "2022-12-22T09:23:55Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28856500", "name": "Massive Dynamic", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Jennifer Martinez", "email": "linda.williams@mock.co", "phone": "+1-714-599-9722"}, {"type": "technical", "name": "Robert Davis", "email": "thomas.robinson@test.org", "phone": "+1-327-762-5664"}]}, "subscription": {"plan": "free", "startDate": "2022-08-23", "renewalDate": "2025-08-23", "amount": 6127.75, "currency": "GBP", "services": [{"id": "svc-195", "name": "Compute Instances", "quantity": 4289, "unit": "instance", "unitPrice": 159.92}, {"id": "svc-380", "name": "Training", "quantity": 1, "unit": "package", "unitPrice": 922.26}]}}, {"id": "rec-00223", "createdAt": "2021-08-05T00:53:51Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-56005396", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Jessica Garcia", "email": "richard.anderson@sample.io", "phone": "+1-988-714-6218"}, {"type": "technical", "name": "Susan Smith", "email": "richard.garcia@mock.co", "phone": "+1-261-739-5541"}]}, "subscription": {"plan": "custom", "startDate": "2021-01-15", "renewalDate": "2024-01-15", "amount": 37040.68, "currency": "CAD", "services": [{"id": "svc-399", "name": "Security", "quantity": 6075, "unit": "TB", "unitPrice": 202.79}, {"id": "svc-275", "name": "Maintenance", "quantity": 70, "unit": "unit", "unitPrice": 378.96}]}}, {"id": "rec-00224", "createdAt": "2020-05-01T01:22:00Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17308812", "name": "Acme Corp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1967, "contacts": [{"type": "primary", "name": "William Thompson", "email": "john.thomas@fake.tech", "phone": "+1-221-572-4971"}, {"type": "technical", "name": "Elizabeth Smith", "email": "karen.williams@sample.io", "phone": "+1-278-899-1923"}]}, "subscription": {"plan": "professional", "startDate": "2021-10-16", "renewalDate": "2023-10-16", "amount": 35265.12, "currency": "USD", "services": [{"id": "svc-267", "name": "Cloud Storage", "quantity": 1015, "unit": "TB", "unitPrice": 68.63}, {"id": "svc-333", "name": "Implementation", "quantity": 42, "unit": "session", "unitPrice": 1852.56}]}}, {"id": "rec-00225", "createdAt": "2021-08-08T19:28:39Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-11847285", "name": "Aperture Science", "segment": "small-business", "industry": "healthcare", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "joseph.wilson@sample.io", "phone": "+1-254-727-5008"}, {"type": "technical", "name": "David Martinez", "email": "john.thompson@example.com", "phone": "+1-616-165-2167"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-05-19", "renewalDate": "2022-05-19", "amount": 29966.81, "currency": "USD", "services": [{"id": "svc-318", "name": "Cloud Storage", "quantity": 510, "unit": "GB", "unitPrice": 55.66}, {"id": "svc-635", "name": "Support Plan", "quantity": 43, "unit": "hour", "unitPrice": 727.15}]}}, {"id": "rec-00226", "createdAt": "2020-01-20T19:20:37Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-35734502", "name": "Virtucon", "segment": "small-business", "industry": "retail", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Joseph Miller", "email": "patricia.anderson@test.org", "phone": "+1-900-271-1230"}, {"type": "technical", "name": "Thomas Jones", "email": "elizabeth.garcia@example.com", "phone": "+1-361-579-3993"}]}, "subscription": {"plan": "basic", "startDate": "2021-10-18", "renewalDate": "2023-10-18", "amount": 21114.76, "currency": "USD", "services": [{"id": "svc-196", "name": "Compute Instances", "quantity": 6905, "unit": "instance", "unitPrice": 226.38}, {"id": "svc-411", "name": "Training", "quantity": 39, "unit": "unit", "unitPrice": 407.3}]}}, {"id": "rec-00227", "createdAt": "2025-02-27T03:24:01Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-16312577", "name": "Umbrella Corp", "segment": "startup", "industry": "education", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "John White", "email": "sarah.harris@fake.tech", "phone": "+1-709-205-4253"}, {"type": "technical", "name": "James Jones", "email": "john.martinez@fake.tech", "phone": "+1-934-282-5071"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-13", "renewalDate": "2022-06-13", "amount": 13330.95, "currency": "USD", "services": [{"id": "svc-561", "name": "Security", "quantity": 9583, "unit": "GB", "unitPrice": 465.57}, {"id": "svc-602", "name": "Consulting", "quantity": 8, "unit": "unit", "unitPrice": 1934.64}]}}, {"id": "rec-00228", "createdAt": "2024-01-08T21:43:13Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66803784", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 1978, "contacts": [{"type": "primary", "name": "Susan Jackson", "email": "joseph.brown@example.com", "phone": "+1-206-655-8776"}, {"type": "technical", "name": "James Robinson", "email": "william.robinson@test.org", "phone": "+1-654-329-9371"}]}, "subscription": {"plan": "professional", "startDate": "2024-01-12", "renewalDate": "2027-01-12", "amount": 45694.23, "currency": "USD", "services": [{"id": "svc-840", "name": "Analytics", "quantity": 835, "unit": "user", "unitPrice": 112.48}, {"id": "svc-218", "name": "Support Plan", "quantity": 64, "unit": "package", "unitPrice": 116.29}]}}, {"id": "rec-00229", "createdAt": "2023-08-12T15:55:18Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-51839983", "name": "Umbrella Corp", "segment": "small-business", "industry": "technology", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Susan Robinson", "email": "robert.smith@sample.io", "phone": "+1-830-797-2945"}, {"type": "technical", "name": "Sarah Davis", "email": "jennifer.martinez@mock.co", "phone": "+1-562-884-1099"}]}, "subscription": {"plan": "custom", "startDate": "2022-12-25", "renewalDate": "2023-12-25", "amount": 21571.12, "currency": "GBP", "services": [{"id": "svc-580", "name": "Cloud Storage", "quantity": 5272, "unit": "user", "unitPrice": 350.88}, {"id": "svc-732", "name": "Training", "quantity": 9, "unit": "hour", "unitPrice": 1797.04}]}}, {"id": "rec-00230", "createdAt": "2022-04-11T09:06:38Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-93341935", "name": "Acme Corp", "segment": "enterprise", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Patricia Thompson", "email": "susan.harris@fake.tech", "phone": "+1-344-612-9732"}, {"type": "technical", "name": "Thomas Garcia", "email": "joseph.martin@demo.net", "phone": "+1-772-865-2935"}]}, "subscription": {"plan": "professional", "startDate": "2023-08-17", "renewalDate": "2024-08-17", "amount": 31798.52, "currency": "EUR", "services": [{"id": "svc-626", "name": "Cloud Storage", "quantity": 4357, "unit": "user", "unitPrice": 284.17}, {"id": "svc-725", "name": "Consulting", "quantity": 80, "unit": "subscription", "unitPrice": 315.94}]}}, {"id": "rec-00231", "createdAt": "2020-11-12T19:01:28Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-85367501", "name": "Acme Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "nancy.martin@mock.co", "phone": "+1-454-654-8257"}, {"type": "technical", "name": "William Johnson", "email": "patricia.garcia@mock.co", "phone": "+1-567-547-5420"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-01", "renewalDate": "2023-03-01", "amount": 39954.71, "currency": "GBP", "services": [{"id": "svc-125", "name": "Database", "quantity": 680, "unit": "TB", "unitPrice": 100.65}, {"id": "svc-336", "name": "Maintenance", "quantity": 54, "unit": "unit", "unitPrice": 677.2}]}}, {"id": "rec-00232", "createdAt": "2021-05-16T10:25:32Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-86825857", "name": "Umbrella Corp", "segment": "startup", "industry": "finance", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "David Williams", "email": "jennifer.thomas@demo.net", "phone": "+1-484-161-1357"}, {"type": "technical", "name": "Karen Brown", "email": "david.thompson@mock.co", "phone": "+1-482-218-8814"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-18", "renewalDate": "2021-04-18", "amount": 35914.95, "currency": "GBP", "services": [{"id": "svc-278", "name": "Cloud Storage", "quantity": 2886, "unit": "GB", "unitPrice": 335.17}, {"id": "svc-315", "name": "Training", "quantity": 82, "unit": "package", "unitPrice": 1533.67}]}}, {"id": "rec-00233", "createdAt": "2021-04-27T01:28:57Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-14172153", "name": "Stark Industries", "segment": "enterprise", "industry": "finance", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Karen Jones", "email": "robert.martin@fake.tech", "phone": "+1-659-952-3770"}, {"type": "technical", "name": "Joseph Harris", "email": "thomas.williams@fake.tech", "phone": "+1-686-177-3954"}]}, "subscription": {"plan": "free", "startDate": "2020-01-23", "renewalDate": "2023-01-23", "amount": 19996.95, "currency": "GBP", "services": [{"id": "svc-775", "name": "Database", "quantity": 4913, "unit": "TB", "unitPrice": 212.98}, {"id": "svc-951", "name": "Support Plan", "quantity": 3, "unit": "subscription", "unitPrice": 827.88}]}}, {"id": "rec-00234", "createdAt": "2023-04-10T15:44:43Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-61400187", "name": "Massive Dynamic", "segment": "startup", "industry": "finance", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "David Anderson", "email": "joseph.anderson@mock.co", "phone": "+1-879-773-4360"}, {"type": "technical", "name": "James Taylor", "email": "robert.taylor@sample.io", "phone": "+1-736-173-2300"}]}, "subscription": {"plan": "free", "startDate": "2022-03-05", "renewalDate": "2023-03-05", "amount": 12954.86, "currency": "CAD", "services": [{"id": "svc-720", "name": "Analytics", "quantity": 7816, "unit": "instance", "unitPrice": 188.35}, {"id": "svc-357", "name": "Consulting", "quantity": 45, "unit": "package", "unitPrice": 937.02}]}}, {"id": "rec-00235", "createdAt": "2021-09-19T23:31:43Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-47553523", "name": "Cyberdyne Systems", "segment": "small-business", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Joseph Smith", "email": "michael.robinson@sample.io", "phone": "+1-333-816-5136"}, {"type": "technical", "name": "Jennifer Davis", "email": "susan.white@demo.net", "phone": "+1-850-648-8375"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-04", "renewalDate": "2025-11-04", "amount": 5205.85, "currency": "EUR", "services": [{"id": "svc-208", "name": "Analytics", "quantity": 3624, "unit": "instance", "unitPrice": 168.71}, {"id": "svc-333", "name": "Support Plan", "quantity": 66, "unit": "hour", "unitPrice": 1515.58}]}}, {"id": "rec-00236", "createdAt": "2022-12-12T06:24:08Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-74555336", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "technology", "yearFounded": 2021, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "susan.smith@demo.net", "phone": "+1-631-962-5887"}, {"type": "technical", "name": "Jessica Smith", "email": "sarah.davis@mock.co", "phone": "+1-993-497-4973"}]}, "subscription": {"plan": "custom", "startDate": "2023-06-11", "renewalDate": "2024-06-11", "amount": 39791.41, "currency": "USD", "services": [{"id": "svc-886", "name": "Security", "quantity": 5257, "unit": "instance", "unitPrice": 35.05}, {"id": "svc-307", "name": "Implementation", "quantity": 28, "unit": "subscription", "unitPrice": 141.61}]}}, {"id": "rec-00237", "createdAt": "2020-10-09T21:25:57Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65149697", "name": "LexCorp", "segment": "mid-market", "industry": "finance", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Jennifer Johnson", "email": "mary.thomas@fake.tech", "phone": "+1-764-604-1555"}, {"type": "technical", "name": "Susan Johnson", "email": "elizabeth.jackson@sample.io", "phone": "+1-925-838-4931"}]}, "subscription": {"plan": "basic", "startDate": "2021-12-27", "renewalDate": "2024-12-27", "amount": 18830.82, "currency": "CAD", "services": [{"id": "svc-118", "name": "Compute Instances", "quantity": 4047, "unit": "license", "unitPrice": 190.48}, {"id": "svc-548", "name": "Training", "quantity": 68, "unit": "hour", "unitPrice": 1763.9}]}}, {"id": "rec-00238", "createdAt": "2024-03-22T11:46:11Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-71307873", "name": "Virtucon", "segment": "startup", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Mary Williams", "email": "robert.williams@mock.co", "phone": "+1-436-311-4608"}, {"type": "technical", "name": "David Davis", "email": "linda.thompson@test.org", "phone": "+1-339-278-1550"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-11", "renewalDate": "2022-08-11", "amount": 1237.65, "currency": "USD", "services": [{"id": "svc-695", "name": "Cloud Storage", "quantity": 1434, "unit": "user", "unitPrice": 433.56}, {"id": "svc-825", "name": "Support Plan", "quantity": 41, "unit": "unit", "unitPrice": 1211.31}]}}, {"id": "rec-00239", "createdAt": "2022-09-22T08:01:33Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45437665", "name": "Aperture Science", "segment": "mid-market", "industry": "finance", "yearFounded": 1956, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "jessica.white@sample.io", "phone": "+1-876-785-8471"}, {"type": "technical", "name": "James Jones", "email": "linda.thomas@mock.co", "phone": "+1-501-211-3565"}]}, "subscription": {"plan": "free", "startDate": "2020-06-11", "renewalDate": "2022-06-11", "amount": 23153.37, "currency": "AUD", "services": [{"id": "svc-895", "name": "Compute Instances", "quantity": 4809, "unit": "TB", "unitPrice": 496.72}, {"id": "svc-116", "name": "Maintenance", "quantity": 5, "unit": "session", "unitPrice": 413.64}]}}, {"id": "rec-00240", "createdAt": "2025-12-18T04:55:21Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "us-east-1", "tags": ["trial", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-45506727", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Michael Miller", "email": "charles.harris@example.com", "phone": "+1-774-654-1161"}, {"type": "technical", "name": "Elizabeth Robinson", "email": "james.wilson@example.com", "phone": "+1-521-667-6631"}]}, "subscription": {"plan": "basic", "startDate": "2022-05-19", "renewalDate": "2023-05-19", "amount": 25091.48, "currency": "GBP", "services": [{"id": "svc-852", "name": "Cloud Storage", "quantity": 1963, "unit": "TB", "unitPrice": 87.99}, {"id": "svc-419", "name": "Training", "quantity": 88, "unit": "subscription", "unitPrice": 1167.0}]}}, {"id": "rec-00241", "createdAt": "2024-06-14T23:21:05Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54666364", "name": "Stark Industries", "segment": "small-business", "industry": "education", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Joseph Garcia", "email": "joseph.jones@test.org", "phone": "+1-739-880-9960"}, {"type": "technical", "name": "Charles Thompson", "email": "patricia.white@fake.tech", "phone": "+1-587-647-4574"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-14", "renewalDate": "2022-08-14", "amount": 35272.68, "currency": "GBP", "services": [{"id": "svc-742", "name": "Security", "quantity": 3278, "unit": "user", "unitPrice": 255.01}, {"id": "svc-403", "name": "Training", "quantity": 33, "unit": "session", "unitPrice": 580.57}]}}, {"id": "rec-00242", "createdAt": "2022-05-11T14:54:44Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-66898106", "name": "Oscorp", "segment": "small-business", "industry": "technology", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "John Williams", "email": "david.anderson@demo.net", "phone": "+1-803-319-8906"}, {"type": "technical", "name": "Michael Brown", "email": "elizabeth.martinez@example.com", "phone": "+1-632-646-2488"}]}, "subscription": {"plan": "basic", "startDate": "2023-04-17", "renewalDate": "2026-04-17", "amount": 30743.54, "currency": "GBP", "services": [{"id": "svc-437", "name": "Cloud Storage", "quantity": 8813, "unit": "license", "unitPrice": 286.99}, {"id": "svc-536", "name": "Maintenance", "quantity": 99, "unit": "unit", "unitPrice": 1034.02}]}}, {"id": "rec-00243", "createdAt": "2025-04-23T02:03:24Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["trial", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-19409690", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Richard Thompson", "email": "david.anderson@demo.net", "phone": "+1-800-318-4058"}, {"type": "technical", "name": "Joseph Jackson", "email": "michael.martin@example.com", "phone": "+1-640-616-7395"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-03", "renewalDate": "2025-12-03", "amount": 25300.41, "currency": "GBP", "services": [{"id": "svc-603", "name": "Cloud Storage", "quantity": 2021, "unit": "GB", "unitPrice": 92.98}, {"id": "svc-353", "name": "Consulting", "quantity": 73, "unit": "subscription", "unitPrice": 1546.97}]}}, {"id": "rec-00244", "createdAt": "2024-06-12T10:38:16Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20978002", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "healthcare", "yearFounded": 2014, "contacts": [{"type": "primary", "name": "Charles Moore", "email": "mary.thompson@example.com", "phone": "+1-401-134-6398"}, {"type": "technical", "name": "William Martin", "email": "jennifer.davis@demo.net", "phone": "+1-524-789-4110"}]}, "subscription": {"plan": "free", "startDate": "2024-10-15", "renewalDate": "2026-10-15", "amount": 17702.06, "currency": "GBP", "services": [{"id": "svc-601", "name": "Cloud Storage", "quantity": 74, "unit": "instance", "unitPrice": 444.64}, {"id": "svc-613", "name": "Maintenance", "quantity": 80, "unit": "unit", "unitPrice": 198.27}]}}, {"id": "rec-00245", "createdAt": "2022-11-17T15:57:22Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35799134", "name": "Massive Dynamic", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "sarah.martinez@demo.net", "phone": "+1-609-565-5926"}, {"type": "technical", "name": "Nancy Brown", "email": "james.wilson@fake.tech", "phone": "+1-561-754-1203"}]}, "subscription": {"plan": "basic", "startDate": "2022-12-26", "renewalDate": "2025-12-26", "amount": 13855.9, "currency": "GBP", "services": [{"id": "svc-809", "name": "Cloud Storage", "quantity": 7990, "unit": "TB", "unitPrice": 31.27}, {"id": "svc-884", "name": "Consulting", "quantity": 76, "unit": "subscription", "unitPrice": 46.05}]}}, {"id": "rec-00246", "createdAt": "2021-08-11T00:23:40Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-48815817", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Elizabeth Taylor", "email": "karen.smith@example.com", "phone": "+1-833-294-4465"}, {"type": "technical", "name": "Susan Robinson", "email": "susan.harris@example.com", "phone": "+1-874-979-4695"}]}, "subscription": {"plan": "professional", "startDate": "2023-02-01", "renewalDate": "2025-02-01", "amount": 286.8, "currency": "AUD", "services": [{"id": "svc-955", "name": "Compute Instances", "quantity": 3364, "unit": "GB", "unitPrice": 157.94}, {"id": "svc-153", "name": "Consulting", "quantity": 17, "unit": "subscription", "unitPrice": 1941.93}]}}, {"id": "rec-00247", "createdAt": "2020-11-17T22:27:34Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-60310282", "name": "Soylent Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "karen.smith@sample.io", "phone": "+1-298-510-6735"}, {"type": "technical", "name": "William White", "email": "thomas.martin@sample.io", "phone": "+1-659-548-1947"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-07", "renewalDate": "2026-04-07", "amount": 28204.71, "currency": "AUD", "services": [{"id": "svc-790", "name": "Analytics", "quantity": 9737, "unit": "license", "unitPrice": 67.1}, {"id": "svc-875", "name": "Implementation", "quantity": 87, "unit": "subscription", "unitPrice": 56.15}]}}, {"id": "rec-00248", "createdAt": "2020-04-10T15:08:05Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-14268766", "name": "Aperture Science", "segment": "startup", "industry": "manufacturing", "yearFounded": 1955, "contacts": [{"type": "primary", "name": "Joseph Smith", "email": "patricia.thompson@test.org", "phone": "+1-707-650-4496"}, {"type": "technical", "name": "Richard Martin", "email": "michael.martinez@demo.net", "phone": "+1-290-959-9712"}]}, "subscription": {"plan": "basic", "startDate": "2023-03-06", "renewalDate": "2026-03-06", "amount": 34079.93, "currency": "AUD", "services": [{"id": "svc-934", "name": "Cloud Storage", "quantity": 8771, "unit": "license", "unitPrice": 38.05}, {"id": "svc-985", "name": "Consulting", "quantity": 70, "unit": "unit", "unitPrice": 927.68}]}}, {"id": "rec-00249", "createdAt": "2021-05-13T17:47:31Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-84800473", "name": "Umbrella Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Joseph Moore", "email": "patricia.johnson@test.org", "phone": "+1-781-755-9205"}, {"type": "technical", "name": "Richard Harris", "email": "patricia.harris@example.com", "phone": "+1-408-859-5438"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-12-14", "renewalDate": "2026-12-14", "amount": 15525.13, "currency": "EUR", "services": [{"id": "svc-797", "name": "Database", "quantity": 7562, "unit": "license", "unitPrice": 362.27}, {"id": "svc-617", "name": "Support Plan", "quantity": 70, "unit": "session", "unitPrice": 811.84}]}}, {"id": "rec-00250", "createdAt": "2022-07-03T16:17:58Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-59422853", "name": "LexCorp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Michael Harris", "email": "nancy.white@mock.co", "phone": "+1-807-718-2265"}, {"type": "technical", "name": "Michael Wilson", "email": "jessica.garcia@fake.tech", "phone": "+1-957-413-9120"}]}, "subscription": {"plan": "basic", "startDate": "2021-08-12", "renewalDate": "2024-08-12", "amount": 26271.12, "currency": "USD", "services": [{"id": "svc-967", "name": "Cloud Storage", "quantity": 716, "unit": "instance", "unitPrice": 254.14}, {"id": "svc-793", "name": "Maintenance", "quantity": 22, "unit": "package", "unitPrice": 1704.03}]}}, {"id": "rec-00251", "createdAt": "2022-03-17T09:23:44Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-99442552", "name": "LexCorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Robert Robinson", "email": "sarah.williams@sample.io", "phone": "+1-754-195-9431"}, {"type": "technical", "name": "Charles Harris", "email": "john.taylor@sample.io", "phone": "+1-528-225-3352"}]}, "subscription": {"plan": "free", "startDate": "2024-10-24", "renewalDate": "2026-10-24", "amount": 5518.72, "currency": "GBP", "services": [{"id": "svc-898", "name": "Security", "quantity": 1916, "unit": "TB", "unitPrice": 17.05}, {"id": "svc-775", "name": "Training", "quantity": 38, "unit": "session", "unitPrice": 1080.16}]}}, {"id": "rec-00252", "createdAt": "2025-07-09T20:49:49Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-37945866", "name": "Virtucon", "segment": "startup", "industry": "finance", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Michael White", "email": "david.garcia@sample.io", "phone": "+1-626-246-4365"}, {"type": "technical", "name": "Nancy Garcia", "email": "michael.moore@mock.co", "phone": "+1-878-613-3289"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-09", "renewalDate": "2025-07-09", "amount": 29090.49, "currency": "CAD", "services": [{"id": "svc-992", "name": "Cloud Storage", "quantity": 7202, "unit": "GB", "unitPrice": 76.67}, {"id": "svc-765", "name": "Maintenance", "quantity": 100, "unit": "hour", "unitPrice": 1802.76}]}}, {"id": "rec-00253", "createdAt": "2020-03-06T20:13:28Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-20353040", "name": "Globex", "segment": "startup", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Nancy Jones", "email": "john.miller@mock.co", "phone": "+1-945-220-6877"}, {"type": "technical", "name": "Joseph Martinez", "email": "jessica.robinson@demo.net", "phone": "+1-249-838-5967"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-24", "renewalDate": "2024-03-24", "amount": 12453.95, "currency": "AUD", "services": [{"id": "svc-318", "name": "Analytics", "quantity": 9898, "unit": "instance", "unitPrice": 357.23}, {"id": "svc-614", "name": "Support Plan", "quantity": 18, "unit": "package", "unitPrice": 278.19}]}}, {"id": "rec-00254", "createdAt": "2022-03-18T04:31:33Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-46359551", "name": "Soylent Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Joseph Brown", "email": "william.martin@demo.net", "phone": "+1-422-839-6113"}, {"type": "technical", "name": "Sarah Davis", "email": "john.white@example.com", "phone": "+1-889-314-5546"}]}, "subscription": {"plan": "custom", "startDate": "2021-07-27", "renewalDate": "2022-07-27", "amount": 39908.18, "currency": "EUR", "services": [{"id": "svc-242", "name": "Compute Instances", "quantity": 2843, "unit": "TB", "unitPrice": 86.24}, {"id": "svc-198", "name": "Training", "quantity": 21, "unit": "session", "unitPrice": 781.74}]}}, {"id": "rec-00255", "createdAt": "2020-02-20T12:35:48Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-12619444", "name": "Soylent Corp", "segment": "startup", "industry": "technology", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "james.harris@demo.net", "phone": "+1-404-506-1600"}, {"type": "technical", "name": "Richard Moore", "email": "richard.davis@sample.io", "phone": "+1-994-330-8623"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-03-22", "renewalDate": "2024-03-22", "amount": 7860.64, "currency": "AUD", "services": [{"id": "svc-906", "name": "Analytics", "quantity": 6097, "unit": "license", "unitPrice": 114.55}, {"id": "svc-559", "name": "Maintenance", "quantity": 71, "unit": "package", "unitPrice": 1594.71}]}}, {"id": "rec-00256", "createdAt": "2023-08-12T10:22:09Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-44201508", "name": "Aperture Science", "segment": "small-business", "industry": "technology", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Richard Garcia", "email": "james.davis@fake.tech", "phone": "+1-532-221-2059"}, {"type": "technical", "name": "Susan Taylor", "email": "john.brown@test.org", "phone": "+1-314-802-6779"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-10-07", "renewalDate": "2021-10-07", "amount": 5238.33, "currency": "CAD", "services": [{"id": "svc-121", "name": "Security", "quantity": 9795, "unit": "GB", "unitPrice": 132.81}, {"id": "svc-527", "name": "Consulting", "quantity": 15, "unit": "subscription", "unitPrice": 1692.68}]}}, {"id": "rec-00257", "createdAt": "2020-02-06T12:51:16Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-25792656", "name": "Globex", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Thomas Thompson", "email": "jennifer.jackson@demo.net", "phone": "+1-633-129-6571"}, {"type": "technical", "name": "Richard Brown", "email": "joseph.martin@fake.tech", "phone": "+1-836-613-3350"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-03-21", "renewalDate": "2021-03-21", "amount": 29025.75, "currency": "USD", "services": [{"id": "svc-434", "name": "Security", "quantity": 811, "unit": "GB", "unitPrice": 423.37}, {"id": "svc-625", "name": "Implementation", "quantity": 25, "unit": "subscription", "unitPrice": 1747.99}]}}, {"id": "rec-00258", "createdAt": "2025-06-03T12:24:25Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-73015538", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "finance", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "James Davis", "email": "jessica.wilson@sample.io", "phone": "+1-999-789-2333"}, {"type": "technical", "name": "Susan Smith", "email": "robert.smith@test.org", "phone": "+1-651-951-1611"}]}, "subscription": {"plan": "basic", "startDate": "2024-05-23", "renewalDate": "2025-05-23", "amount": 4533.27, "currency": "GBP", "services": [{"id": "svc-283", "name": "Database", "quantity": 8317, "unit": "license", "unitPrice": 143.85}, {"id": "svc-131", "name": "Consulting", "quantity": 28, "unit": "package", "unitPrice": 883.61}]}}, {"id": "rec-00259", "createdAt": "2021-10-15T07:48:37Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-95931794", "name": "Acme Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Sarah Anderson", "email": "linda.martin@example.com", "phone": "+1-249-144-4084"}, {"type": "technical", "name": "Elizabeth White", "email": "robert.martin@fake.tech", "phone": "+1-944-629-5697"}]}, "subscription": {"plan": "basic", "startDate": "2021-07-24", "renewalDate": "2022-07-24", "amount": 8178.64, "currency": "GBP", "services": [{"id": "svc-184", "name": "Analytics", "quantity": 3126, "unit": "TB", "unitPrice": 396.49}, {"id": "svc-518", "name": "Maintenance", "quantity": 66, "unit": "session", "unitPrice": 1401.68}]}}, {"id": "rec-00260", "createdAt": "2020-09-11T03:19:59Z", "type": "partner", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17546077", "name": "Initech", "segment": "mid-market", "industry": "finance", "yearFounded": 1982, "contacts": [{"type": "primary", "name": "Patricia White", "email": "james.thomas@demo.net", "phone": "+1-333-255-3743"}, {"type": "technical", "name": "Jennifer White", "email": "david.jackson@mock.co", "phone": "+1-988-100-5183"}]}, "subscription": {"plan": "free", "startDate": "2020-10-04", "renewalDate": "2023-10-04", "amount": 39658.24, "currency": "EUR", "services": [{"id": "svc-316", "name": "Cloud Storage", "quantity": 9867, "unit": "TB", "unitPrice": 47.06}, {"id": "svc-501", "name": "Support Plan", "quantity": 50, "unit": "unit", "unitPrice": 1340.48}]}}, {"id": "rec-00261", "createdAt": "2023-07-04T08:55:52Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-92182275", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Thomas Thompson", "email": "joseph.garcia@test.org", "phone": "+1-334-581-1692"}, {"type": "technical", "name": "John Robinson", "email": "michael.harris@mock.co", "phone": "+1-436-590-7711"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-07-06", "renewalDate": "2025-07-06", "amount": 49207.83, "currency": "AUD", "services": [{"id": "svc-637", "name": "Compute Instances", "quantity": 2098, "unit": "GB", "unitPrice": 200.93}, {"id": "svc-298", "name": "Consulting", "quantity": 14, "unit": "package", "unitPrice": 637.29}]}}, {"id": "rec-00262", "createdAt": "2024-03-02T14:26:55Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52233596", "name": "Wayne Enterprises", "segment": "startup", "industry": "manufacturing", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Karen Martinez", "email": "joseph.anderson@sample.io", "phone": "+1-822-343-5031"}, {"type": "technical", "name": "William Miller", "email": "linda.jackson@test.org", "phone": "+1-488-480-4140"}]}, "subscription": {"plan": "professional", "startDate": "2023-12-17", "renewalDate": "2025-12-17", "amount": 38390.68, "currency": "AUD", "services": [{"id": "svc-286", "name": "Analytics", "quantity": 1596, "unit": "instance", "unitPrice": 349.3}, {"id": "svc-837", "name": "Support Plan", "quantity": 3, "unit": "session", "unitPrice": 1241.44}]}}, {"id": "rec-00263", "createdAt": "2020-09-02T15:55:51Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-58478850", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "education", "yearFounded": 2003, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "robert.anderson@mock.co", "phone": "+1-350-754-3965"}, {"type": "technical", "name": "Richard Smith", "email": "robert.harris@example.com", "phone": "+1-980-545-8052"}]}, "subscription": {"plan": "basic", "startDate": "2020-01-14", "renewalDate": "2022-01-14", "amount": 20922.56, "currency": "USD", "services": [{"id": "svc-460", "name": "Database", "quantity": 4666, "unit": "instance", "unitPrice": 325.27}, {"id": "svc-753", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 1795.18}]}}, {"id": "rec-00264", "createdAt": "2022-06-06T16:11:24Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-85785605", "name": "Oscorp", "segment": "enterprise", "industry": "technology", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "Charles Williams", "email": "jessica.moore@fake.tech", "phone": "+1-284-250-6095"}, {"type": "technical", "name": "Charles Martin", "email": "jennifer.moore@fake.tech", "phone": "+1-401-860-8280"}]}, "subscription": {"plan": "free", "startDate": "2024-11-17", "renewalDate": "2027-11-17", "amount": 22723.15, "currency": "GBP", "services": [{"id": "svc-644", "name": "Compute Instances", "quantity": 4043, "unit": "TB", "unitPrice": 32.29}, {"id": "svc-930", "name": "Implementation", "quantity": 63, "unit": "package", "unitPrice": 1553.47}]}}, {"id": "rec-00265", "createdAt": "2020-11-10T04:26:36Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-29126405", "name": "Globex", "segment": "startup", "industry": "technology", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Linda Garcia", "email": "william.anderson@demo.net", "phone": "+1-767-686-8283"}, {"type": "technical", "name": "Thomas Jones", "email": "elizabeth.miller@mock.co", "phone": "+1-361-523-3563"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-09", "renewalDate": "2023-07-09", "amount": 34701.39, "currency": "EUR", "services": [{"id": "svc-197", "name": "Cloud Storage", "quantity": 1136, "unit": "user", "unitPrice": 324.55}, {"id": "svc-693", "name": "Implementation", "quantity": 94, "unit": "unit", "unitPrice": 1845.39}]}}, {"id": "rec-00266", "createdAt": "2020-05-03T21:22:19Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82109695", "name": "Oscorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1996, "contacts": [{"type": "primary", "name": "Linda Smith", "email": "joseph.white@mock.co", "phone": "+1-860-607-4985"}, {"type": "technical", "name": "David Moore", "email": "james.johnson@mock.co", "phone": "+1-375-900-4451"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-06-09", "renewalDate": "2026-06-09", "amount": 43636.51, "currency": "AUD", "services": [{"id": "svc-697", "name": "Security", "quantity": 3006, "unit": "license", "unitPrice": 430.67}, {"id": "svc-161", "name": "Maintenance", "quantity": 90, "unit": "session", "unitPrice": 1702.08}]}}, {"id": "rec-00267", "createdAt": "2023-11-13T00:18:51Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-44625222", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "retail", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Richard Harris", "email": "richard.robinson@demo.net", "phone": "+1-392-134-6323"}, {"type": "technical", "name": "Karen Martinez", "email": "karen.smith@example.com", "phone": "+1-225-909-5777"}]}, "subscription": {"plan": "professional", "startDate": "2022-08-14", "renewalDate": "2024-08-14", "amount": 18608.92, "currency": "CAD", "services": [{"id": "svc-851", "name": "Security", "quantity": 885, "unit": "instance", "unitPrice": 397.41}, {"id": "svc-976", "name": "Training", "quantity": 10, "unit": "session", "unitPrice": 1729.76}]}}, {"id": "rec-00268", "createdAt": "2022-01-07T04:15:14Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-22564782", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 2002, "contacts": [{"type": "primary", "name": "Elizabeth Jones", "email": "patricia.jackson@mock.co", "phone": "+1-676-582-3467"}, {"type": "technical", "name": "John Brown", "email": "john.thomas@example.com", "phone": "+1-254-261-7073"}]}, "subscription": {"plan": "free", "startDate": "2023-08-01", "renewalDate": "2025-08-01", "amount": 1604.8, "currency": "GBP", "services": [{"id": "svc-709", "name": "Database", "quantity": 4018, "unit": "user", "unitPrice": 365.97}, {"id": "svc-650", "name": "Support Plan", "quantity": 92, "unit": "package", "unitPrice": 81.35}]}}, {"id": "rec-00269", "createdAt": "2025-11-17T16:14:03Z", "type": "prospect", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-26859447", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2020, "contacts": [{"type": "primary", "name": "Jessica Jackson", "email": "william.harris@mock.co", "phone": "+1-572-256-9379"}, {"type": "technical", "name": "Robert White", "email": "linda.garcia@sample.io", "phone": "+1-523-809-8305"}]}, "subscription": {"plan": "professional", "startDate": "2020-11-22", "renewalDate": "2022-11-22", "amount": 48817.55, "currency": "CAD", "services": [{"id": "svc-458", "name": "Security", "quantity": 3455, "unit": "TB", "unitPrice": 259.82}, {"id": "svc-483", "name": "Training", "quantity": 12, "unit": "package", "unitPrice": 1218.88}]}}, {"id": "rec-00270", "createdAt": "2020-08-08T02:08:18Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-43617101", "name": "Weyland-Yutani", "segment": "small-business", "industry": "education", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jennifer Williams", "email": "richard.williams@example.com", "phone": "+1-218-566-8384"}, {"type": "technical", "name": "John White", "email": "elizabeth.wilson@mock.co", "phone": "+1-965-221-2386"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-05-03", "renewalDate": "2025-05-03", "amount": 14328.58, "currency": "CAD", "services": [{"id": "svc-544", "name": "Analytics", "quantity": 2957, "unit": "instance", "unitPrice": 125.94}, {"id": "svc-559", "name": "Support Plan", "quantity": 46, "unit": "unit", "unitPrice": 1211.33}]}}, {"id": "rec-00271", "createdAt": "2021-10-19T09:57:53Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-42341388", "name": "Virtucon", "segment": "small-business", "industry": "healthcare", "yearFounded": 1964, "contacts": [{"type": "primary", "name": "Sarah Williams", "email": "jessica.jackson@fake.tech", "phone": "+1-966-672-7298"}, {"type": "technical", "name": "John White", "email": "patricia.thompson@sample.io", "phone": "+1-871-453-3756"}]}, "subscription": {"plan": "custom", "startDate": "2023-02-24", "renewalDate": "2025-02-24", "amount": 6985.99, "currency": "AUD", "services": [{"id": "svc-840", "name": "Security", "quantity": 447, "unit": "license", "unitPrice": 401.65}, {"id": "svc-354", "name": "Implementation", "quantity": 37, "unit": "package", "unitPrice": 404.85}]}}, {"id": "rec-00272", "createdAt": "2024-07-07T21:32:35Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-84784989", "name": "Cyberdyne Systems", "segment": "startup", "industry": "manufacturing", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Sarah Jones", "email": "william.martin@mock.co", "phone": "+1-464-798-4757"}, {"type": "technical", "name": "Susan Brown", "email": "michael.anderson@sample.io", "phone": "+1-341-622-8912"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-09-21", "renewalDate": "2026-09-21", "amount": 38409.14, "currency": "AUD", "services": [{"id": "svc-653", "name": "Analytics", "quantity": 4152, "unit": "instance", "unitPrice": 490.28}, {"id": "svc-116", "name": "Maintenance", "quantity": 78, "unit": "subscription", "unitPrice": 570.19}]}}, {"id": "rec-00273", "createdAt": "2021-10-04T17:46:58Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-73537924", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "karen.garcia@test.org", "phone": "+1-264-494-8617"}, {"type": "technical", "name": "Susan Robinson", "email": "david.garcia@sample.io", "phone": "+1-385-507-2949"}]}, "subscription": {"plan": "free", "startDate": "2021-09-13", "renewalDate": "2023-09-13", "amount": 42336.43, "currency": "USD", "services": [{"id": "svc-763", "name": "Analytics", "quantity": 59, "unit": "instance", "unitPrice": 23.78}, {"id": "svc-895", "name": "Training", "quantity": 3, "unit": "subscription", "unitPrice": 1470.56}]}}, {"id": "rec-00274", "createdAt": "2023-02-09T01:45:26Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["trial", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-51660754", "name": "Globex", "segment": "small-business", "industry": "finance", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "richard.wilson@mock.co", "phone": "+1-882-829-7917"}, {"type": "technical", "name": "Nancy Robinson", "email": "joseph.anderson@sample.io", "phone": "+1-389-892-2118"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-08-09", "renewalDate": "2026-08-09", "amount": 7698.94, "currency": "AUD", "services": [{"id": "svc-994", "name": "Compute Instances", "quantity": 4871, "unit": "instance", "unitPrice": 177.68}, {"id": "svc-365", "name": "Training", "quantity": 7, "unit": "subscription", "unitPrice": 71.0}]}}, {"id": "rec-00275", "createdAt": "2024-04-24T02:17:32Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-39966380", "name": "Soylent Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Nancy White", "email": "richard.martin@fake.tech", "phone": "+1-860-652-5759"}, {"type": "technical", "name": "William Robinson", "email": "karen.white@fake.tech", "phone": "+1-444-987-9271"}]}, "subscription": {"plan": "free", "startDate": "2023-10-11", "renewalDate": "2024-10-11", "amount": 22017.38, "currency": "EUR", "services": [{"id": "svc-715", "name": "Analytics", "quantity": 7914, "unit": "instance", "unitPrice": 321.46}, {"id": "svc-928", "name": "Maintenance", "quantity": 11, "unit": "hour", "unitPrice": 1570.13}]}}, {"id": "rec-00276", "createdAt": "2025-10-26T05:34:16Z", "type": "lead", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-68996748", "name": "Acme Corp", "segment": "small-business", "industry": "finance", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Karen Martin", "email": "karen.garcia@demo.net", "phone": "+1-371-138-7314"}, {"type": "technical", "name": "Robert Robinson", "email": "karen.taylor@mock.co", "phone": "+1-761-864-6882"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-04", "renewalDate": "2026-05-04", "amount": 12087.45, "currency": "GBP", "services": [{"id": "svc-301", "name": "Database", "quantity": 6071, "unit": "TB", "unitPrice": 401.84}, {"id": "svc-287", "name": "Support Plan", "quantity": 60, "unit": "hour", "unitPrice": 1810.78}]}}, {"id": "rec-00277", "createdAt": "2021-02-09T00:03:55Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-98989986", "name": "Virtucon", "segment": "small-business", "industry": "finance", "yearFounded": 1962, "contacts": [{"type": "primary", "name": "Joseph Davis", "email": "sarah.martinez@fake.tech", "phone": "+1-666-435-8103"}, {"type": "technical", "name": "Susan Robinson", "email": "james.johnson@example.com", "phone": "+1-928-717-2911"}]}, "subscription": {"plan": "free", "startDate": "2020-09-05", "renewalDate": "2021-09-05", "amount": 29977.82, "currency": "AUD", "services": [{"id": "svc-106", "name": "Security", "quantity": 2814, "unit": "user", "unitPrice": 101.09}, {"id": "svc-921", "name": "Maintenance", "quantity": 52, "unit": "subscription", "unitPrice": 77.11}]}}, {"id": "rec-00278", "createdAt": "2020-05-04T00:41:28Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "us-east-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-79793622", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 1995, "contacts": [{"type": "primary", "name": "Patricia Harris", "email": "richard.garcia@sample.io", "phone": "+1-609-295-4469"}, {"type": "technical", "name": "Michael Davis", "email": "william.taylor@sample.io", "phone": "+1-609-578-4139"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-09", "renewalDate": "2027-05-09", "amount": 33990.81, "currency": "USD", "services": [{"id": "svc-341", "name": "Compute Instances", "quantity": 956, "unit": "user", "unitPrice": 79.53}, {"id": "svc-830", "name": "Implementation", "quantity": 2, "unit": "subscription", "unitPrice": 1456.05}]}}, {"id": "rec-00279", "createdAt": "2022-09-07T14:19:53Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-88812548", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Jessica Martinez", "email": "richard.martinez@mock.co", "phone": "+1-472-156-6792"}, {"type": "technical", "name": "James Thomas", "email": "michael.brown@example.com", "phone": "+1-654-150-6375"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-12-28", "renewalDate": "2026-12-28", "amount": 18913.44, "currency": "CAD", "services": [{"id": "svc-735", "name": "Cloud Storage", "quantity": 7796, "unit": "GB", "unitPrice": 341.23}, {"id": "svc-224", "name": "Training", "quantity": 62, "unit": "subscription", "unitPrice": 505.43}]}}, {"id": "rec-00280", "createdAt": "2022-01-19T03:51:22Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-11301734", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Charles Moore", "email": "susan.harris@mock.co", "phone": "+1-379-913-3006"}, {"type": "technical", "name": "Jessica Martinez", "email": "michael.jackson@test.org", "phone": "+1-827-597-9811"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-04-28", "renewalDate": "2024-04-28", "amount": 33256.45, "currency": "GBP", "services": [{"id": "svc-164", "name": "Database", "quantity": 6975, "unit": "user", "unitPrice": 128.53}, {"id": "svc-679", "name": "Implementation", "quantity": 81, "unit": "package", "unitPrice": 1212.03}]}}, {"id": "rec-00281", "createdAt": "2025-04-04T00:10:28Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-80779311", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "Elizabeth Garcia", "email": "nancy.white@mock.co", "phone": "+1-798-675-4877"}, {"type": "technical", "name": "Sarah Miller", "email": "richard.johnson@example.com", "phone": "+1-420-141-6517"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-08-19", "renewalDate": "2025-08-19", "amount": 27011.17, "currency": "AUD", "services": [{"id": "svc-849", "name": "Security", "quantity": 2781, "unit": "user", "unitPrice": 47.36}, {"id": "svc-113", "name": "Training", "quantity": 23, "unit": "hour", "unitPrice": 1087.97}]}}, {"id": "rec-00282", "createdAt": "2021-01-20T09:27:54Z", "type": "customer", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-52231549", "name": "Oscorp", "segment": "startup", "industry": "finance", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Patricia Wilson", "email": "james.miller@fake.tech", "phone": "+1-373-150-1318"}, {"type": "technical", "name": "Robert Thomas", "email": "sarah.harris@test.org", "phone": "+1-998-737-9036"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-16", "renewalDate": "2025-03-16", "amount": 44175.28, "currency": "EUR", "services": [{"id": "svc-832", "name": "Cloud Storage", "quantity": 4803, "unit": "GB", "unitPrice": 226.35}, {"id": "svc-789", "name": "Implementation", "quantity": 33, "unit": "session", "unitPrice": 1535.78}]}}, {"id": "rec-00283", "createdAt": "2024-04-27T01:08:14Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-65955735", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "retail", "yearFounded": 1966, "contacts": [{"type": "primary", "name": "Michael Martin", "email": "joseph.taylor@test.org", "phone": "+1-769-315-6621"}, {"type": "technical", "name": "Charles Brown", "email": "nancy.wilson@mock.co", "phone": "+1-695-665-9187"}]}, "subscription": {"plan": "basic", "startDate": "2020-08-18", "renewalDate": "2022-08-18", "amount": 48469.68, "currency": "AUD", "services": [{"id": "svc-626", "name": "Security", "quantity": 8120, "unit": "instance", "unitPrice": 202.97}, {"id": "svc-977", "name": "Implementation", "quantity": 90, "unit": "package", "unitPrice": 203.41}]}}, {"id": "rec-00284", "createdAt": "2025-11-20T12:00:34Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["vip", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-87734448", "name": "Initech", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Michael Martinez", "email": "james.garcia@fake.tech", "phone": "+1-702-532-9352"}, {"type": "technical", "name": "Joseph Moore", "email": "mary.robinson@sample.io", "phone": "+1-996-606-2477"}]}, "subscription": {"plan": "professional", "startDate": "2022-05-14", "renewalDate": "2025-05-14", "amount": 33007.19, "currency": "GBP", "services": [{"id": "svc-773", "name": "Analytics", "quantity": 1182, "unit": "instance", "unitPrice": 127.07}, {"id": "svc-660", "name": "Support Plan", "quantity": 25, "unit": "hour", "unitPrice": 1891.21}]}}, {"id": "rec-00285", "createdAt": "2022-06-27T03:29:52Z", "type": "lead", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-81065010", "name": "Massive Dynamic", "segment": "enterprise", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "David Johnson", "email": "william.martinez@example.com", "phone": "+1-575-425-8062"}, {"type": "technical", "name": "Mary Martinez", "email": "linda.davis@sample.io", "phone": "+1-937-529-1962"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-04-23", "renewalDate": "2022-04-23", "amount": 40972.38, "currency": "CAD", "services": [{"id": "svc-195", "name": "Analytics", "quantity": 1584, "unit": "user", "unitPrice": 288.9}, {"id": "svc-559", "name": "Support Plan", "quantity": 79, "unit": "subscription", "unitPrice": 495.25}]}}, {"id": "rec-00286", "createdAt": "2022-08-13T13:18:16Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["vip", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-54836271", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Linda Brown", "email": "jennifer.jones@test.org", "phone": "+1-517-746-5257"}, {"type": "technical", "name": "Susan Martinez", "email": "susan.garcia@example.com", "phone": "+1-384-936-6074"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-03", "renewalDate": "2023-09-03", "amount": 10719.81, "currency": "EUR", "services": [{"id": "svc-263", "name": "Cloud Storage", "quantity": 1189, "unit": "user", "unitPrice": 244.2}, {"id": "svc-607", "name": "Support Plan", "quantity": 90, "unit": "subscription", "unitPrice": 982.45}]}}, {"id": "rec-00287", "createdAt": "2020-07-27T09:48:14Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-90940028", "name": "Massive Dynamic", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1994, "contacts": [{"type": "primary", "name": "Robert Jackson", "email": "michael.thomas@fake.tech", "phone": "+1-429-526-1846"}, {"type": "technical", "name": "Patricia Jones", "email": "richard.garcia@test.org", "phone": "+1-370-677-6581"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-03-24", "renewalDate": "2026-03-24", "amount": 47879.88, "currency": "USD", "services": [{"id": "svc-862", "name": "Security", "quantity": 2961, "unit": "GB", "unitPrice": 111.36}, {"id": "svc-857", "name": "Training", "quantity": 73, "unit": "package", "unitPrice": 1411.14}]}}, {"id": "rec-00288", "createdAt": "2020-11-27T18:08:39Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-52952495", "name": "Initech", "segment": "startup", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "david.taylor@sample.io", "phone": "+1-377-172-9293"}, {"type": "technical", "name": "Mary White", "email": "joseph.white@example.com", "phone": "+1-803-628-4388"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-08-22", "renewalDate": "2023-08-22", "amount": 22785.87, "currency": "AUD", "services": [{"id": "svc-372", "name": "Security", "quantity": 5789, "unit": "instance", "unitPrice": 135.4}, {"id": "svc-246", "name": "Training", "quantity": 55, "unit": "session", "unitPrice": 56.47}]}}, {"id": "rec-00289", "createdAt": "2024-04-28T15:19:36Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-94257559", "name": "LexCorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1972, "contacts": [{"type": "primary", "name": "Sarah Robinson", "email": "linda.jones@test.org", "phone": "+1-746-317-6071"}, {"type": "technical", "name": "Karen Moore", "email": "thomas.moore@test.org", "phone": "+1-258-637-1677"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-15", "renewalDate": "2025-11-15", "amount": 43457.63, "currency": "USD", "services": [{"id": "svc-344", "name": "Security", "quantity": 7197, "unit": "user", "unitPrice": 448.36}, {"id": "svc-900", "name": "Implementation", "quantity": 84, "unit": "subscription", "unitPrice": 472.26}]}}, {"id": "rec-00290", "createdAt": "2022-12-12T12:34:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["trial", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-28746522", "name": "Oscorp", "segment": "small-business", "industry": "education", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Linda Davis", "email": "robert.moore@fake.tech", "phone": "+1-644-404-2414"}, {"type": "technical", "name": "Charles Harris", "email": "linda.johnson@sample.io", "phone": "+1-374-951-3530"}]}, "subscription": {"plan": "professional", "startDate": "2022-04-25", "renewalDate": "2024-04-25", "amount": 27215.21, "currency": "CAD", "services": [{"id": "svc-579", "name": "Database", "quantity": 2123, "unit": "license", "unitPrice": 180.52}, {"id": "svc-784", "name": "Consulting", "quantity": 84, "unit": "subscription", "unitPrice": 1972.57}]}}, {"id": "rec-00291", "createdAt": "2022-01-15T15:59:45Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-69368656", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 2009, "contacts": [{"type": "primary", "name": "Robert Wilson", "email": "elizabeth.robinson@demo.net", "phone": "+1-444-450-5782"}, {"type": "technical", "name": "Linda Jackson", "email": "joseph.williams@example.com", "phone": "+1-565-854-8266"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-09-01", "renewalDate": "2025-09-01", "amount": 22033.12, "currency": "USD", "services": [{"id": "svc-328", "name": "Security", "quantity": 9801, "unit": "instance", "unitPrice": 2.62}, {"id": "svc-913", "name": "Consulting", "quantity": 81, "unit": "hour", "unitPrice": 856.58}]}}, {"id": "rec-00292", "createdAt": "2023-11-16T19:57:59Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-92666217", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1971, "contacts": [{"type": "primary", "name": "Michael Anderson", "email": "susan.brown@test.org", "phone": "+1-921-840-5827"}, {"type": "technical", "name": "Michael Taylor", "email": "robert.garcia@example.com", "phone": "+1-369-497-5544"}]}, "subscription": {"plan": "free", "startDate": "2024-01-19", "renewalDate": "2027-01-19", "amount": 40940.41, "currency": "AUD", "services": [{"id": "svc-386", "name": "Database", "quantity": 2498, "unit": "TB", "unitPrice": 161.62}, {"id": "svc-950", "name": "Support Plan", "quantity": 81, "unit": "session", "unitPrice": 1219.2}]}}, {"id": "rec-00293", "createdAt": "2021-09-27T18:42:20Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["returning", "premium", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-55422313", "name": "Virtucon", "segment": "mid-market", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Patricia Harris", "email": "michael.harris@demo.net", "phone": "+1-349-731-6449"}, {"type": "technical", "name": "Mary Wilson", "email": "patricia.jackson@example.com", "phone": "+1-339-146-9753"}]}, "subscription": {"plan": "professional", "startDate": "2020-12-08", "renewalDate": "2023-12-08", "amount": 30825.14, "currency": "AUD", "services": [{"id": "svc-977", "name": "Analytics", "quantity": 348, "unit": "instance", "unitPrice": 461.93}, {"id": "svc-792", "name": "Support Plan", "quantity": 14, "unit": "session", "unitPrice": 1988.16}]}}, {"id": "rec-00294", "createdAt": "2023-02-02T21:12:24Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-50893438", "name": "Wayne Enterprises", "segment": "enterprise", "industry": "healthcare", "yearFounded": 1991, "contacts": [{"type": "primary", "name": "Thomas Anderson", "email": "sarah.robinson@demo.net", "phone": "+1-423-241-4640"}, {"type": "technical", "name": "William Martinez", "email": "richard.martin@test.org", "phone": "+1-359-860-1660"}]}, "subscription": {"plan": "free", "startDate": "2023-06-15", "renewalDate": "2026-06-15", "amount": 18156.75, "currency": "GBP", "services": [{"id": "svc-461", "name": "Compute Instances", "quantity": 4880, "unit": "user", "unitPrice": 99.01}, {"id": "svc-205", "name": "Consulting", "quantity": 78, "unit": "unit", "unitPrice": 825.8}]}}, {"id": "rec-00295", "createdAt": "2022-10-13T00:23:04Z", "type": "prospect", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-62274288", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Elizabeth Jackson", "email": "linda.harris@fake.tech", "phone": "+1-515-707-3752"}, {"type": "technical", "name": "Linda Smith", "email": "nancy.jones@demo.net", "phone": "+1-649-635-6329"}]}, "subscription": {"plan": "basic", "startDate": "2022-11-01", "renewalDate": "2023-11-01", "amount": 30292.65, "currency": "EUR", "services": [{"id": "svc-820", "name": "Database", "quantity": 8561, "unit": "GB", "unitPrice": 79.32}, {"id": "svc-520", "name": "Support Plan", "quantity": 49, "unit": "unit", "unitPrice": 1150.02}]}}, {"id": "rec-00296", "createdAt": "2020-01-15T18:50:52Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-26284704", "name": "Massive Dynamic", "segment": "startup", "industry": "finance", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Karen Jackson", "email": "elizabeth.wilson@sample.io", "phone": "+1-442-286-5123"}, {"type": "technical", "name": "Richard Thomas", "email": "karen.wilson@test.org", "phone": "+1-490-675-9618"}]}, "subscription": {"plan": "basic", "startDate": "2020-03-20", "renewalDate": "2023-03-20", "amount": 32638.67, "currency": "CAD", "services": [{"id": "svc-490", "name": "Security", "quantity": 4808, "unit": "instance", "unitPrice": 134.61}, {"id": "svc-984", "name": "Implementation", "quantity": 48, "unit": "session", "unitPrice": 758.57}]}}, {"id": "rec-00297", "createdAt": "2024-09-27T11:57:28Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-81627759", "name": "Globex", "segment": "small-business", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "linda.harris@example.com", "phone": "+1-331-756-8519"}, {"type": "technical", "name": "Jennifer Anderson", "email": "robert.white@sample.io", "phone": "+1-788-454-8736"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-02-14", "renewalDate": "2025-02-14", "amount": 15449.33, "currency": "CAD", "services": [{"id": "svc-841", "name": "Compute Instances", "quantity": 5768, "unit": "license", "unitPrice": 299.45}, {"id": "svc-423", "name": "Maintenance", "quantity": 100, "unit": "hour", "unitPrice": 352.22}]}}, {"id": "rec-00298", "createdAt": "2022-08-12T09:19:11Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-16790729", "name": "Wayne Enterprises", "segment": "startup", "industry": "technology", "yearFounded": 1985, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "richard.wilson@fake.tech", "phone": "+1-271-882-5831"}, {"type": "technical", "name": "Richard Harris", "email": "robert.wilson@fake.tech", "phone": "+1-484-605-4537"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-11-13", "renewalDate": "2026-11-13", "amount": 37270.58, "currency": "EUR", "services": [{"id": "svc-404", "name": "Database", "quantity": 3646, "unit": "license", "unitPrice": 175.72}, {"id": "svc-862", "name": "Support Plan", "quantity": 8, "unit": "session", "unitPrice": 902.33}]}}, {"id": "rec-00299", "createdAt": "2020-06-02T07:27:14Z", "type": "customer", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-77070595", "name": "Virtucon", "segment": "enterprise", "industry": "finance", "yearFounded": 1983, "contacts": [{"type": "primary", "name": "Elizabeth Davis", "email": "william.jones@test.org", "phone": "+1-558-828-7754"}, {"type": "technical", "name": "Joseph Brown", "email": "linda.jackson@mock.co", "phone": "+1-326-567-7335"}]}, "subscription": {"plan": "custom", "startDate": "2022-09-09", "renewalDate": "2023-09-09", "amount": 38856.57, "currency": "GBP", "services": [{"id": "svc-409", "name": "Compute Instances", "quantity": 4484, "unit": "license", "unitPrice": 232.89}, {"id": "svc-768", "name": "Maintenance", "quantity": 89, "unit": "hour", "unitPrice": 704.01}]}}, {"id": "rec-00300", "createdAt": "2024-02-10T10:11:52Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-82617072", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "education", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Patricia Smith", "email": "mary.garcia@mock.co", "phone": "+1-652-408-3767"}, {"type": "technical", "name": "Charles Jackson", "email": "john.jones@demo.net", "phone": "+1-672-628-5929"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-18", "renewalDate": "2023-01-18", "amount": 36105.88, "currency": "AUD", "services": [{"id": "svc-893", "name": "Security", "quantity": 9912, "unit": "instance", "unitPrice": 433.32}, {"id": "svc-316", "name": "Consulting", "quantity": 38, "unit": "package", "unitPrice": 1810.35}]}}, {"id": "rec-00301", "createdAt": "2020-10-15T16:34:15Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-37940072", "name": "Weyland-Yutani", "segment": "startup", "industry": "finance", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Susan Miller", "email": "elizabeth.brown@sample.io", "phone": "+1-823-647-2206"}, {"type": "technical", "name": "Robert Miller", "email": "elizabeth.martinez@demo.net", "phone": "+1-514-901-3885"}]}, "subscription": {"plan": "basic", "startDate": "2023-11-03", "renewalDate": "2024-11-03", "amount": 29979.22, "currency": "USD", "services": [{"id": "svc-148", "name": "Analytics", "quantity": 8522, "unit": "user", "unitPrice": 126.53}, {"id": "svc-806", "name": "Consulting", "quantity": 5, "unit": "hour", "unitPrice": 414.94}]}}, {"id": "rec-00302", "createdAt": "2021-05-16T15:31:15Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-24355254", "name": "Stark Industries", "segment": "mid-market", "industry": "education", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Charles Taylor", "email": "david.taylor@sample.io", "phone": "+1-778-568-3421"}, {"type": "technical", "name": "Robert Thompson", "email": "sarah.williams@test.org", "phone": "+1-651-955-3108"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-03-20", "renewalDate": "2021-03-20", "amount": 24000.93, "currency": "AUD", "services": [{"id": "svc-805", "name": "Database", "quantity": 3802, "unit": "user", "unitPrice": 384.73}, {"id": "svc-869", "name": "Maintenance", "quantity": 54, "unit": "hour", "unitPrice": 1283.34}]}}, {"id": "rec-00303", "createdAt": "2021-04-03T18:20:13Z", "type": "partner", "status": "inactive", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-63988784", "name": "Soylent Corp", "segment": "mid-market", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Richard Martinez", "email": "joseph.garcia@demo.net", "phone": "+1-211-628-9605"}, {"type": "technical", "name": "Susan Jackson", "email": "sarah.miller@example.com", "phone": "+1-477-550-9670"}]}, "subscription": {"plan": "free", "startDate": "2024-11-08", "renewalDate": "2027-11-08", "amount": 13807.62, "currency": "EUR", "services": [{"id": "svc-116", "name": "Database", "quantity": 6926, "unit": "user", "unitPrice": 377.97}, {"id": "svc-746", "name": "Training", "quantity": 1, "unit": "session", "unitPrice": 1386.89}]}}, {"id": "rec-00304", "createdAt": "2021-11-05T00:57:43Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-75604082", "name": "Initech", "segment": "small-business", "industry": "education", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Richard Davis", "email": "robert.martin@example.com", "phone": "+1-485-466-5910"}, {"type": "technical", "name": "Charles Harris", "email": "robert.martin@test.org", "phone": "+1-204-208-2632"}]}, "subscription": {"plan": "professional", "startDate": "2024-09-13", "renewalDate": "2027-09-13", "amount": 11613.07, "currency": "CAD", "services": [{"id": "svc-603", "name": "Security", "quantity": 9073, "unit": "TB", "unitPrice": 89.97}, {"id": "svc-958", "name": "Consulting", "quantity": 4, "unit": "session", "unitPrice": 1437.98}]}}, {"id": "rec-00305", "createdAt": "2021-03-12T21:35:42Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["vip", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-49019232", "name": "Soylent Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2021, "contacts": [{"type": "primary", "name": "Patricia Taylor", "email": "richard.jones@mock.co", "phone": "+1-508-937-5867"}, {"type": "technical", "name": "Linda Anderson", "email": "william.anderson@fake.tech", "phone": "+1-393-430-6861"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-11", "renewalDate": "2023-06-11", "amount": 16959.83, "currency": "GBP", "services": [{"id": "svc-120", "name": "Analytics", "quantity": 4662, "unit": "license", "unitPrice": 445.59}, {"id": "svc-893", "name": "Implementation", "quantity": 37, "unit": "session", "unitPrice": 1939.66}]}}, {"id": "rec-00306", "createdAt": "2022-02-16T05:53:10Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15970173", "name": "Stark Industries", "segment": "small-business", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Mary Brown", "email": "jessica.thomas@sample.io", "phone": "+1-313-694-7482"}, {"type": "technical", "name": "Charles Harris", "email": "elizabeth.williams@mock.co", "phone": "+1-779-390-9730"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-10-28", "renewalDate": "2025-10-28", "amount": 18531.18, "currency": "CAD", "services": [{"id": "svc-683", "name": "Cloud Storage", "quantity": 6498, "unit": "license", "unitPrice": 79.52}, {"id": "svc-762", "name": "Consulting", "quantity": 66, "unit": "unit", "unitPrice": 1697.83}]}}, {"id": "rec-00307", "createdAt": "2025-05-18T07:19:43Z", "type": "customer", "status": "inactive", "priority": "medium", "metadata": {"source": "import", "region": "sa-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76471088", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1999, "contacts": [{"type": "primary", "name": "Karen Harris", "email": "susan.brown@mock.co", "phone": "+1-512-333-9080"}, {"type": "technical", "name": "John Thomas", "email": "sarah.williams@sample.io", "phone": "+1-873-746-6525"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-09-17", "renewalDate": "2026-09-17", "amount": 26111.93, "currency": "USD", "services": [{"id": "svc-330", "name": "Database", "quantity": 6174, "unit": "instance", "unitPrice": 147.93}, {"id": "svc-467", "name": "Consulting", "quantity": 60, "unit": "session", "unitPrice": 278.09}]}}, {"id": "rec-00308", "createdAt": "2023-06-28T09:30:22Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-25872398", "name": "Globex", "segment": "mid-market", "industry": "education", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "David Jackson", "email": "michael.wilson@example.com", "phone": "+1-831-824-4977"}, {"type": "technical", "name": "David Brown", "email": "susan.martinez@demo.net", "phone": "+1-859-839-3923"}]}, "subscription": {"plan": "basic", "startDate": "2020-12-09", "renewalDate": "2021-12-09", "amount": 11467.95, "currency": "CAD", "services": [{"id": "svc-373", "name": "Compute Instances", "quantity": 8991, "unit": "TB", "unitPrice": 422.9}, {"id": "svc-163", "name": "Maintenance", "quantity": 37, "unit": "package", "unitPrice": 886.02}]}}, {"id": "rec-00309", "createdAt": "2021-02-18T01:56:26Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-65301909", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1987, "contacts": [{"type": "primary", "name": "John Garcia", "email": "jessica.garcia@example.com", "phone": "+1-754-273-7224"}, {"type": "technical", "name": "Sarah Brown", "email": "joseph.miller@mock.co", "phone": "+1-830-234-1529"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-05", "renewalDate": "2023-03-05", "amount": 16021.3, "currency": "GBP", "services": [{"id": "svc-854", "name": "Security", "quantity": 1667, "unit": "license", "unitPrice": 293.21}, {"id": "svc-889", "name": "Consulting", "quantity": 13, "unit": "subscription", "unitPrice": 1981.15}]}}, {"id": "rec-00310", "createdAt": "2025-10-09T17:29:43Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-31824237", "name": "Oscorp", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1976, "contacts": [{"type": "primary", "name": "Robert Harris", "email": "joseph.martin@example.com", "phone": "+1-987-358-7482"}, {"type": "technical", "name": "Linda Moore", "email": "mary.jackson@demo.net", "phone": "+1-854-673-1920"}]}, "subscription": {"plan": "custom", "startDate": "2024-10-19", "renewalDate": "2026-10-19", "amount": 38139.4, "currency": "AUD", "services": [{"id": "svc-231", "name": "Compute Instances", "quantity": 7465, "unit": "TB", "unitPrice": 457.9}, {"id": "svc-455", "name": "Consulting", "quantity": 38, "unit": "package", "unitPrice": 391.92}]}}, {"id": "rec-00311", "createdAt": "2022-06-18T19:29:08Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-21530454", "name": "Virtucon", "segment": "enterprise", "industry": "retail", "yearFounded": 2000, "contacts": [{"type": "primary", "name": "Karen Smith", "email": "joseph.harris@sample.io", "phone": "+1-646-298-6645"}, {"type": "technical", "name": "Joseph Miller", "email": "patricia.miller@test.org", "phone": "+1-897-183-8782"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-10", "renewalDate": "2024-09-10", "amount": 41766.84, "currency": "AUD", "services": [{"id": "svc-223", "name": "Analytics", "quantity": 4447, "unit": "instance", "unitPrice": 287.15}, {"id": "svc-230", "name": "Implementation", "quantity": 74, "unit": "package", "unitPrice": 1739.46}]}}, {"id": "rec-00312", "createdAt": "2023-10-01T16:40:14Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-east-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-35642876", "name": "Soylent Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "Susan Anderson", "email": "charles.martin@sample.io", "phone": "+1-864-442-5290"}, {"type": "technical", "name": "John Martin", "email": "jennifer.white@example.com", "phone": "+1-914-647-1247"}]}, "subscription": {"plan": "free", "startDate": "2022-03-01", "renewalDate": "2023-03-01", "amount": 9311.35, "currency": "CAD", "services": [{"id": "svc-334", "name": "Security", "quantity": 8590, "unit": "TB", "unitPrice": 430.5}, {"id": "svc-504", "name": "Maintenance", "quantity": 79, "unit": "session", "unitPrice": 1998.97}]}}, {"id": "rec-00313", "createdAt": "2021-10-27T02:45:33Z", "type": "customer", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-48534304", "name": "Weyland-Yutani", "segment": "small-business", "industry": "technology", "yearFounded": 1997, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "karen.robinson@fake.tech", "phone": "+1-464-537-8875"}, {"type": "technical", "name": "Patricia Miller", "email": "nancy.wilson@example.com", "phone": "+1-528-462-8423"}]}, "subscription": {"plan": "custom", "startDate": "2020-04-28", "renewalDate": "2021-04-28", "amount": 20040.06, "currency": "CAD", "services": [{"id": "svc-591", "name": "Database", "quantity": 1213, "unit": "user", "unitPrice": 164.23}, {"id": "svc-277", "name": "Implementation", "quantity": 67, "unit": "hour", "unitPrice": 338.66}]}}, {"id": "rec-00314", "createdAt": "2025-01-10T05:41:04Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-96234572", "name": "Stark Industries", "segment": "enterprise", "industry": "technology", "yearFounded": 1973, "contacts": [{"type": "primary", "name": "Mary Martinez", "email": "susan.jackson@mock.co", "phone": "+1-826-890-2874"}, {"type": "technical", "name": "Michael Williams", "email": "john.davis@fake.tech", "phone": "+1-315-668-1869"}]}, "subscription": {"plan": "free", "startDate": "2021-05-25", "renewalDate": "2024-05-25", "amount": 27542.73, "currency": "GBP", "services": [{"id": "svc-231", "name": "Compute Instances", "quantity": 7528, "unit": "GB", "unitPrice": 136.52}, {"id": "svc-594", "name": "Implementation", "quantity": 28, "unit": "unit", "unitPrice": 443.53}]}}, {"id": "rec-00315", "createdAt": "2024-07-22T12:56:40Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["new", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-41114111", "name": "Wayne Enterprises", "segment": "startup", "industry": "finance", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Joseph Martinez", "email": "nancy.jackson@sample.io", "phone": "+1-736-654-5932"}, {"type": "technical", "name": "Susan Brown", "email": "william.thomas@fake.tech", "phone": "+1-837-954-1985"}]}, "subscription": {"plan": "custom", "startDate": "2021-09-16", "renewalDate": "2024-09-16", "amount": 48920.79, "currency": "USD", "services": [{"id": "svc-174", "name": "Cloud Storage", "quantity": 8783, "unit": "GB", "unitPrice": 242.44}, {"id": "svc-160", "name": "Support Plan", "quantity": 16, "unit": "hour", "unitPrice": 414.93}]}}, {"id": "rec-00316", "createdAt": "2020-01-05T12:18:50Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["new", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-26604885", "name": "Aperture Science", "segment": "small-business", "industry": "education", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Elizabeth Robinson", "email": "david.brown@demo.net", "phone": "+1-993-147-4213"}, {"type": "technical", "name": "Robert Miller", "email": "susan.harris@test.org", "phone": "+1-418-724-3196"}]}, "subscription": {"plan": "custom", "startDate": "2023-07-27", "renewalDate": "2024-07-27", "amount": 1829.02, "currency": "EUR", "services": [{"id": "svc-359", "name": "Analytics", "quantity": 7365, "unit": "instance", "unitPrice": 454.37}, {"id": "svc-650", "name": "Training", "quantity": 49, "unit": "hour", "unitPrice": 986.07}]}}, {"id": "rec-00317", "createdAt": "2020-06-21T05:55:27Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-91434516", "name": "Globex", "segment": "mid-market", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Charles Thomas", "email": "james.jackson@demo.net", "phone": "+1-746-981-1959"}, {"type": "technical", "name": "Jessica Anderson", "email": "mary.johnson@demo.net", "phone": "+1-246-441-7964"}]}, "subscription": {"plan": "professional", "startDate": "2022-07-10", "renewalDate": "2025-07-10", "amount": 40374.53, "currency": "CAD", "services": [{"id": "svc-379", "name": "Database", "quantity": 6363, "unit": "license", "unitPrice": 277.22}, {"id": "svc-540", "name": "Support Plan", "quantity": 79, "unit": "hour", "unitPrice": 1074.26}]}}, {"id": "rec-00318", "createdAt": "2021-02-20T01:04:00Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["new", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-16177242", "name": "Weyland-Yutani", "segment": "small-business", "industry": "healthcare", "yearFounded": 2018, "contacts": [{"type": "primary", "name": "Patricia Thomas", "email": "richard.martinez@mock.co", "phone": "+1-765-858-9233"}, {"type": "technical", "name": "John Garcia", "email": "charles.brown@demo.net", "phone": "+1-505-853-8573"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-25", "renewalDate": "2026-09-25", "amount": 48518.65, "currency": "USD", "services": [{"id": "svc-725", "name": "Cloud Storage", "quantity": 7784, "unit": "TB", "unitPrice": 106.47}, {"id": "svc-346", "name": "Consulting", "quantity": 38, "unit": "subscription", "unitPrice": 204.94}]}}, {"id": "rec-00319", "createdAt": "2023-11-11T07:30:34Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "web", "region": "sa-east-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-49759734", "name": "Aperture Science", "segment": "startup", "industry": "finance", "yearFounded": 1990, "contacts": [{"type": "primary", "name": "Linda Johnson", "email": "thomas.miller@demo.net", "phone": "+1-533-722-5700"}, {"type": "technical", "name": "Charles Anderson", "email": "david.wilson@fake.tech", "phone": "+1-392-582-6157"}]}, "subscription": {"plan": "professional", "startDate": "2021-02-09", "renewalDate": "2024-02-09", "amount": 38667.54, "currency": "CAD", "services": [{"id": "svc-762", "name": "Compute Instances", "quantity": 597, "unit": "instance", "unitPrice": 204.08}, {"id": "svc-857", "name": "Training", "quantity": 75, "unit": "hour", "unitPrice": 587.93}]}}, {"id": "rec-00320", "createdAt": "2024-05-01T14:57:35Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-17661906", "name": "Soylent Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1965, "contacts": [{"type": "primary", "name": "Sarah Martin", "email": "susan.moore@sample.io", "phone": "+1-555-265-7394"}, {"type": "technical", "name": "James Anderson", "email": "william.smith@fake.tech", "phone": "+1-662-388-8232"}]}, "subscription": {"plan": "professional", "startDate": "2024-05-17", "renewalDate": "2025-05-17", "amount": 43547.92, "currency": "CAD", "services": [{"id": "svc-817", "name": "Cloud Storage", "quantity": 9541, "unit": "instance", "unitPrice": 63.55}, {"id": "svc-733", "name": "Training", "quantity": 57, "unit": "session", "unitPrice": 590.99}]}}, {"id": "rec-00321", "createdAt": "2024-08-06T00:46:27Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-33984750", "name": "Wayne Enterprises", "segment": "small-business", "industry": "technology", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Jessica Johnson", "email": "jessica.white@test.org", "phone": "+1-613-752-9787"}, {"type": "technical", "name": "James White", "email": "sarah.garcia@demo.net", "phone": "+1-734-695-1380"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-14", "renewalDate": "2023-07-14", "amount": 28204.87, "currency": "EUR", "services": [{"id": "svc-443", "name": "Cloud Storage", "quantity": 8057, "unit": "TB", "unitPrice": 206.84}, {"id": "svc-747", "name": "Consulting", "quantity": 53, "unit": "hour", "unitPrice": 1287.97}]}}, {"id": "rec-00322", "createdAt": "2020-04-15T16:21:44Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["vip", "startup", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-92724770", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "education", "yearFounded": 2008, "contacts": [{"type": "primary", "name": "Susan Jackson", "email": "patricia.williams@demo.net", "phone": "+1-509-779-7582"}, {"type": "technical", "name": "Karen Thomas", "email": "mary.davis@sample.io", "phone": "+1-419-715-7044"}]}, "subscription": {"plan": "professional", "startDate": "2024-05-03", "renewalDate": "2025-05-03", "amount": 13369.73, "currency": "USD", "services": [{"id": "svc-841", "name": "Analytics", "quantity": 3082, "unit": "instance", "unitPrice": 424.7}, {"id": "svc-452", "name": "Implementation", "quantity": 77, "unit": "unit", "unitPrice": 1726.14}]}}, {"id": "rec-00323", "createdAt": "2023-09-15T22:06:01Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-74463180", "name": "Initech", "segment": "mid-market", "industry": "technology", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "Mary Jackson", "email": "thomas.brown@demo.net", "phone": "+1-795-953-8341"}, {"type": "technical", "name": "Karen Moore", "email": "linda.thompson@fake.tech", "phone": "+1-441-646-1398"}]}, "subscription": {"plan": "professional", "startDate": "2020-03-18", "renewalDate": "2021-03-18", "amount": 35018.65, "currency": "CAD", "services": [{"id": "svc-777", "name": "Database", "quantity": 6352, "unit": "license", "unitPrice": 135.35}, {"id": "svc-192", "name": "Support Plan", "quantity": 98, "unit": "package", "unitPrice": 101.01}]}}, {"id": "rec-00324", "createdAt": "2021-05-08T23:40:56Z", "type": "prospect", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-16912937", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "Nancy Thompson", "email": "joseph.jackson@sample.io", "phone": "+1-378-685-1121"}, {"type": "technical", "name": "John Moore", "email": "karen.white@sample.io", "phone": "+1-851-988-7478"}]}, "subscription": {"plan": "professional", "startDate": "2024-04-07", "renewalDate": "2025-04-07", "amount": 4832.65, "currency": "EUR", "services": [{"id": "svc-492", "name": "Cloud Storage", "quantity": 4762, "unit": "user", "unitPrice": 470.88}, {"id": "svc-857", "name": "Support Plan", "quantity": 94, "unit": "session", "unitPrice": 126.28}]}}, {"id": "rec-00325", "createdAt": "2020-05-26T19:00:20Z", "type": "lead", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-55772660", "name": "Acme Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 2017, "contacts": [{"type": "primary", "name": "Michael Martinez", "email": "jessica.thompson@demo.net", "phone": "+1-860-837-1132"}, {"type": "technical", "name": "Robert Jones", "email": "mary.johnson@example.com", "phone": "+1-412-972-3676"}]}, "subscription": {"plan": "professional", "startDate": "2022-03-08", "renewalDate": "2025-03-08", "amount": 35251.39, "currency": "CAD", "services": [{"id": "svc-122", "name": "Database", "quantity": 2595, "unit": "GB", "unitPrice": 166.42}, {"id": "svc-707", "name": "Training", "quantity": 36, "unit": "package", "unitPrice": 1486.0}]}}, {"id": "rec-00326", "createdAt": "2024-09-01T03:47:42Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["new", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-40262510", "name": "Massive Dynamic", "segment": "small-business", "industry": "finance", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "James Thompson", "email": "robert.brown@demo.net", "phone": "+1-934-831-6236"}, {"type": "technical", "name": "Patricia White", "email": "william.thomas@sample.io", "phone": "+1-288-253-4134"}]}, "subscription": {"plan": "basic", "startDate": "2023-07-25", "renewalDate": "2026-07-25", "amount": 2231.13, "currency": "CAD", "services": [{"id": "svc-300", "name": "Analytics", "quantity": 5980, "unit": "user", "unitPrice": 249.05}, {"id": "svc-577", "name": "Implementation", "quantity": 1, "unit": "subscription", "unitPrice": 1286.28}]}}, {"id": "rec-00327", "createdAt": "2022-07-28T09:54:02Z", "type": "partner", "status": "inactive", "priority": "high", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-23733336", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "technology", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Charles White", "email": "sarah.wilson@mock.co", "phone": "+1-710-808-8830"}, {"type": "technical", "name": "Jennifer Wilson", "email": "karen.anderson@example.com", "phone": "+1-459-427-9407"}]}, "subscription": {"plan": "professional", "startDate": "2020-08-08", "renewalDate": "2022-08-08", "amount": 35783.38, "currency": "AUD", "services": [{"id": "svc-876", "name": "Compute Instances", "quantity": 9560, "unit": "instance", "unitPrice": 430.35}, {"id": "svc-251", "name": "Training", "quantity": 95, "unit": "package", "unitPrice": 1180.27}]}}, {"id": "rec-00328", "createdAt": "2024-06-06T18:52:46Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "premium", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-96417269", "name": "Cyberdyne Systems", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "Sarah Davis", "email": "james.williams@sample.io", "phone": "+1-915-749-8805"}, {"type": "technical", "name": "James Johnson", "email": "james.white@mock.co", "phone": "+1-274-547-4408"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-07-17", "renewalDate": "2023-07-17", "amount": 42179.2, "currency": "AUD", "services": [{"id": "svc-270", "name": "Database", "quantity": 998, "unit": "TB", "unitPrice": 312.8}, {"id": "svc-485", "name": "Maintenance", "quantity": 25, "unit": "subscription", "unitPrice": 302.66}]}}, {"id": "rec-00329", "createdAt": "2022-07-22T20:11:16Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "ap-southeast-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-61601615", "name": "Nakatomi Trading Corp", "segment": "enterprise", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "Thomas Moore", "email": "charles.garcia@mock.co", "phone": "+1-298-625-6317"}, {"type": "technical", "name": "Michael Moore", "email": "james.thompson@mock.co", "phone": "+1-539-665-9558"}]}, "subscription": {"plan": "custom", "startDate": "2020-08-26", "renewalDate": "2022-08-26", "amount": 3449.09, "currency": "CAD", "services": [{"id": "svc-656", "name": "Analytics", "quantity": 3538, "unit": "license", "unitPrice": 248.37}, {"id": "svc-105", "name": "Training", "quantity": 16, "unit": "session", "unitPrice": 1812.45}]}}, {"id": "rec-00330", "createdAt": "2021-11-16T07:40:01Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["returning", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28340331", "name": "Virtucon", "segment": "mid-market", "industry": "education", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Charles Jones", "email": "charles.robinson@sample.io", "phone": "+1-258-380-8425"}, {"type": "technical", "name": "Joseph Garcia", "email": "thomas.white@demo.net", "phone": "+1-822-827-9598"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-02-18", "renewalDate": "2024-02-18", "amount": 4029.64, "currency": "USD", "services": [{"id": "svc-678", "name": "Cloud Storage", "quantity": 3637, "unit": "instance", "unitPrice": 330.85}, {"id": "svc-692", "name": "Training", "quantity": 64, "unit": "hour", "unitPrice": 365.14}]}}, {"id": "rec-00331", "createdAt": "2023-08-22T12:30:43Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-95503379", "name": "Acme Corp", "segment": "startup", "industry": "manufacturing", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Sarah Taylor", "email": "david.harris@sample.io", "phone": "+1-692-989-9593"}, {"type": "technical", "name": "Michael Davis", "email": "mary.moore@mock.co", "phone": "+1-757-907-9395"}]}, "subscription": {"plan": "free", "startDate": "2023-01-17", "renewalDate": "2026-01-17", "amount": 25517.39, "currency": "GBP", "services": [{"id": "svc-978", "name": "Database", "quantity": 7709, "unit": "license", "unitPrice": 129.14}, {"id": "svc-690", "name": "Maintenance", "quantity": 70, "unit": "session", "unitPrice": 848.4}]}}, {"id": "rec-00332", "createdAt": "2025-04-27T00:26:38Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48685065", "name": "Initech", "segment": "enterprise", "industry": "technology", "yearFounded": 2011, "contacts": [{"type": "primary", "name": "William Garcia", "email": "nancy.brown@sample.io", "phone": "+1-671-873-6096"}, {"type": "technical", "name": "John Davis", "email": "william.martin@test.org", "phone": "+1-538-917-1110"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-03", "renewalDate": "2024-01-03", "amount": 2553.98, "currency": "CAD", "services": [{"id": "svc-834", "name": "Security", "quantity": 3566, "unit": "license", "unitPrice": 105.95}, {"id": "svc-698", "name": "Training", "quantity": 22, "unit": "subscription", "unitPrice": 588.13}]}}, {"id": "rec-00333", "createdAt": "2020-08-10T04:29:58Z", "type": "prospect", "status": "inactive", "priority": "high", "metadata": {"source": "manual", "region": "us-west-2", "tags": ["new", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-66627764", "name": "Massive Dynamic", "segment": "enterprise", "industry": "finance", "yearFounded": 1957, "contacts": [{"type": "primary", "name": "Sarah Miller", "email": "karen.williams@demo.net", "phone": "+1-214-470-8383"}, {"type": "technical", "name": "Patricia Jackson", "email": "richard.robinson@mock.co", "phone": "+1-281-409-4452"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-09-01", "renewalDate": "2025-09-01", "amount": 10026.7, "currency": "GBP", "services": [{"id": "svc-733", "name": "Database", "quantity": 8526, "unit": "TB", "unitPrice": 366.79}, {"id": "svc-502", "name": "Maintenance", "quantity": 54, "unit": "subscription", "unitPrice": 1826.53}]}}, {"id": "rec-00334", "createdAt": "2025-09-17T13:02:59Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-east-1", "tags": ["vip", "startup", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-90785868", "name": "Weyland-Yutani", "segment": "mid-market", "industry": "technology", "yearFounded": 1984, "contacts": [{"type": "primary", "name": "John Robinson", "email": "jessica.garcia@fake.tech", "phone": "+1-970-958-9294"}, {"type": "technical", "name": "Nancy Harris", "email": "john.martin@demo.net", "phone": "+1-457-877-6655"}]}, "subscription": {"plan": "basic", "startDate": "2024-01-20", "renewalDate": "2025-01-20", "amount": 46493.3, "currency": "AUD", "services": [{"id": "svc-512", "name": "Analytics", "quantity": 3374, "unit": "user", "unitPrice": 497.1}, {"id": "svc-631", "name": "Consulting", "quantity": 80, "unit": "unit", "unitPrice": 1299.07}]}}, {"id": "rec-00335", "createdAt": "2023-12-02T07:07:21Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["new", "premium", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-18256611", "name": "Initech", "segment": "startup", "industry": "technology", "yearFounded": 2005, "contacts": [{"type": "primary", "name": "William Davis", "email": "joseph.jones@test.org", "phone": "+1-450-747-5216"}, {"type": "technical", "name": "David Anderson", "email": "james.jackson@example.com", "phone": "+1-558-469-3209"}]}, "subscription": {"plan": "professional", "startDate": "2020-02-10", "renewalDate": "2021-02-10", "amount": 22244.33, "currency": "CAD", "services": [{"id": "svc-658", "name": "Compute Instances", "quantity": 7017, "unit": "GB", "unitPrice": 481.1}, {"id": "svc-491", "name": "Consulting", "quantity": 11, "unit": "unit", "unitPrice": 394.33}]}}, {"id": "rec-00336", "createdAt": "2022-10-12T13:13:43Z", "type": "lead", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-70917342", "name": "Wayne Enterprises", "segment": "small-business", "industry": "retail", "yearFounded": 1989, "contacts": [{"type": "primary", "name": "Richard White", "email": "james.martinez@demo.net", "phone": "+1-965-494-1209"}, {"type": "technical", "name": "Karen White", "email": "patricia.williams@example.com", "phone": "+1-524-914-6900"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-04-19", "renewalDate": "2023-04-19", "amount": 35633.47, "currency": "CAD", "services": [{"id": "svc-295", "name": "Analytics", "quantity": 263, "unit": "instance", "unitPrice": 40.18}, {"id": "svc-368", "name": "Maintenance", "quantity": 65, "unit": "subscription", "unitPrice": 1038.19}]}}, {"id": "rec-00337", "createdAt": "2021-02-19T16:56:31Z", "type": "partner", "status": "pending", "priority": "low", "metadata": {"source": "import", "region": "us-west-2", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-76331761", "name": "LexCorp", "segment": "mid-market", "industry": "education", "yearFounded": 1975, "contacts": [{"type": "primary", "name": "Charles Taylor", "email": "richard.thomas@test.org", "phone": "+1-774-547-9264"}, {"type": "technical", "name": "Karen Thompson", "email": "charles.anderson@fake.tech", "phone": "+1-871-997-7504"}]}, "subscription": {"plan": "free", "startDate": "2021-01-01", "renewalDate": "2022-01-01", "amount": 44064.48, "currency": "USD", "services": [{"id": "svc-626", "name": "Cloud Storage", "quantity": 9201, "unit": "user", "unitPrice": 358.15}, {"id": "svc-295", "name": "Implementation", "quantity": 64, "unit": "session", "unitPrice": 72.43}]}}, {"id": "rec-00338", "createdAt": "2020-05-23T22:39:06Z", "type": "partner", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-west-2", "tags": ["vip", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-21457305", "name": "Globex", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "William Williams", "email": "david.smith@test.org", "phone": "+1-311-284-4228"}, {"type": "technical", "name": "Charles Johnson", "email": "david.miller@mock.co", "phone": "+1-884-419-4819"}]}, "subscription": {"plan": "professional", "startDate": "2023-09-26", "renewalDate": "2026-09-26", "amount": 42375.83, "currency": "AUD", "services": [{"id": "svc-383", "name": "Compute Instances", "quantity": 7529, "unit": "instance", "unitPrice": 185.58}, {"id": "svc-353", "name": "Maintenance", "quantity": 40, "unit": "hour", "unitPrice": 1442.0}]}}, {"id": "rec-00339", "createdAt": "2024-03-08T06:22:06Z", "type": "partner", "status": "active", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["trial", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-69499683", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Sarah Harris", "email": "sarah.thomas@fake.tech", "phone": "+1-902-631-1817"}, {"type": "technical", "name": "Michael Brown", "email": "jessica.wilson@example.com", "phone": "+1-547-599-5146"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-02-27", "renewalDate": "2026-02-27", "amount": 5757.3, "currency": "USD", "services": [{"id": "svc-389", "name": "Analytics", "quantity": 379, "unit": "user", "unitPrice": 278.68}, {"id": "svc-746", "name": "Implementation", "quantity": 26, "unit": "subscription", "unitPrice": 1800.3}]}}, {"id": "rec-00340", "createdAt": "2021-10-23T11:01:11Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "api", "region": "sa-east-1", "tags": ["new", "basic", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-44130305", "name": "Soylent Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Jessica Thomas", "email": "michael.thomas@mock.co", "phone": "+1-311-407-4927"}, {"type": "technical", "name": "James Taylor", "email": "william.johnson@mock.co", "phone": "+1-711-499-3615"}]}, "subscription": {"plan": "custom", "startDate": "2024-05-09", "renewalDate": "2026-05-09", "amount": 38234.09, "currency": "CAD", "services": [{"id": "svc-348", "name": "Analytics", "quantity": 7679, "unit": "instance", "unitPrice": 289.18}, {"id": "svc-970", "name": "Implementation", "quantity": 2, "unit": "hour", "unitPrice": 1501.1}]}}, {"id": "rec-00341", "createdAt": "2022-09-04T05:22:32Z", "type": "lead", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-20672551", "name": "Aperture Science", "segment": "startup", "industry": "education", "yearFounded": 2001, "contacts": [{"type": "primary", "name": "John Martinez", "email": "michael.johnson@sample.io", "phone": "+1-413-747-2839"}, {"type": "technical", "name": "Jennifer Martin", "email": "thomas.davis@example.com", "phone": "+1-687-132-4397"}]}, "subscription": {"plan": "free", "startDate": "2023-11-24", "renewalDate": "2025-11-24", "amount": 48618.96, "currency": "CAD", "services": [{"id": "svc-464", "name": "Analytics", "quantity": 9185, "unit": "user", "unitPrice": 260.82}, {"id": "svc-694", "name": "Support Plan", "quantity": 89, "unit": "hour", "unitPrice": 220.29}]}}, {"id": "rec-00342", "createdAt": "2022-12-20T23:29:47Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-west-2", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-71900079", "name": "Globex", "segment": "enterprise", "industry": "retail", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Jennifer Wilson", "email": "michael.davis@mock.co", "phone": "+1-403-835-7187"}, {"type": "technical", "name": "Nancy Smith", "email": "karen.anderson@demo.net", "phone": "+1-219-504-4670"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-10-07", "renewalDate": "2026-10-07", "amount": 37461.41, "currency": "CAD", "services": [{"id": "svc-629", "name": "Compute Instances", "quantity": 1634, "unit": "instance", "unitPrice": 280.81}, {"id": "svc-993", "name": "Implementation", "quantity": 25, "unit": "unit", "unitPrice": 862.61}]}}, {"id": "rec-00343", "createdAt": "2023-09-22T03:19:34Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-68950818", "name": "Umbrella Corp", "segment": "small-business", "industry": "finance", "yearFounded": 2007, "contacts": [{"type": "primary", "name": "Susan Williams", "email": "nancy.robinson@test.org", "phone": "+1-408-228-6069"}, {"type": "technical", "name": "Charles Brown", "email": "michael.garcia@example.com", "phone": "+1-795-937-4262"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-08-18", "renewalDate": "2026-08-18", "amount": 6087.42, "currency": "AUD", "services": [{"id": "svc-851", "name": "Analytics", "quantity": 1227, "unit": "GB", "unitPrice": 143.32}, {"id": "svc-894", "name": "Consulting", "quantity": 54, "unit": "unit", "unitPrice": 272.4}]}}, {"id": "rec-00344", "createdAt": "2024-12-24T00:13:46Z", "type": "partner", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "eu-west-1", "tags": ["vip", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-39133709", "name": "Globex", "segment": "enterprise", "industry": "education", "yearFounded": 1954, "contacts": [{"type": "primary", "name": "Jennifer Wilson", "email": "nancy.thomas@example.com", "phone": "+1-600-661-1529"}, {"type": "technical", "name": "Richard Anderson", "email": "nancy.white@mock.co", "phone": "+1-576-679-3126"}]}, "subscription": {"plan": "professional", "startDate": "2022-02-08", "renewalDate": "2025-02-08", "amount": 36131.16, "currency": "EUR", "services": [{"id": "svc-846", "name": "Analytics", "quantity": 3246, "unit": "TB", "unitPrice": 374.9}, {"id": "svc-101", "name": "Maintenance", "quantity": 20, "unit": "subscription", "unitPrice": 869.25}]}}, {"id": "rec-00345", "createdAt": "2021-09-15T23:46:18Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "import", "region": "us-east-1", "tags": ["vip", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-37095540", "name": "Cyberdyne Systems", "segment": "enterprise", "industry": "finance", "yearFounded": 1974, "contacts": [{"type": "primary", "name": "David Martinez", "email": "karen.thomas@mock.co", "phone": "+1-544-401-2438"}, {"type": "technical", "name": "Thomas Anderson", "email": "robert.smith@example.com", "phone": "+1-994-392-1394"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-07-15", "renewalDate": "2025-07-15", "amount": 8806.17, "currency": "USD", "services": [{"id": "svc-375", "name": "Analytics", "quantity": 3048, "unit": "license", "unitPrice": 369.09}, {"id": "svc-810", "name": "Training", "quantity": 88, "unit": "package", "unitPrice": 1218.45}]}}, {"id": "rec-00346", "createdAt": "2022-04-10T05:46:19Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-86670350", "name": "Initech", "segment": "startup", "industry": "education", "yearFounded": 1951, "contacts": [{"type": "primary", "name": "William Jackson", "email": "mary.harris@example.com", "phone": "+1-683-737-2921"}, {"type": "technical", "name": "Michael Brown", "email": "jessica.taylor@example.com", "phone": "+1-817-607-8212"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-14", "renewalDate": "2022-09-14", "amount": 2928.87, "currency": "CAD", "services": [{"id": "svc-299", "name": "Cloud Storage", "quantity": 1554, "unit": "user", "unitPrice": 420.59}, {"id": "svc-248", "name": "Consulting", "quantity": 17, "unit": "subscription", "unitPrice": 1914.23}]}}, {"id": "rec-00347", "createdAt": "2021-08-15T10:00:43Z", "type": "prospect", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-77368993", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "education", "yearFounded": 1952, "contacts": [{"type": "primary", "name": "Jennifer Robinson", "email": "charles.garcia@mock.co", "phone": "+1-571-184-4635"}, {"type": "technical", "name": "Jessica Williams", "email": "jessica.harris@test.org", "phone": "+1-754-395-2149"}]}, "subscription": {"plan": "enterprise", "startDate": "2023-02-11", "renewalDate": "2024-02-11", "amount": 46078.39, "currency": "USD", "services": [{"id": "svc-485", "name": "Database", "quantity": 3487, "unit": "TB", "unitPrice": 44.08}, {"id": "svc-428", "name": "Maintenance", "quantity": 4, "unit": "hour", "unitPrice": 1436.0}]}}, {"id": "rec-00348", "createdAt": "2022-09-16T08:23:14Z", "type": "prospect", "status": "suspended", "priority": "medium", "metadata": {"source": "import", "region": "us-west-2", "tags": ["trial", "startup", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-54354772", "name": "Massive Dynamic", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1958, "contacts": [{"type": "primary", "name": "Robert Thomas", "email": "robert.moore@fake.tech", "phone": "+1-439-393-3361"}, {"type": "technical", "name": "Sarah Martin", "email": "susan.white@demo.net", "phone": "+1-721-867-9458"}]}, "subscription": {"plan": "custom", "startDate": "2022-04-11", "renewalDate": "2024-04-11", "amount": 39188.62, "currency": "AUD", "services": [{"id": "svc-517", "name": "Analytics", "quantity": 7271, "unit": "instance", "unitPrice": 99.5}, {"id": "svc-258", "name": "Maintenance", "quantity": 79, "unit": "session", "unitPrice": 659.03}]}}, {"id": "rec-00349", "createdAt": "2021-11-26T09:16:15Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-25407094", "name": "LexCorp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1970, "contacts": [{"type": "primary", "name": "Susan Martin", "email": "robert.davis@example.com", "phone": "+1-250-273-5536"}, {"type": "technical", "name": "William Johnson", "email": "linda.jones@mock.co", "phone": "+1-928-914-2065"}]}, "subscription": {"plan": "free", "startDate": "2020-02-24", "renewalDate": "2021-02-24", "amount": 2333.71, "currency": "EUR", "services": [{"id": "svc-911", "name": "Analytics", "quantity": 2940, "unit": "TB", "unitPrice": 163.12}, {"id": "svc-131", "name": "Consulting", "quantity": 94, "unit": "hour", "unitPrice": 895.91}]}}, {"id": "rec-00350", "createdAt": "2022-08-24T05:42:59Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "manual", "region": "sa-east-1", "tags": ["vip", "basic", "pending"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-19551813", "name": "Acme Corp", "segment": "enterprise", "industry": "manufacturing", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Karen Smith", "email": "thomas.jones@sample.io", "phone": "+1-311-394-1066"}, {"type": "technical", "name": "Michael Davis", "email": "james.garcia@example.com", "phone": "+1-631-981-1446"}]}, "subscription": {"plan": "enterprise", "startDate": "2020-10-09", "renewalDate": "2021-10-09", "amount": 13588.3, "currency": "EUR", "services": [{"id": "svc-715", "name": "Cloud Storage", "quantity": 5481, "unit": "GB", "unitPrice": 58.94}, {"id": "svc-649", "name": "Consulting", "quantity": 23, "unit": "subscription", "unitPrice": 641.57}]}}, {"id": "rec-00351", "createdAt": "2023-01-11T18:12:43Z", "type": "customer", "status": "pending", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-57564446", "name": "Umbrella Corp", "segment": "enterprise", "industry": "technology", "yearFounded": 1998, "contacts": [{"type": "primary", "name": "David White", "email": "joseph.thompson@demo.net", "phone": "+1-805-331-6844"}, {"type": "technical", "name": "Charles White", "email": "michael.anderson@mock.co", "phone": "+1-241-305-8154"}]}, "subscription": {"plan": "custom", "startDate": "2023-08-25", "renewalDate": "2025-08-25", "amount": 46009.38, "currency": "EUR", "services": [{"id": "svc-528", "name": "Database", "quantity": 5014, "unit": "GB", "unitPrice": 109.49}, {"id": "svc-689", "name": "Support Plan", "quantity": 96, "unit": "hour", "unitPrice": 701.46}]}}, {"id": "rec-00352", "createdAt": "2020-01-17T19:24:20Z", "type": "prospect", "status": "suspended", "priority": "high", "metadata": {"source": "web", "region": "us-east-1", "tags": ["vip", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13571137", "name": "Virtucon", "segment": "startup", "industry": "education", "yearFounded": 2016, "contacts": [{"type": "primary", "name": "David Thompson", "email": "linda.smith@test.org", "phone": "+1-845-248-2692"}, {"type": "technical", "name": "James Harris", "email": "robert.garcia@mock.co", "phone": "+1-526-603-5355"}]}, "subscription": {"plan": "custom", "startDate": "2022-01-08", "renewalDate": "2025-01-08", "amount": 6511.69, "currency": "USD", "services": [{"id": "svc-463", "name": "Compute Instances", "quantity": 9658, "unit": "license", "unitPrice": 465.01}, {"id": "svc-929", "name": "Support Plan", "quantity": 95, "unit": "unit", "unitPrice": 1907.66}]}}, {"id": "rec-00353", "createdAt": "2020-09-16T23:52:08Z", "type": "lead", "status": "active", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["trial", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-83692143", "name": "LexCorp", "segment": "small-business", "industry": "retail", "yearFounded": 2013, "contacts": [{"type": "primary", "name": "Sarah Thomas", "email": "michael.harris@sample.io", "phone": "+1-645-704-2835"}, {"type": "technical", "name": "David Anderson", "email": "sarah.taylor@fake.tech", "phone": "+1-385-421-1555"}]}, "subscription": {"plan": "free", "startDate": "2020-06-09", "renewalDate": "2022-06-09", "amount": 27505.21, "currency": "GBP", "services": [{"id": "svc-395", "name": "Cloud Storage", "quantity": 255, "unit": "license", "unitPrice": 161.53}, {"id": "svc-487", "name": "Maintenance", "quantity": 51, "unit": "unit", "unitPrice": 1537.07}]}}, {"id": "rec-00354", "createdAt": "2020-02-07T03:25:08Z", "type": "prospect", "status": "pending", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-77239746", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "James Martin", "email": "patricia.martin@mock.co", "phone": "+1-887-517-8671"}, {"type": "technical", "name": "Charles Wilson", "email": "thomas.jones@sample.io", "phone": "+1-655-531-9928"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-01-16", "renewalDate": "2025-01-16", "amount": 11403.63, "currency": "USD", "services": [{"id": "svc-430", "name": "Analytics", "quantity": 262, "unit": "GB", "unitPrice": 62.89}, {"id": "svc-702", "name": "Training", "quantity": 90, "unit": "subscription", "unitPrice": 1001.76}]}}, {"id": "rec-00355", "createdAt": "2020-08-07T15:53:12Z", "type": "lead", "status": "inactive", "priority": "high", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["returning", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-66500217", "name": "Massive Dynamic", "segment": "mid-market", "industry": "retail", "yearFounded": 2012, "contacts": [{"type": "primary", "name": "Jennifer Miller", "email": "linda.white@sample.io", "phone": "+1-583-794-6381"}, {"type": "technical", "name": "Michael Martinez", "email": "mary.thompson@demo.net", "phone": "+1-855-789-7529"}]}, "subscription": {"plan": "enterprise", "startDate": "2021-10-18", "renewalDate": "2023-10-18", "amount": 39031.1, "currency": "CAD", "services": [{"id": "svc-774", "name": "Cloud Storage", "quantity": 591, "unit": "license", "unitPrice": 405.96}, {"id": "svc-648", "name": "Training", "quantity": 50, "unit": "package", "unitPrice": 1527.73}]}}, {"id": "rec-00356", "createdAt": "2022-01-02T14:40:32Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["new", "startup", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-25221403", "name": "Massive Dynamic", "segment": "startup", "industry": "technology", "yearFounded": 1993, "contacts": [{"type": "primary", "name": "Elizabeth Martin", "email": "william.robinson@sample.io", "phone": "+1-518-917-3106"}, {"type": "technical", "name": "James Moore", "email": "patricia.garcia@fake.tech", "phone": "+1-626-276-7629"}]}, "subscription": {"plan": "professional", "startDate": "2022-01-22", "renewalDate": "2023-01-22", "amount": 14598.45, "currency": "EUR", "services": [{"id": "svc-750", "name": "Cloud Storage", "quantity": 8559, "unit": "GB", "unitPrice": 471.0}, {"id": "svc-145", "name": "Training", "quantity": 30, "unit": "session", "unitPrice": 180.7}]}}, {"id": "rec-00357", "createdAt": "2025-07-03T22:26:53Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "enterprise", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-17194845", "name": "Massive Dynamic", "segment": "startup", "industry": "manufacturing", "yearFounded": 1988, "contacts": [{"type": "primary", "name": "Robert Miller", "email": "elizabeth.robinson@mock.co", "phone": "+1-403-341-5361"}, {"type": "technical", "name": "William Jones", "email": "karen.brown@example.com", "phone": "+1-520-643-4106"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-10", "renewalDate": "2022-06-10", "amount": 38354.09, "currency": "CAD", "services": [{"id": "svc-323", "name": "Analytics", "quantity": 720, "unit": "user", "unitPrice": 385.0}, {"id": "svc-967", "name": "Training", "quantity": 43, "unit": "session", "unitPrice": 735.26}]}}, {"id": "rec-00358", "createdAt": "2025-12-18T04:43:11Z", "type": "customer", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "basic", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-15615213", "name": "Acme Corp", "segment": "startup", "industry": "finance", "yearFounded": 1990, "contacts": [{"type": "primary", "name": "David Robinson", "email": "charles.martin@mock.co", "phone": "+1-548-915-4394"}, {"type": "technical", "name": "Sarah Jones", "email": "david.jones@demo.net", "phone": "+1-906-406-1429"}]}, "subscription": {"plan": "professional", "startDate": "2023-08-15", "renewalDate": "2026-08-15", "amount": 43036.75, "currency": "AUD", "services": [{"id": "svc-559", "name": "Compute Instances", "quantity": 6797, "unit": "TB", "unitPrice": 326.62}, {"id": "svc-725", "name": "Support Plan", "quantity": 81, "unit": "package", "unitPrice": 1179.22}]}}, {"id": "rec-00359", "createdAt": "2024-07-11T03:27:57Z", "type": "partner", "status": "inactive", "priority": "low", "metadata": {"source": "web", "region": "us-west-2", "tags": ["returning", "basic", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-13339276", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "thomas.white@sample.io", "phone": "+1-569-477-5936"}, {"type": "technical", "name": "Sarah Martinez", "email": "robert.moore@example.com", "phone": "+1-280-289-5929"}]}, "subscription": {"plan": "custom", "startDate": "2024-02-24", "renewalDate": "2027-02-24", "amount": 20285.56, "currency": "CAD", "services": [{"id": "svc-386", "name": "Database", "quantity": 6923, "unit": "GB", "unitPrice": 318.46}, {"id": "svc-874", "name": "Maintenance", "quantity": 98, "unit": "subscription", "unitPrice": 60.44}]}}, {"id": "rec-00360", "createdAt": "2024-09-21T03:50:36Z", "type": "lead", "status": "inactive", "priority": "low", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["returning", "premium", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-35841863", "name": "Stark Industries", "segment": "startup", "industry": "technology", "yearFounded": 1961, "contacts": [{"type": "primary", "name": "Jennifer Davis", "email": "elizabeth.jackson@test.org", "phone": "+1-819-983-1350"}, {"type": "technical", "name": "Jessica Moore", "email": "jennifer.johnson@demo.net", "phone": "+1-889-195-7006"}]}, "subscription": {"plan": "professional", "startDate": "2024-11-09", "renewalDate": "2026-11-09", "amount": 14763.9, "currency": "GBP", "services": [{"id": "svc-647", "name": "Analytics", "quantity": 9905, "unit": "instance", "unitPrice": 264.05}, {"id": "svc-810", "name": "Maintenance", "quantity": 27, "unit": "session", "unitPrice": 1339.32}]}}, {"id": "rec-00361", "createdAt": "2021-12-07T02:09:55Z", "type": "partner", "status": "pending", "priority": "medium", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "startup", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-42776139", "name": "Initech", "segment": "startup", "industry": "retail", "yearFounded": 1979, "contacts": [{"type": "primary", "name": "Elizabeth Wilson", "email": "michael.white@sample.io", "phone": "+1-634-582-9610"}, {"type": "technical", "name": "David Martinez", "email": "sarah.martinez@fake.tech", "phone": "+1-803-654-8484"}]}, "subscription": {"plan": "custom", "startDate": "2020-11-07", "renewalDate": "2022-11-07", "amount": 40082.42, "currency": "GBP", "services": [{"id": "svc-553", "name": "Compute Instances", "quantity": 8036, "unit": "user", "unitPrice": 61.88}, {"id": "svc-804", "name": "Support Plan", "quantity": 98, "unit": "hour", "unitPrice": 964.69}]}}, {"id": "rec-00362", "createdAt": "2021-03-26T22:01:26Z", "type": "customer", "status": "pending", "priority": "high", "metadata": {"source": "mobile", "region": "ap-southeast-1", "tags": ["returning", "enterprise", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-21745602", "name": "Soylent Corp", "segment": "small-business", "industry": "finance", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Joseph Martin", "email": "jennifer.jackson@sample.io", "phone": "+1-400-719-5282"}, {"type": "technical", "name": "Patricia Miller", "email": "mary.johnson@sample.io", "phone": "+1-490-708-8872"}]}, "subscription": {"plan": "custom", "startDate": "2020-02-20", "renewalDate": "2021-02-20", "amount": 25038.96, "currency": "AUD", "services": [{"id": "svc-192", "name": "Security", "quantity": 8950, "unit": "TB", "unitPrice": 183.1}, {"id": "svc-188", "name": "Support Plan", "quantity": 97, "unit": "unit", "unitPrice": 1553.14}]}}, {"id": "rec-00363", "createdAt": "2020-07-01T01:32:33Z", "type": "lead", "status": "suspended", "priority": "high", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["vip", "startup", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-13586091", "name": "Nakatomi Trading Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "Sarah Moore", "email": "karen.robinson@fake.tech", "phone": "+1-642-549-6728"}, {"type": "technical", "name": "Mary Moore", "email": "john.harris@mock.co", "phone": "+1-267-604-9718"}]}, "subscription": {"plan": "free", "startDate": "2020-10-22", "renewalDate": "2022-10-22", "amount": 7236.27, "currency": "AUD", "services": [{"id": "svc-801", "name": "Database", "quantity": 3989, "unit": "TB", "unitPrice": 294.33}, {"id": "svc-158", "name": "Consulting", "quantity": 32, "unit": "package", "unitPrice": 1091.79}]}}, {"id": "rec-00364", "createdAt": "2024-10-21T23:06:34Z", "type": "lead", "status": "active", "priority": "low", "metadata": {"source": "web", "region": "eu-west-1", "tags": ["trial", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-95199749", "name": "Acme Corp", "segment": "enterprise", "industry": "retail", "yearFounded": 1969, "contacts": [{"type": "primary", "name": "James Robinson", "email": "sarah.robinson@demo.net", "phone": "+1-244-386-9474"}, {"type": "technical", "name": "Charles Williams", "email": "mary.white@sample.io", "phone": "+1-754-741-5323"}]}, "subscription": {"plan": "basic", "startDate": "2020-02-01", "renewalDate": "2022-02-01", "amount": 38947.21, "currency": "USD", "services": [{"id": "svc-166", "name": "Cloud Storage", "quantity": 1078, "unit": "GB", "unitPrice": 49.06}, {"id": "svc-562", "name": "Implementation", "quantity": 57, "unit": "session", "unitPrice": 925.05}]}}, {"id": "rec-00365", "createdAt": "2020-09-03T21:55:13Z", "type": "partner", "status": "active", "priority": "medium", "metadata": {"source": "api", "region": "ap-southeast-1", "tags": ["vip", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-15855585", "name": "Weyland-Yutani", "segment": "enterprise", "industry": "retail", "yearFounded": 1977, "contacts": [{"type": "primary", "name": "Linda White", "email": "william.thomas@sample.io", "phone": "+1-972-862-2186"}, {"type": "technical", "name": "Linda Wilson", "email": "elizabeth.white@sample.io", "phone": "+1-493-839-6544"}]}, "subscription": {"plan": "basic", "startDate": "2022-10-21", "renewalDate": "2024-10-21", "amount": 33691.85, "currency": "EUR", "services": [{"id": "svc-938", "name": "Database", "quantity": 9582, "unit": "GB", "unitPrice": 15.45}, {"id": "svc-883", "name": "Maintenance", "quantity": 49, "unit": "package", "unitPrice": 661.3}]}}, {"id": "rec-00366", "createdAt": "2021-02-14T19:26:11Z", "type": "partner", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["returning", "enterprise", "pending"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-48069080", "name": "Virtucon", "segment": "small-business", "industry": "technology", "yearFounded": 2022, "contacts": [{"type": "primary", "name": "Charles Johnson", "email": "john.anderson@fake.tech", "phone": "+1-319-431-7911"}, {"type": "technical", "name": "Jennifer Martinez", "email": "william.taylor@example.com", "phone": "+1-756-644-3537"}]}, "subscription": {"plan": "basic", "startDate": "2023-06-02", "renewalDate": "2024-06-02", "amount": 796.83, "currency": "GBP", "services": [{"id": "svc-211", "name": "Compute Instances", "quantity": 7561, "unit": "TB", "unitPrice": 326.27}, {"id": "svc-884", "name": "Support Plan", "quantity": 21, "unit": "package", "unitPrice": 397.35}]}}, {"id": "rec-00367", "createdAt": "2023-07-22T03:03:04Z", "type": "customer", "status": "suspended", "priority": "medium", "metadata": {"source": "mobile", "region": "us-west-2", "tags": ["new", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": true}}, "customer": {"customerId": "cust-95224487", "name": "Nakatomi Trading Corp", "segment": "small-business", "industry": "healthcare", "yearFounded": 1992, "contacts": [{"type": "primary", "name": "Patricia Martinez", "email": "mary.garcia@sample.io", "phone": "+1-365-263-3268"}, {"type": "technical", "name": "Charles Brown", "email": "william.moore@fake.tech", "phone": "+1-248-602-5617"}]}, "subscription": {"plan": "free", "startDate": "2022-09-28", "renewalDate": "2023-09-28", "amount": 41946.54, "currency": "EUR", "services": [{"id": "svc-850", "name": "Security", "quantity": 4086, "unit": "user", "unitPrice": 177.48}, {"id": "svc-451", "name": "Implementation", "quantity": 62, "unit": "package", "unitPrice": 24.8}]}}, {"id": "rec-00368", "createdAt": "2020-01-12T05:07:50Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["new", "startup", "unverified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29384618", "name": "Oscorp", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 1980, "contacts": [{"type": "primary", "name": "Elizabeth Jones", "email": "mary.thompson@sample.io", "phone": "+1-572-454-6732"}, {"type": "technical", "name": "Thomas White", "email": "jennifer.harris@sample.io", "phone": "+1-511-333-8819"}]}, "subscription": {"plan": "free", "startDate": "2021-06-20", "renewalDate": "2024-06-20", "amount": 19663.73, "currency": "USD", "services": [{"id": "svc-508", "name": "Analytics", "quantity": 1789, "unit": "user", "unitPrice": 34.45}, {"id": "svc-145", "name": "Maintenance", "quantity": 83, "unit": "package", "unitPrice": 1177.81}]}}, {"id": "rec-00369", "createdAt": "2022-08-27T17:09:22Z", "type": "lead", "status": "active", "priority": "high", "metadata": {"source": "mobile", "region": "eu-west-1", "tags": ["new", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-15160463", "name": "Acme Corp", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2023, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "mary.thomas@demo.net", "phone": "+1-759-475-1728"}, {"type": "technical", "name": "Sarah Anderson", "email": "john.martin@test.org", "phone": "+1-539-883-3095"}]}, "subscription": {"plan": "custom", "startDate": "2023-02-06", "renewalDate": "2025-02-06", "amount": 26233.17, "currency": "EUR", "services": [{"id": "svc-595", "name": "Database", "quantity": 9093, "unit": "TB", "unitPrice": 478.24}, {"id": "svc-337", "name": "Consulting", "quantity": 13, "unit": "unit", "unitPrice": 1050.98}]}}, {"id": "rec-00370", "createdAt": "2023-03-21T20:51:52Z", "type": "customer", "status": "active", "priority": "low", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-29696514", "name": "Acme Corp", "segment": "mid-market", "industry": "finance", "yearFounded": 2010, "contacts": [{"type": "primary", "name": "Robert Moore", "email": "jennifer.thompson@fake.tech", "phone": "+1-956-594-4917"}, {"type": "technical", "name": "Susan Moore", "email": "william.thompson@test.org", "phone": "+1-918-948-9737"}]}, "subscription": {"plan": "basic", "startDate": "2020-02-24", "renewalDate": "2022-02-24", "amount": 40611.5, "currency": "AUD", "services": [{"id": "svc-355", "name": "Analytics", "quantity": 1958, "unit": "GB", "unitPrice": 42.85}, {"id": "svc-752", "name": "Support Plan", "quantity": 13, "unit": "session", "unitPrice": 1010.51}]}}, {"id": "rec-00371", "createdAt": "2024-01-13T02:18:47Z", "type": "partner", "status": "suspended", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["returning", "startup", "verified"], "processingFlags": {"isUrgent": true, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-17083857", "name": "Stark Industries", "segment": "small-business", "industry": "manufacturing", "yearFounded": 2019, "contacts": [{"type": "primary", "name": "James Thompson", "email": "sarah.taylor@demo.net", "phone": "+1-241-589-8214"}, {"type": "technical", "name": "Charles Brown", "email": "thomas.moore@fake.tech", "phone": "+1-208-742-7020"}]}, "subscription": {"plan": "free", "startDate": "2024-09-02", "renewalDate": "2027-09-02", "amount": 27775.66, "currency": "GBP", "services": [{"id": "svc-428", "name": "Database", "quantity": 6879, "unit": "license", "unitPrice": 220.55}, {"id": "svc-989", "name": "Implementation", "quantity": 100, "unit": "package", "unitPrice": 1920.5}]}}, {"id": "rec-00372", "createdAt": "2025-12-03T05:24:46Z", "type": "customer", "status": "suspended", "priority": "low", "metadata": {"source": "manual", "region": "eu-west-1", "tags": ["new", "basic", "verified"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-28140058", "name": "Aperture Science", "segment": "small-business", "industry": "technology", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "Mary Johnson", "email": "elizabeth.garcia@example.com", "phone": "+1-466-599-7690"}, {"type": "technical", "name": "Elizabeth Miller", "email": "jessica.anderson@fake.tech", "phone": "+1-587-272-7728"}]}, "subscription": {"plan": "professional", "startDate": "2020-06-07", "renewalDate": "2022-06-07", "amount": 13311.82, "currency": "EUR", "services": [{"id": "svc-965", "name": "Security", "quantity": 3643, "unit": "TB", "unitPrice": 490.22}, {"id": "svc-737", "name": "Maintenance", "quantity": 20, "unit": "unit", "unitPrice": 954.04}]}}, {"id": "rec-00373", "createdAt": "2021-12-08T04:03:52Z", "type": "prospect", "status": "pending", "priority": "high", "metadata": {"source": "api", "region": "us-east-1", "tags": ["vip", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-59959301", "name": "Weyland-Yutani", "segment": "startup", "industry": "retail", "yearFounded": 1959, "contacts": [{"type": "primary", "name": "Elizabeth Johnson", "email": "linda.garcia@demo.net", "phone": "+1-422-743-6620"}, {"type": "technical", "name": "Patricia Martin", "email": "thomas.harris@fake.tech", "phone": "+1-260-887-9034"}]}, "subscription": {"plan": "custom", "startDate": "2024-09-17", "renewalDate": "2026-09-17", "amount": 24720.54, "currency": "GBP", "services": [{"id": "svc-388", "name": "Compute Instances", "quantity": 6784, "unit": "instance", "unitPrice": 271.09}, {"id": "svc-335", "name": "Support Plan", "quantity": 32, "unit": "unit", "unitPrice": 1614.06}]}}, {"id": "rec-00374", "createdAt": "2022-04-13T00:02:38Z", "type": "prospect", "status": "suspended", "priority": "low", "metadata": {"source": "mobile", "region": "sa-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": false, "automationEligible": false}}, "customer": {"customerId": "cust-94620955", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "finance", "yearFounded": 1986, "contacts": [{"type": "primary", "name": "William Johnson", "email": "mary.jackson@sample.io", "phone": "+1-935-322-3381"}, {"type": "technical", "name": "Robert Martin", "email": "david.thomas@example.com", "phone": "+1-520-160-3367"}]}, "subscription": {"plan": "professional", "startDate": "2021-09-20", "renewalDate": "2023-09-20", "amount": 16290.35, "currency": "GBP", "services": [{"id": "svc-401", "name": "Analytics", "quantity": 2318, "unit": "user", "unitPrice": 423.92}, {"id": "svc-826", "name": "Implementation", "quantity": 34, "unit": "session", "unitPrice": 1063.36}]}}, {"id": "rec-00375", "createdAt": "2025-05-06T00:54:31Z", "type": "lead", "status": "suspended", "priority": "medium", "metadata": {"source": "web", "region": "ap-southeast-1", "tags": ["new", "premium", "legacy"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-12666581", "name": "Wayne Enterprises", "segment": "mid-market", "industry": "healthcare", "yearFounded": 1968, "contacts": [{"type": "primary", "name": "James Brown", "email": "john.white@mock.co", "phone": "+1-274-529-1047"}, {"type": "technical", "name": "Sarah Taylor", "email": "sarah.jones@mock.co", "phone": "+1-987-969-2186"}]}, "subscription": {"plan": "enterprise", "startDate": "2024-07-11", "renewalDate": "2026-07-11", "amount": 37452.97, "currency": "USD", "services": [{"id": "svc-841", "name": "Analytics", "quantity": 7345, "unit": "TB", "unitPrice": 2.84}, {"id": "svc-710", "name": "Training", "quantity": 26, "unit": "package", "unitPrice": 1645.37}]}}, {"id": "rec-00376", "createdAt": "2021-07-12T23:34:44Z", "type": "prospect", "status": "inactive", "priority": "medium", "metadata": {"source": "manual", "region": "ap-southeast-1", "tags": ["trial", "basic", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-32938604", "name": "Virtucon", "segment": "startup", "industry": "healthcare", "yearFounded": 1981, "contacts": [{"type": "primary", "name": "Linda Robinson", "email": "jessica.davis@demo.net", "phone": "+1-626-538-8332"}, {"type": "technical", "name": "Linda Harris", "email": "nancy.garcia@test.org", "phone": "+1-330-243-4968"}]}, "subscription": {"plan": "enterprise", "startDate": "2022-03-07", "renewalDate": "2025-03-07", "amount": 48386.19, "currency": "EUR", "services": [{"id": "svc-849", "name": "Cloud Storage", "quantity": 204, "unit": "license", "unitPrice": 33.74}, {"id": "svc-711", "name": "Maintenance", "quantity": 56, "unit": "session", "unitPrice": 1461.46}]}}, {"id": "rec-00377", "createdAt": "2024-06-19T04:26:14Z", "type": "prospect", "status": "pending", "priority": "medium", "metadata": {"source": "import", "region": "us-east-1", "tags": ["returning", "premium", "legacy"], "processingFlags": {"isUrgent": true, "requiresReview": true, "automationEligible": true}}, "customer": {"customerId": "cust-60482799", "name": "Initech", "segment": "mid-market", "industry": "manufacturing", "yearFounded": 2015, "contacts": [{"type": "primary", "name": "Patricia Williams", "email": "richard.miller@sample.io", "phone": "+1-985-678-9631"}, {"type": "technical", "name": "Linda Thomas", "email": "elizabeth.jones@fake.tech", "phone": "+1-666-176-1269"}]}, "subscription": {"plan": "custom", "startDate": "2021-10-16", "renewalDate": "2023-10-16", "amount": 18786.41, "currency": "AUD", "services": [{"id": "svc-368", "name": "Compute Instances", "quantity": 4110, "unit": "TB", "unitPrice": 379.62}, {"id": "svc-884", "name": "Support Plan", "quantity": 55, "unit": "unit", "unitPrice": 1830.19}]}}, {"id": "rec-00378", "createdAt": "2020-11-05T07:15:16Z", "type": "customer", "status": "active", "priority": "high", "metadata": {"source": "api", "region": "eu-west-1", "tags": ["returning", "enterprise", "unverified"], "processingFlags": {"isUrgent": false, "requiresReview": true, "automationEligible": false}}, "customer": {"customerId": "cust-76364560", "name": "Umbrella Corp", "segment": "startup", "industry": "healthcare", "yearFounded": 1960, "contacts": [{"type": "primary", "name": "Linda Harris", "email": "robert.jones@demo.net", "phone": "+1-854-532-2521"}, {"type": "technical", "name": "Mary Brown", "email": "nancy.robinson@test.org", "phone": "+1-447-529-6610"}]}, "subscription": {"plan": "professional", "startDate": "2022-12-22", "renewalDate": "2023-12-22", "amount": 2562.01, "currency": "USD", "services": [{"id": "svc-645", "name": "Database", "quantity": 8293, "unit": "TB", "unitPrice": 470.55}, {"id": "svc-215", "name": "Support Plan", "quantity": 29, "unit": "hour", "unitPrice": 1732.85}]}}]} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_100b.json b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_100b.json new file mode 100644 index 000000000000..e104f6f61280 --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_100b.json @@ -0,0 +1 @@ +{"id":"test-100","name":"Sample Document","version":1,"tags":["tag1","tag2","tag3"],"active":true} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_1kb.json b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_1kb.json new file mode 100644 index 000000000000..1515689f5b3a --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_1kb.json @@ -0,0 +1 @@ +{"orderId":"ORD-2024-10-28-001","customer":{"customerId":"CUST-98765","name":"Jane Smith","email":"jane.smith@example.com","phone":"+1-555-9876","shippingAddress":{"street":"456 Oak Avenue","city":"Portland","state":"OR","zip":"97201","country":"USA"},"billingAddress":{"street":"456 Oak Avenue","city":"Portland","state":"OR","zip":"97201","country":"USA"}},"items":[{"sku":"PROD-001","name":"Wireless Headphones","quantity":2,"price":79.99,"discount":10.0},{"sku":"PROD-002","name":"USB-C Cable","quantity":3,"price":12.99,"discount":0.0},{"sku":"PROD-003","name":"Phone Case","quantity":1,"price":24.99,"discount":5.0}],"payment":{"method":"credit_card","cardLast4":"4242","amount":234.92,"currency":"USD","transactionId":"TXN-ABC123XYZ"},"shipping":{"carrier":"UPS","trackingNumber":"1Z999AA10123456784","estimatedDelivery":"2024-11-02T17:00:00Z","shippingCost":8.99},"metadata":{"orderDate":"2024-10-28T11:15:00Z","status":"processing","notes":"Gift wrap requested","tags":["priority","gift","insured"]}} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_500b.json b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_500b.json new file mode 100644 index 000000000000..a8aca53116be --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_500b.json @@ -0,0 +1 @@ +{"userId":"user-12345","profile":{"firstName":"John","lastName":"Doe","email":"john.doe@example.com","phone":"+1-555-0123","address":{"street":"123 Main St","city":"Seattle","state":"WA","zip":"98101"},"preferences":{"theme":"dark","notifications":true,"language":"en-US"}},"metadata":{"createdAt":"2024-01-15T10:30:00Z","lastLogin":"2024-10-28T09:15:00Z","loginCount":247,"accountType":"premium","tags":["verified","active","beta-tester"]}} diff --git a/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_50b.json b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_50b.json new file mode 100644 index 000000000000..fd95301a67dc --- /dev/null +++ b/test/sdk-benchmarks/src/main/java/software/amazon/awssdk/benchmark/enhanced/dynamodb/payload_50b.json @@ -0,0 +1 @@ +{"id":"u123","name":"Alice","active":true}