static String getDeadletterTableSchemaJson()

in pipelines/clickstream_analytics_java/src/main/java/com/google/cloud/dataflow/solutions/clickstream_analytics/ClickstreamPubSubToBq.java [192:204]


    static String getDeadletterTableSchemaJson() {
        String schemaJson = null;
        try {
            schemaJson =
                    Resources.toString(
                            Resources.getResource(DEADLETTER_SCHEMA_FILE_PATH),
                            StandardCharsets.UTF_8);
        } catch (Exception e) {
            System.out.println("Unable to read {} file from the resources folder!");
        }

        return schemaJson;
    }